Sunday, 11 September 2011

Yarigelona namma problemu (Lifu Ishtene) lyrics


yarig helona namma problemu
hudugara novige illa mulaamu
hale girl friendsigella kotta salamu
kiviyalli nivu itta hoovey kayammu
yelle idrunu neevu henge idrunu
bathroomnalladru hadri namma poemu
maji hugideera lifey thumba aramu

yarig helona namma problemu
hudugara novige illa mulaamu

thumba sanna huduga antha andkondidhe nanu yelne classalli
gejje sound madikondu kunto bille adtha bandhlu hesaru vaishali
yako yeno namma devru bathi idok kalthbittavney
hugugi yedru mathaddage nalge mele kunthkondavne
naanu vaishaalige i love you antha helakagilla
aake nanagitha ondu footu yettra beledubitlalla
yaarigelona namma hightu problemu
vaishaalini nee yake kudide complanu

sheela siklu pucilli  kara kammi hakisikondu pani puri thindvi
kainetikinalli ibru obre kuntha hage kunthu odadkondu idvi
saki tanknallavala jothe ijadida kanasu bithu
midnightalli mysore roadu namibranna nodtha ithu
lovu nethige yeri nanu marthe colleju metlu
aadre ondu divsa sheela seeda bandu raki katbitluuuuu
yarigelona ellargu samu problemu
henmaklige anna aagi bitkonde rammu


degree maduvaga omme bassu passigantha nanu Qnalli hode
nanna hinde ninthovlige thuti pakka machhe ithu hesaru helalare
arda second saku nange bilodakke lovinalli
amele yeno aithu antha nimge nanu henge heli
avalige nanu nooraondne boyfriend agidde kanri
century hoddovla munde nanu bacha aagode kanri
yarigelona namma nextu problemu
nanna flash backey ondu chewingu gammu











Thursday, 25 August 2011

Highlight Duplicate Entry in Excel

You may have to highlight duplicate entries in the excel and you may think it is very difficult to do. We have a solution for it. You need to just copy the below code and it to the excel.

In order to add the code to excel, please follow the steps given below:
1. Open the Excel file.
2. Right click on the page name.
3. Click on the 'View code' option.
4. Paste the following code and save.

Sub FindDups ()
'
' NOTE: You must select the first cell in the column and
' make sure that the column is sorted before running this macro
'
ScreenUpdating = False
FirstItem = ActiveCell.Value
SecondItem = ActiveCell.Offset(1, 0).Value
Offsetcount = 1
Do While ActiveCell <> ""
If FirstItem = SecondItem Then
ActiveCell.Offset(Offsetcount,0).Interior.Color = RGB(255,0,0)
Offsetcount = Offsetcount + 1
SecondItem = ActiveCell.Offset(Offsetcount, 0).Value
Else
ActiveCell.Offset(Offsetcount, 0).Select
FirstItem = ActiveCell.Value
SecondItem = ActiveCell.Offset(1,0).Value
Offsetcount = 1
End If
Loop
ScreenUpdating = True
End Sub
.



5. Sort the column using 'Sort' option. 
6. Go to the macros and click on the 'Run' button.
7. Duplicate entry will be shown in red.




Thursday, 18 August 2011

Investments in Share Market

Indian Share Market is crashing. However, you can make money by investing on the following shares. Even the SENSEX has fallen down, you can view the upward movement in this share. Those who are small investors can invest and get a huge profit.
1.
506457GUJ.CARBON

2.

530519
INTERFACE




Thursday, 11 August 2011

MySQLDumper - An Easy way to take backup of MYSQL Database

MySQLDumper is a PHP and Perl based tool for backing up MySQL databases. You can easily dump your data into a backup file and - if needed - restore it. It is especially suited for shared hosting, where you don't have shell access. This application can be easily installed to your account.




In order to install this application, you need to download the application by Clicking Here. Once you have downloaded the file, please upload to your account and unzip the file to a folder. Access the folder and it will ask the database name, username, password and hostname. You need to enter the database details of the database of which you need to take the database backup. Once it is done, you can easily take backup of the database and store in your account as well as download it to your computer.