Know about the Founders

FOUNDERS :-
01. GOOGLE : Larry Page & Sergey Brin
02. FACEBOOK : Mark Zuckerberg
03. YAHOO : David Filo & Jerry Yang
04. TWITTER : Jack Dorsey & Dick
Costolo
05. INTERNET : Tim Berners Lee
06. LINKDIN : Reid Hoffman, Allen Blue &
Koonstantin Guericke
07. EMAIL : Shiva Ayyadurai
08. GTALK : Richard Wahkan
09. WHATS UP : Laurel Kirtz
10. HOTMAIL : Sabeer Bhatia
11. ORKUT : Buyukkokten
12.WIKIPEDIA : Jimmy Wales
13. YOU TUBE : Steve Chen, Chad Hurley
& Jawed Karim
14. REDIFFMAIL : Ajit Balakrishnan
15. NIMBUZZ : Martin Smink & Evert Jaap
Lugt
16. MYSPACE : Chris Dewolfe &
Tom Anderson
17. IBIBO : Ashish Kashyap
18. OLX : Alec Oxenford& Fabrice
Grinda
19. SKYPE : Niklas Zennstrom,JanusFriis
& Reid Hoffman
20. OPERA : Jon Stephenson von
Tetzchner
& Geir lvarsoy
21. MOZILLA FIREFOX : Dave Hyatt
& Blake Ross
22. BLOGGER : Evan Willams.

Posted in Flex | Tagged | Leave a comment

தமிழ் பாடல் வரிகள், திரைப்பட பாடல் வரிகள். 3 Movie song

3 Song Lyrics

இதழின் ஒரு ஓரம் சிரித்தாய் அன்பே
நிஜமாய் இது போதும் சிரிப்பாய் அன்பே
என் நாடியை சிலிர்க்க வைத்தாய்
என் இரவெல்லாம் வெளிச்சம் தந்தை
என் ஆண் கர்வம் மறந்தின்று
உன் முன்னே பணிய வைத்தாய்

சொல்லு நீ i love you
நீ தான் என் குறிஞ்சிப் பூ
என் காதல் என்றும் true
Will make sure you never feel go

ஓ எல்லாம் மறந்து உன் பின்னால் வருவேன்
நீ சம்மதித்தால் நான் நிலவையும் தருவேன்
உன் நிழல் தரைப் படும் தூரம் நடந்தேன்
அந்த நொடியைத் தான் கவிதையாய் வரைந்தேன்

ஓ பெண்ணே என் கண்ணே செந்தேனே வா முன்னே
என் உயிருக்குள் பெயரை வைத்தாய்
என் இரவெல்லாம் வெளிச்சம் தந்தை
என் ஆண் கர்வம் மறந்தின்று
உன் முன்னே பணிய வைத்தாய்

ஓ பெண்ணே என் கண்ணே செந்தேனே வா முன்னே
என் உயிருக்குள் பெயரை வைத்தாய் (2)

சொல்லு நீ i love you
நீ தான் என் குறிஞ்சிப் பூ
என் காதல் என்றும் true
Will make sure you never feel go (2)

Posted in Flex | Leave a comment

Flex datagrid column sorting sample

 

Data grid column sorting sample code..

<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<FLVCoreCuePoints version="1">   

    <CuePoint>
        <Time>0</Time>
        <Type>event</Type>
        <Name>slide1</Name>
        <Parameters>
            <Parameter>
                <Name>id</Name>
                <Value>value</Value>
            </Parameter>
        </Parameters>
    </CuePoint>   

    <CuePoint>
        <Time>5000</Time>
        <Type>event</Type>
        <Name>slide2</Name>
        <Parameters>
            <Parameter>
                <Name>param1</Name>
                <Value>value1</Value>
            </Parameter>
            <Parameter>
                <Name>param2</Name>
                <Value>value2</Value>
            </Parameter>
        </Parameters>
    </CuePoint>   

    <CuePoint>
        <Time>20000</Time>
        <Type>event</Type>
        <Name>slide3</Name>
    </CuePoint>   

</FLVCoreCuePoints>





