Friday 31 July 2015

Omiya Lyrics-mp3- Teejay

OMIYA Lyrics



OMIYA Lyrics


 Usurre irrukum varrei nee enadhe,
Usurre ponallum naan varuven,
Usurre irrukum varrei nee enadhe…

Enakage nee ipo ena seidhai, thaiye thavikavitu odi vanthai,
Kadhal payanathei sollitu vaa, kadhallum thodarum yendrumey endrum,
Naladhukuthan solluren, unnavitu porra yennamum ille,
Unakage yepavum kathirupen, kadhal aliyaadhu yendrumey endrum,

Omiya omiya omiya omiya, omiya omiya,
You are my only miya,
Omiya omiya omiya omiya, omiya omiya,
You are my only mia,

Ussure nee enadhe.

Ariraro kanoram, un idhayam medhuvai thoongum,
Kanavellam kayil korthu, nejathil kondu vaa,
Ariraro kanoram, un idhayam medhuvai thoongum,
Thookathil bayamillama paarundhu sendru vaa,

Unnode serum bodhellam dhukangalum, siripil saindhidumey,
Unnil naan endran ennil neethane, enum oru naalil naan varuven,
Mun janalil yeti paarpiya?
Kadalil iruvarum purrakal pol sernthu parapom mia,
sernthuu parapom, mia sernthuu parapom, mia.

Usurre irrukum varrei nee enadhe,
Usurre ponallum naan varuven,
Usurre irrukum varrei nee enadhe.

Enakage nee ippo enna seidhai, thaiye thavikavitu odi vanthai,
Kadhal payanathei sollitu vaa, kadhallum thodarum yendrumey endrum,
Naladhukuthan solluren, unnavitu porra yennamum ille,
Unakage yepavum kathirupen, kadhal aliyaadhu yendrumey endrum,

Omiya omiya omiya omiya, omiya omiya,
You are my only miya,
Omiya omiya omiya omiya, omiya omiya,
You are my only MIYA.
   -Saravana raj

Download -mp3


***click here***to download omiya mp3


Inheritance

Inheritance

The process by which one class acquires the properties and functionalities of another class. Inheritance provides the idea of reusability of code and each sub class defines only those features that are unique to it.

Inheritance is a mechanism of defining a new class based on an existing class.
Inheritance enables reuse of code. Inheritance also provides scope for refinement of the existing class. Inheritance helps in specialization
The existing (or original) class is called the base class or super class or parent class. The new class which inherits from the base class is called the derived class or sub class or child class.
Inheritance implements the “Is-A” or “Kind Of/ Has-A” relationship.
Note : The biggest advantage of Inheritance is that, code in base class need not be rewritten in the derived class.
The member variables and methods of the base class can be used in the derived class as well.

Inheritance Example
Consider below two classes –

Class Teacher:

class Teacher {
   private String name;
   private double salary;
   private String subject;
   public Teacher (String tname)  {
       name = tname;
   }
   public String getName()  {
       return name;
   }
   private double getSalary()  {
       return salary;
   }
   private String  getSubject()  {
        return  subject;
   }
}
Class: OfficeStaff

class  OfficeStaff{
   private String name;
   private double salary;
   private String dept;
   public OfficeStaff (String sname)  {
      name = sname;
   }
   public String getName()  {
       return name;
   }
   private double  getSalary()  {
       return salary;
   }
   private String  getDept ()  {
       return dept;
   }
}
Points:
1) Both the classes share few common properties and methods. Thus repetition of code.
2) Creating a class which contains the common methods and properties.
3) The classes Teacher and OfficeStaff can inherit the all the common properties and methods from below Employee class

class Employee{
   private String name;
   private double salary;
   public Employee(String ename){
      name=ename;
   }
   public String getName(){
      return name;
   }
   private double getSalary(){
      return salary;
   }
}
4) Add individual methods and properties to it Once we have created a super class that defines the attributes common to a set of objects, it can be used to create any number of more specific subclasses
5) Any similar classes like Engineer, Principal can be generated as subclasses from the Employee class.
6) The parent class is termed super class and the inherited class is the sub class
7) A sub class is the specialized version of a super class – It inherits all of the instance variables and methods defined by the super class and adds its own, unique elements.
8) Although a sub class includes all of the members of its super class it can not access those members of the super class that have been declared as private.
9) A reference variable of a super class can be assigned to a reference to any sub class derived from that super class
i.e. Employee emp = new Teacher();

