Shironamhin (album)

Last updated

Shironamhin
Untitled as Always
Shironamhin Shironamhin (2013).jpg
Studio album by
Released19 July 2013
Recorded2013
Incursion Music
Genre Psychedelic
Length48:46
Label Siren
Producer Qinetic Music
Shironamhin chronology
Rabindranath
(2010)
Shironamhin
Untitled as Always

(2013)
Shironahmhin - Upcoming - Untitled as Always
(2017-2020)

C++ Programms



  1. include <iostream>

using namespace std;

int main() {

   int n;    cout<<"Enter a positive number:";    cin>>n;

1.Grades

   if (n<40)       cout<<"The number doesnt fall into registered category";    else if (n<60)       cout<<"The number is equivalent to grade 'C'. ";    else if(n<80)       cout<<"The number is equivalent to grade 'B'.";    else if (n>80)       cout<<"The number is equivalent to grade 'A'.";

2.Sum of Natural numbers

     int i, sum=0;      for (i=1; i<=n; i++) {        sum += i;      }      cout <<"The Sum of numbers upto "<<n<< " is : "<<sum;

3.Multiplication Table

    cout<<"Multiplication table goes as below : ";
    for (int i=1; i<=10; i++){        cout<<n<<" * "<<i<<" = "<<n*i <<" "<<endl;     }

4.Factorial numbers

    int i, fact=1;     for (i=1; i<=n; i++){        fact *=i ;     }     cout<<"Factorial of Number is "<<n<<"! = "<<fact;


5.Display numbers upto 'n'

int i=0;    do{        cout<<i<<" ";        i++;    }    while (i<=n);


   return 0;

C++ Programms



  1. include <iostream>

using namespace std;

int main() {

   int n;    cout<<"Enter a positive number:";    cin>>n;

1.Grades

   if (n<40)       cout<<"The number doesnt fall into registered category";    else if (n<60)       cout<<"The number is equivalent to grade 'C'. ";    else if(n<80)       cout<<"The number is equivalent to grade 'B'.";    else if (n>80)       cout<<"The number is equivalent to grade 'A'.";

2.Sum of Natural numbers

     int i, sum=0;      for (i=1; i<=n; i++) {        sum += i;      }      cout <<"The Sum of numbers upto "<<n<< " is : "<<sum;

3.Multiplication Table

    cout<<"Multiplication table goes as below : ";
    for (int i=1; i<=10; i++){        cout<<n<<" * "<<i<<" = "<<n*i <<" "<<endl;     }

4.Factorial numbers

    int i, fact=1;     for (i=1; i<=n; i++){        fact *=i ;     }     cout<<"Factorial of Number is "<<n<<"! = "<<fact;


5.Display numbers upto 'n'

int i=0;    do{        cout<<i<<" ";        i++;    }    while (i<=n);


   return 0;

Background

Shironamhin tried to compile confession, demand, rage, hope & anticipation in their self-titled album to invite a new light through old windows. From lyrical point of view, this album is more specific on topic, searching the positive sides of a negative living. Musically Shironamhin tried western classic orchestration based on violin, cello, contrabass section fused with rock guitar, bass & drums accompaniment. Shironamhin recalls all the members & persons who worked for Shironamhin once and forever, expressed their gratitude to those who carried shironamhin this long & dedicated their songs to the listeners whom shironamhin is comfortable to call friends. Shironamhin will remain untitled as always.

Contents

Synopsis

At past projects, the band has infused traditional classical instruments such as sarod, esraj, mandira and dotara with their distinctive style of rock. In the fifth self-titled album, they have used some classical instruments will be played along with guitar, bass and drums. [1]

Track listing

No.TitleLyricsMusicSinger(s)Length
1."Abar Hashimukh (আবার হাসিমুখ)" Ziaur Rahman Zia Zia Tanzir Tuhin 5:39
2."Bristikabbyo (বৃষ্টিকাব্য)"ZiaZiaTuhin5:03
3."Kichu Kotha (কিছু কথা)"ZiaZiaTuhin4:10
4."Pori (পরী)"TuhinKazi Shafin Ahmad, TuhinTuhin4:38
5."Rod Canvas (রোদ ক্যানভাস)"ZiaDiat KhanTuhin3:55
6."Shonshon, Jodio Kashbon (শন্শন্, যদিও কাশবন)"ZiaShafinTuhin4:19
7."Ahoto Kichu Golpo (আহত কিছু গল্প)"TuhinTuhinTuhin5:07
8."Michil (মিছিল)"ZiaDiat, ZiaTuhin5:13
9."Chithi (চিঠি)"ZiaShafin, ZiaTuhin4:01
10."Aatotayee (আততায়ী)"ZiaZiaTuhin6:37

Personnel

Band personnel

Guest personnel

Production personnel

Related Research Articles

In computing, a namespace is a set of signs (names) that are used to identify and refer to objects of various kinds. A namespace ensures that all of a given set of objects have unique names so that they can be easily identified.

<span class="mw-page-title-main">Quine (computing)</span> Self-replicating program

A quine is a computer program which takes no input and produces a copy of its own source code as its only output. The standard terms for these programs in the computability theory and computer science literature are "self-replicating programs", "self-reproducing programs", and "self-copying programs".

Template metaprogramming (TMP) is a metaprogramming technique in which templates are used by a compiler to generate temporary source code, which is merged by the compiler with the rest of the source code and then compiled. The output of these templates can include compile-time constants, data structures, and complete functions. The use of templates can be thought of as compile-time polymorphism. The technique is used by a number of languages, the best-known being C++, but also Curl, D, Nim, and XL.

A function pointer, also called a subroutine pointer or procedure pointer, is a pointer that points to a function. As opposed to referencing a data value, a function pointer points to executable code within memory. Dereferencing the function pointer yields the referenced function, which can be invoked and passed arguments just as in a normal function call. Such an invocation is also known as an "indirect" call, because the function is being invoked indirectly through a variable instead of directly through a fixed identifier or address.

In computer programming, run-time type information or run-time type identification (RTTI) is a feature of some programming languages that exposes information about an object's data type at runtime. Run-time type information may be available for all types or only to types that explicitly have it. Run-time type information is a specialization of a more general concept called type introspection.

In the C++ programming language, argument-dependent lookup (ADL), or argument-dependent name lookup, applies to the lookup of an unqualified function name depending on the types of the arguments given to the function call. This behavior is also known as Koenig lookup, as it is often attributed to Andrew Koenig, though he is not its inventor.

auto_ptr is a class template that was available in previous versions of the C++ standard library, which provides some basic RAII features for C++ raw pointers. It has been replaced by the unique_ptr class.

In number theory, a narcissistic number in a given number base is a number that is the sum of its own digits each raised to the power of the number of digits.

In the programming language C++, unordered associative containers are a group of class templates in the C++ Standard Library that implement hash table variants. Being templates, they can be used to store arbitrary elements, such as integers or custom classes. The following containers are defined in the current revision of the C++ standard: unordered_set, unordered_map, unordered_multiset, unordered_multimap. Each of these containers differ only on constraints placed on their elements.

<span class="mw-page-title-main">Shironamhin</span> Bengali rock band

Shironamhin is a Bengali rock band formed in Dhaka in 1996. Following as a rock group emerging from Dhaka's underground music in the late 1990s, they were distinguished for their extended psychedelic and progressive compositions, multi-instrumental experimentation, and philosophical lyrics and became one of the leading band of the Bengali progressive rock genre.

SymbolicC++ is a general purpose computer algebra system written in the programming language C++. It is free software released under the terms of the GNU General Public License. SymbolicC++ is used by including a C++ header file or by linking against a library.

IT++ is a C++ library of classes and functions for linear algebra, numerical optimization, signal processing, communications, and statistics. It is being developed by researchers in these areas and is widely used by researchers, both in the communications industry and universities. The IT++ library originates from the former Department of Information Theory at the Chalmers University of Technology, Gothenburg, Sweden.

In the C++ programming language, input/output library refers to a family of class templates and supporting functions in the C++ Standard Library that implement stream-based input/output capabilities. It is an object-oriented alternative to C's FILE-based streams from the C standard library.

<span class="mw-page-title-main">Tanzir Tuhin</span> Musical artist

Tanzir Tuhin is a Bangladeshi musician, singer-songwriter, actor, painter, and architect, best known as a longtime member of the independent music group Shironamhin. He joined the group as lead vocalist in 2000. Shironamhin subsequently achieved national success with their albums Bondho Janala, Shironamhin Rabindranath and Shironamhin Shironamhin. By the late 2000s, they had become one of the most well-known group in the rock music history of Bangladesh. Amid personal conflict, Tuhin left Shironamhin in 2017 and form a new band named Avash at the end of that year.

<span class="mw-page-title-main">Ziaur Rahman (musician)</span> Musical artist

Ziaur Rahman,, known as Zia, is a Bangladeshi rock musician, composer, bassist, songwriter, and architect popularly known as the founder and leader of the Bangladeshi independent music group Shironamhin. In addition, he plays bass guitar, cello, sarod and many other instruments for the compositions and do the production for Shironamhin band.

<i>Rabindranath</i> (album) 2010 studio album by Shironamhin

Rabindranath is the fourth album by the Bengali rock band Shironamhin. Laser Vision released the album on 2010 in Bangladesh.

<i>Bondho Janala</i> 2009 studio album by Shironamhin

Bondho Janala is the third album by the Bengali psychedelic rock band Shironamhin. G-Series released the album on 13 April 2009 in the Bangladesh.

<i>Jahaji</i> 2004 studio album by Shironamhin

জাহাজী (Navigator) is the debut studio album by Bangladeshi rock band Shironamhin. The album was recorded in Rabbit Communications Studio between 15 and 30 December 2003. It was released on 1 November 2004 by Rabbit Communications in Dhaka.

<i>Icche Ghuri</i> 2006 studio album by Shironamhin

Ichchhe Ghuri is the second album by the Bengali psychedelic rock band Shironamhin. G-Series released the album on 1 May 2006 in the Bangladesh.

References

  1. Nazia Nusrat Adnin (19 June 2012). "Shironamhin to release self-titled album". New Age . Retrieved 6 July 2013.

5. Finally Released The Album Shironamhin