<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2007/07/26/displaying-xml-data-in-a-datagrid/ -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"
        verticalAlign="top"
        backgroundColor="white" viewSourceURL="srcview/index.html">   

    <mx:XML id="tempXML"
            source="assets/cuePoints.xml" />

    <mx:XMLListCollection id="cuePointXMLList"
            source="{tempXML.CuePoint}" />
    <mx:XMLListCollection id="parametersXMLList"
            source="{dataGrid.selectedItem.Parameters.Parameter}" />   

    <mx:Script>
        <![CDATA[
            private function parametersLabelFunction(item:Object, column:DataGridColumn):String {
                return item.Parameters.Parameter.length();
            }   

            private function numericSortCompareFunction(objA:Object, objB:Object):int {
                var itemA:Number = parseInt(objA.Time.text()) as Number;
                var itemB:Number = parseInt(objB.Time.text()) as Number; 

                if (itemA > itemB) {
                    return 1;
                } else if (itemA < itemB) {
                    return -1;
                } else {
                    return 0;
                }
            }
        ]]>
    </mx:Script>   

    <mx:VBox>
        <mx:DataGrid id="dataGrid"
                dataProvider="{cuePointXMLList}"
                width="100%"
                rowCount="{cuePointXMLList.length + 1}">
            <mx:columns>
                <mx:DataGridColumn id="timeCol"
                        dataField="Time"
                        headerText="Time (ms):"
                        sortCompareFunction="numericSortCompareFunction" />
                <mx:DataGridColumn id="typeCol"
                        dataField="Type"
                        headerText="Type:" />
                <mx:DataGridColumn id="nameCol"
                        dataField="Name"
                        headerText="Name:" />
                <mx:DataGridColumn id="parametersCol"
                        dataField="Parameters"
                        headerText="Parameters:"
                        labelFunction="parametersLabelFunction" />
            </mx:columns>
        </mx:DataGrid>

        <mx:DataGrid id="parametersDataGrid"
                dataProvider="{parametersXMLList}"
                width="100%"
                visible="{parametersXMLList.length > 0}"
                rowCount="{parametersXMLList.length + 1}">
            <mx:columns>
                <mx:DataGridColumn id="parameterNameCol"
                        dataField="Name"
                        headerText="Parameter Name:" />
                <mx:DataGridColumn id="parameterValueCol"
                        dataField="Value"
                        headerText="Parameter Value:" />
            </mx:columns>
        </mx:DataGrid>
    </mx:VBox>

</mx:Application>
Posted in Flex | Leave a comment

Good Thought… !!!!

 


something to share with

Once a Junior School teacher asked her students to bring some potatoes in a plastic bag to school. Each potato will be given a name of the person whom that child hates. Like this, the number of potatoes will be equal to the number of persons they hate. On a decided day the children brought their potatoes well addressed. Some had two, some had three and some had even five potatoes.

The teacher said they have to carry these potatoes with them everywhere they go for a week. As the days passed the children started to complain about the spoiled smell that started coming from these potatoes. Also some students who had many potatoes complained that it was very heavy to carry them all around. The children got rid of this assignment after a week, when it got over.

The teacher asked, “How did you feel in this one week?” The children discussed their problems about the smell and weight. Then the teacher said, “This situation is very similar to what you carry in your heart when you don’t like some people. This hatred makes your heart unhealthy and you carry that hatred in your heart everywhere you go. If you can’t bear the smell of spoiled potatoes for a week, imagine the impact of this hatred that you carry throughout your life, on your heart?”

MORALE:

* Our heart is a beautiful garden that needs a regular cleaning of unwanted weeds.

* Forgive those who have not behaved with you as expected and forget the bad things. this also makes room available for storing good things

 

Posted in Others | Tagged , , , , , | Leave a comment

Spot Fine Details for traffic Voilations from 30Jan2012

Posted in Others | Leave a comment

Made In India, Faked In China – $5 Billion Loss

Made In India, Faked In China – $5 Billion Loss

New Delhi : Chinese manufacturers are increasingly “faking” popular Indian products of consumer goods giants such as Dabur and ITC, undermining the legitimacy of brands and causing losses worth as much as $5 billion annually, officials said.

“A lot of counterfeit Dabur products are made in China. We have conducted at least 20 raids in China but no proper action has been taken by the Chinese,” said Ashok Jain, general manager of finance at Dabur India, the country’s fourth largest FMCG firm.

india

He said such fake products manufactured in China with “Made-in-India” tag are supplied across the world, mostly in India and African countries.

“It causes huge damage to the brand. Those fake products are obviously not up to our standards and supplied at very low prices,” Jain told IANS.

Dabur, which has nearly $4 billion market capitalisation, operates in key consumer product categories like healthcare, skin care, hair care and oral care. The company’s revenue last fiscal was $910 million.

Pradeep Dixit, a senior official of ITC, a $33-billion conglomerate, said the popular FMCG brands of the company were counterfeited by unscrupulous firms and supplied in domestic as well as foreign markets.

“Our popular cigarette brand is faked and supplied widely in the states like Chhattisgarh, Bihar and Uttar Pradesh,” he said.

“China is a big problem everybody is facing,” said S.K. Goel, chairman of the Central Board of Excise and Customs, told IANS.