Note: Multi-level inheritance is allowed in Java but not multiple inheritance



Types of Inheritance
   

Multiple Inheritance
           “Multiple Inheritance” refers to the concept of one class inheriting from more than one base class. The inheritance we learnt earlier had the concept of one base class or parent. The problem with “multiple inheritance” is that the derived class will have to manage the dependency on two base classes.

Note 1: Multiple Inheritance is very rarely used in software projects. Using Multiple inheritance often leads to problems in the hierarchy. This results in unwanted complexity when further extending the class.

Note 2: Most of the new OO languages like Small Talk, Java, C# do not support Multiple inheritance 

3) Multilevel Inheritance

Multilevel inheritance refers to a mechanism in OO technology where one can inherit from a derived class, thereby making this derived class the base class for the new class. As you can see in below flow diagram C is subclass or child class of B and B is a child class of A. For more details and example refer – Multilevel inheritance in Java.



Multilevel Inheritance example program in Java

Class X
{
   public void methodX()
   {
     System.out.println("Class X method");
   }
}
Class Y extends X
{
public void methodY()
{
System.out.println("class Y method");
}
}
Class Z extends Y
{
   public void methodZ()
   {
     System.out.println("class Z method");
   }
   public static void main(String args[])
   {
     Z obj = new Z();
     obj.methodX(); //calling grand parent class method
     obj.methodY(); //calling parent class method
     obj.methodZ(); //calling local method
  }
}
4) Hierarchical Inheritance

In such kind of inheritance one class is inherited by many sub classes. In below example class B,C and D inherits the same class A. A is parent class (or base class) of B,C & D. Read More at – Hierarchical Inheritance in java with example program.



5) Hybrid Inheritance

In simple terms you can say that Hybrid inheritance is a combination of Single and Multiple inheritance. A typical flow diagram would look like below. A hybrid inheritance can be achieved in the java in a same way as multiple inheritance can be!! Using interfaces. yes you heard it right. By using interfaces you can have multiple as well as hybrid inheritance in Java.

Wednesday 29 July 2015

Aasai Song Lyrics - TeeJay Featuring pragathi Guru...



Intro

Chorus



Enaku Oru Aasa

Enaku Oru Aasa...

Enaku oru aassa iruku (2x)



Pesi palagi paarthu purinjuka'nu

Pudicha apuram Kaa,dhalikonum

Mutham kuduthu kalampura anachikaa'nu ... yen aasa avaley



Enaku Oru Aasa

Enaku Oru Aasa...

Enaku oru aassa iruku (2x)



(Bridge)



Verse 1



Avala kandeney, Ava vera yaarum illa, neethan...

edam pudicha manasila.

Aasa Aasa vachirundha,aadha yeppavum vachirupen



Adho ange odadhu Aaru, aathorama unkuda naan,

vekam vittu aasaiya veesa manasum thaiyangudhey



Kaadhal mudhal sonnadhu yaaru ?

Kelvi kettu kaathirunndho, Bayam illama nenja nimithi, unmaiya pesina...

Kannava idhu nijama inu, Kili paarthum ketta...Enaku oru aassa iruku



(Bridge)



Verse 2



Apu Saamy, un aasa'ellam saamikitta soliten, sol'aiya?

Maanja Thaali, un kaalithila mudichika aasa, katti vidava?



Aasa Aasa vachirundha, aadha yeppavum vachirupen

Paasa Kaara un maadiyil vilundhu, kadheigal solluven...



Una polla oru chinna PaPa, pethu tharuviya'ma ?

Illanidha sonna paavam, paiyan thanguven'na ?



Kenji ketta, Konji Ketta, Kaya pidichu kettiye...

Enaku Oru Aasa

Enaku Oru Aasa...Enaku oru aassa iruku



Pesi palagi paarthu purinjuka'nu

Pudicha apuram Kaa,dhalikonum

Mutham kuduthu kalampura anachikaa'nu ... yen aasa avaney



Chorus



Enaku Oru Aasa

Enaku Oru Aasa...



Enaku oru AASA, avaley



Download maze in Idhayam album songs


First on net click the link to download Teejay's new maze in idhayam album
Click to

download

Sunday 26 July 2015

Maze in idhayam-Track List

Proudly Present the Official Track List:
Lyrics & Melody Composed by TeeJay
1. Home Sweet Home Ft. Sandhiv
Prod by Switch Lock Up
2. Bommei
Prod by Neroshen Thanaseharan
3. Therinjo Theriyamalo Ft. MC SAI & Sonali
Prod by Princeten Charles
4. Humssana Ft. Shakthisree Gopalan
Prod by Steve Cliff
5. Vaayadi
Prod by Neroshen
6. Gollusey
Prod by Vernon 'G' Segaram
7. Thean Kudika Ft. Pragathi Guruprasad
Prod by Steve Cliff
8. Mayavan
Prod by Princeten
9. Modhiram Mati Poga Ft. Chinmayi Sripada
Prod by Kausikan Sivalingam
10. Lost in Maze Ft. RABBIT.MAC
Prod by Rabbit Mac
(BONUS)
11. Vaanavil [New]
Prod by VGS
Due to Time, we missed out several other unfinished Tracks, which we will Release as Singles. I feel happy to have worked with all these great Artistes & Producers. Thank you to Marcin Studios & Charles Bosco Studios for recording me.
‪#‎MAZEinIdhayam‬ - CD's can be ordered via rstars.bigcartel.com

Tuesday 14 July 2015

Muttu Muttu lyrics-Teejay


Song: Muttu Muttu
Singer: TeeJay Featuring MC SAI & SriMathumitha
Lyrics by: TeeJay
Rap Lyrics by: MC SAI
Music, Mixing & Mastering: Gaji
Background Music: TeeJay

Intro ( TeeJay )

Unnai angey kaangiren,
Un pakkam varavaa?
Yaar yevarendru theriyavilai,
irundhalum palagalaam...

Unnai angey kaangiren,
Un pakkam varavaa?
Yaar yevarendru theriyavilai,
irundhalum palagalaam...

-Chorus-

Muttu Muttu Enna Muttu,
Idichu pora vekkatha vitthu,
Kolanthai pola,
Kolappadi kaathu,
Yaar intha thaavani?...

Nethiyila Irukuthu potthu,
Adhukum Keela kalla siripu,
Motthathila unakintha paatu,
Vaa vanthu aadu nee!...

(Bridge)

Verse 1

Mun Jenmam,
Unnai partha nyabagam,
hmmm...
Yen manasil nee irupathu nichiyam!...

Anbe!
Anbana kutthuvilake ,
Yennai Varavaithaai,
Un alagai kandu Muttininen indru,
Ennai Kolaikondaai...

Aadi paadu nee kondaadu,
Jodi seralaam yennodu
kaiye pidichika anbodu,
Nee Vaa...
vaa vaa, vaa, vaavaa...

Chorus

Muttu muttu enna muttu,
Idichu pora vekkatha vitthu,
Kolanthai pola,
Kolappadi kaathu,
Yaar intha thavani?...

Nethiyila Irukuthu potthu,
Adhukum Keela kalla siripu,
Motthathila unakintha paatu,
Vaa vanthu aadu nee!...
 
RAP ( MC SAI )

Ah!
Sooriyan pathingi iruLum,
Pinthaandi varum Vaanam,
Mellana veesum kaatru,
Saralgal thoovi thoorum,
Ippolam aasaigal athu mela vaipadhila!,
Un mela aasa vachen,
Sollu penne enna vila ?..

Muttu muttu enna muttu
Unnudaiya vekkam Vitthu,
Paarva sotthu enna thotthu,
Pookuthadi poovin Mottu,
Vaadi en inba Raani,
Thaagathuku thanni kodu,
konjam nee vekapatthu,
Enakulla vitthu kodu,
Maaman naan poothiruken,
Raaman pola kaathiruken
Kadigaaram kaatthu nikke,
Unna enna serthuvaika,
Paaru!
En Sundari kovakaara ponnu nee,
Mela vanthu Katthipidi ,
varungaala manaivi,
Muttu muttu enna muttu
Unnoda vekkam vitthu,
Maamana muttu,
Unnathu netthi Naduvu,
Sticker Potthu,
Yaar intha thaavani?