Goel said the big international brands like Nokia, Adidas, Reebok and Nivea were also widely counterfeited in China and supplied in India and other parts of the world.

Chinese manufacturers are also faking drugs, endangering lives of patients. Fake drugs, carrying “Made in India” tags, supplied from China were recently detained in Nigeria and other African countries.

K.K. Vyas, Delhi’s deputy commissioner of police (crime), said the police have seized and confiscated a lot of fake and counterfeited products of popular brands in the national capital recently.

Vyas emphasised on the need for enhancing punishment for unscrupulous manufacturers and importers. “Punishment needs to be enhanced. Also there is need that judiciary addresses these issues quickly.”

“Counterfeiting is a big menace. It is hurting everybody – consumers, industry and the exchequer,” said Anil Rajput, chairman of the anti-smuggling and anti-counterfeiting committee of Federation of Indian Chambers of Commerce and Industry (FICCI).

Recently, FICCI formed a panel called “FICCI-Cascade” that expands into a committee on anti-smuggling and counterfeiting activities destroying the economy. Chaired by Rajput, the committee is working closely with the government to curb this menace.

According to a report by think tank Indiaforensic Research Foundation, the total loss to the economy annually due to crimes such as counterfeiting, commercial fraud, smuggling, drug trafficking, bank fraud, tax evasion and graft is estimated at 22,528 Crore.

Posted in Top Indian Hot News | Tagged , , , , , | Leave a comment

What Triangle Symbol Means On A Water Bottle – IMPORTANT

Posted in Others | Leave a comment

Pappappa Pappa Pappappa from Vettai

Awesome song… really njoyed a lot…. nice feel through the song…..

Posted in Music | Leave a comment

Rajapattai Song: Paniye Paniye

Movie: Rajapattai Song: Paniye Paniye Singer: Javed Ali, Renuka Music: Yuvan Shankar Raja

Posted in Music | Leave a comment

Adding Image to iText Header

Adding the Text to the PDF

HeaderFooter header = new HeaderFooter(new Phrase(“This is page: “, new Font(bf_courier)), true);
header.setAlignment(Element.ALIGN_CENTER);
document.setHeader(header);
HeaderFooter footer = new HeaderFooter(new Phrase(
“This is page: “, new Font(bf_courier)), true);
footer.setBorder(Rectangle.NO_BORDER);
footer.setAlignment(Element.ALIGN_CENTER);
document.setFooter(footer);

import java.io.*;
import com.lowagie.text.*;
import com.lowagie.text.pdf.*;

public class CreatePDF{
    public static void main(String arg[])throws Exception{
      try{
                Document document=new Document();
                FileOutputStream fos=new FileOutputStream("C:/header-footer.pdf");
                PdfWriter writer = PdfWriter.getInstance(document, fos);
                document.open();
                Image image1 = Image.getInstance("C:/image1.jpg");
                Image image2 = Image.getInstance("C:/image2.jpg");

                image1.setAbsolutePosition(0, 0);
                image2.setAbsolutePosition(0, 0);

                PdfContentByte byte1 = writer.getDirectContent();
                PdfTemplate tp1 = byte1.createTemplate(600, 150);
                tp1.addImage(image2);

                PdfContentByte byte2 = writer.getDirectContent();
                PdfTemplate tp2 = byte2.createTemplate(600, 150);
                tp2.addImage(image1);

                byte1.addTemplate(tp1, 0, 715);
                byte2.addTemplate(tp2, 0, 0);

                Phrase phrase1 = new Phrase(byte1 + "", FontFactory.getFont(FontFactory.TIMES_ROMAN, 7, Font.NORMAL));
                Phrase phrase2 = new Phrase(byte2 + "", FontFactory.getFont(FontFactory.TIMES_ROMAN, 7, Font.NORMAL));

                HeaderFooter header = new HeaderFooter(phrase1, true);
                HeaderFooter footer = new HeaderFooter(phrase2, true);
                document.setHeader(header);
                document.setFooter(footer);
                document.close();
                System.out.println("File is created successfully showing header and footer.");
                }
                catch (Exception ex){
                    System.out.println(ex);

                }
            }
        }

For adding the image to the header use the following code

Image logo = Image.getInstance("/image.gif");
logo.setAlignment(Image.MIDDLE);
logo.scaleAbsoluteHeight(20);
logo.scaleAbsoluteWidth(20);
logo.scalePercent(100);
Chunk chunk = new Chunk(logo, 0, -45);
HeaderFooter header = new HeaderFooter(new Phrase(chunk), false);
header.setAlignment(Element.ALIGN_CENTER);
header.setBorder(Rectangle.NO_BORDER);
document.setHeader(header);


Like and follow this post...
Posted in Others | Leave a comment