Verse 2 ( TeeJay )

Mella mella paarthen,
Unne ishtapattu naanum rasithen,
Ennakulla Ketthen,
Nee Enekaage vandhvalnunu ketthen...

Unne vidu alaginga illa,
Irundhalum neethan alagu,
Thalli nindu rasikiren unne,
Pakkam vara bayema iruku....

-Srimathumitha-

Aadi paadu nee kondaadu
Jodi seralaam ennodu
kaiye pudichika anbodu,
Nee Vaa
ah vaa vaa vaa,
vaavaa

Muttu muttu enna muttu...
Ooho..
Muttu muttu enna muttu,
Idichi pora Style'ah paarthu,
Kolanthai pola kolapadi kaathu
Unnethaa...Ingga Vaaya!

Un manasukkula irukira ponnu,
Yaarunu sollu sollu,
Ishtapatthu unakintha song'u,
Saa Ree Gaa'Maa Gaa Ree Saa,
Saa Ree Gaa'Maa Gaa Ree Saa,
Muttu muttu enna muttu ...
Lagila Lagila lahi lele,
sahila sahila sahi lele,
Mahila Mahila Mahi le le,
Le Le,
Leylele!

Outro ( TeeJay )

Nee Engge ?
Thedugiren...
En pakkam Varalaam

Srimathumitha

Yaar evarendru theriyavilai
Irundhalum ..mm..na na na na

Monday 13 July 2015

Begin PHP


PHP Beginner Learning Point

Hello Learner ,

This is a blog for the begineer to learn PHP in easy step. We will guide you how to Install PHP and run your first php Program.

Firstly you must know what is the stand for PHP its a Preprocessor Hyper Text Language. PHP is a server side scripting language. Basically PHP is used for running server side script like
echo "Hello Word!!";

Here echo is a function which print the value or variable on the brow ser.

I prefer you to learn basic from the official site i,e www.php.net

Steps:
1.Install latest version of wamp server
2.Install any Text Editor (I prefer notepad++)

Bommei lyrics-Teejay


 Uyir Illadha Bommei
Pinju Manasilla Verum Panje
Aadhil Unarvu thachadhu Penne
Odi Vilayaduthu Nenje

Avasirathila Budhi
Alaginil Siki
Thanei Marakudhu
Yen Pakathil Thoongi
elundhathum Odi
Maraivadhu Nooru

kaalayilla, thanimayil Oomaiya Nan iruka
Ava Pera Solamudiyama Thavika,
Maalay irutu Siraiyil Uravei Thedugiren

Raathiriyil, Oru kadhavu mela Thiraka
Velicham ava mugathila Veesa
Konjam Neram paarthu, Porvayil Pirivaaley.

Bommei Bommei Oommei Bommei
Bommei Bommei Oommei Bommei
Bommei Bommei Oommei Bommei
Bommei Bommei,
Oommei Bommei! Ari Mugam aanen, Un Pirandhanal parisaga
Marai Mugam aanen, Un Paasathey vitu Loosaga.
enaku enge Sorgam? Nan piranthadhe Unakaga
Apo yen inda Naragam!
Idhuva enaku thandhai parisaga?

Bommei Bommei Oommei Bommei
Bommei Bommei Oommei Bommei
Bommei Bommei Oommei Bommei
Bommei ...

Nee Peru Vacha Bommeikulla Uyir irukei.
Dhoosu patu IDHAYAM Pinju Nool Aagudhu.
Serupu kuda thachu podura Aanbudaney
Dhaivu senju mugathila irukum Siripa Thachukudu :(Yen Saamy Nee
Un Aasirvadham Podhumey.
Bommei Sirayil vitu Pilaipen ...
Oru Naalil naan. Uyirodu unudan Vaala venum
Yen Vaalvuku Oru Nimadhiye.

Bommei Bommei Oommei Bommei
Bommei Bommei Oommei Bommei
Bommei Bommei Oommei Bommei
Bommei Bommei,
Oommei Bommei! Kaalayilla, thanimayil Oomaiya Nan iruka
Ava Pera Solamudiyama Thavika,
Maalay irutu Siraiyil Uravei Thedugiren

Raathiriyil, Oru kadhavu mela Thiraka
Velicham ava mugathila Veesa
Konjam Neram paarthu...