THE MAKING OF ORKUT

8:42 PM 0 Comments A+ a-


A guy lost his girlfriend in a train accident....

but the gal's name nowhere appeared in the dead list. This guy grew up n became IT technical architect in his late 20's, achievement in itself!!

He hired developers from the whole globe and plan to make a software where he could search for his gf through the web..

Things went as planned...

n he found her, after losing millions of dollars and 3 long years!!

It was time to shut down the search operation, when the CEO of Google had a
word with this guy n took over this application,

This Software made a whopping 1 billion dollars profit in its first year,

which we today know as ORKUT.

The guy's name is ORKUT BUYUKKOTEN Yes its named after him only. Today he is paid a hefty sum by Google for the things we do like scrapping.

He is expected to b the richest person by 2009..

ORKUT BUYUKKOTEN today has 13 assistants to monitor his scrapbook & 8 to

monitor his friends-list. He gets around 20,000 friend-requests a day & about 85,000 scraps!!!

Some other Cool Facts about this guy:

* He gets $12 from Google when every person registers to this website.

* He also gets $10 when you add somebody as a friend.

* He gets $8 when your friend's friend adds you as a friend & gets $6 if

anybody adds you as friend in the resulting chain.

* He gets $5 when you scrap somebody & $4 when somebody scraps you.

* He also gets $200 for each photograph you upload on Orkut.

* He gets $2.5 when you add your friend in the crush-list or in the hot-list.

* He gets $2 when you become somebody's fan.

* He gets $1.5 when somebody else becomes your fan.

* He even gets $1 every time you logout of Orkut.

* He gets $0.5 every time you just change your profile-photograph.

* He also gets $0.5 every time you read your friend's scrap-book & $0.5 every time
you view your friend's friend-list.

' WOW!!!

Wanna Speak like American

8:33 PM 0 Comments A+ a-

1 U don't open conversation (on telephone) with a "Hello", ......but with a "Hi" !
2.U never say "want to" /"going to" do it?? u say "wanna"/ "gonna" do it.
3. The telephone is never "engaged", ???.it's always "busy".
4. U don't "disconnect" a phone, ??.U simply "hang-up".
5. U never "mess-up" things, ????U only "screw them up".
6. U never have a "residence" tel. no., ???.U have a "home" no.
7. U never have a "office" tel. no., ???U have a "work" no.
8. U don't stop at the "signals", ???..but halt at the "lights".
9. U don't "accelerate", ??.U "step on the gas".
10 Your tyre never "punctures", ???.U may have a "flat".
11 The trains have "coaches" or "bogies' ;no more ! ..but "carriages" or "boxes".
12. There are no "petrol pumps", ???.but "gas stations"..
13 U no longer meet a "wonderful" person, ???U meet a "cool" guy
14 U don't pull the switch down to light a bulb. U rather flick it up.
15 U don't "turn on the heat", ???? U "turn on the juice".
16 There's no "Business Area" ... only "business districts", ???.and no "districts" but"counties".
17 No one stays "a stone's throw away", rather "a few blocks away".
18 There's no "Town Side", ???..it's "Down Town".
19 In hotel U no longer ask for "bill" and pay by "cheque", ??.rather ask for "check" and pay with "bills" (dollars).
20 There are no "soft drinks", ???.. only "sodas"/"pop".
21 Life's no longer "miserable", ??? it "stinks".
22 U don't have a "great" time, ???? U have a "ball".
23. U don't "sweat it out", ????U "work U'r butt off".
24. Never "post" a letter, ??always "mail" it and "glue" the stamps,?..don't "stick" them.
25. U no longer live in "flats" , ???..U live in "apartment".
26. U don't stand in a "queue", ???..you are in a "line".
27. U no longer "like" something, ??? U "appreciate" it.
28. "#" is not "hash", ???..it's "pound".
29. U R not "deaf", ???.U have "impaired hearing".
30. U R not "lunatic", ????U are just "mentally challenged".
31. U R not "disgusting", ???.. U R "sick".
32. U can't get "surprised", ???? U get "zapped".
33. U don't "schedule" a meeting, ????.. U "skejule" it.
34. U never "joke", ????U just "kid".
35. U never "increase" the pressure, ???U always "crank" it up.
36. U never ask for a pencil "rubber" U ask for an eraser.
37. U don't try to find a lift, ???..U find an elevator.
38. U no more ask for a route??? but for a "RAUT"
39. U don't ask somebody "How r u ?", ???.U say "What's up dude?" or U say "How U DOIN' "
40. U never go to "see" a game, ???? U go to "watch" a game.
41. If U see "World" champions(or Series), ????read "USA" champions (orSeries).
42. There's no "zero" but "O", ???.no "Z" but "zee".
43. There's no FULL STOP after a statement, ???. there's a PERIOD.
44. If someone gets angry at U, ???.U get "flamed".
45. U Drive Ur car on Parkways and ???..always park your car in the driveway!
46. You do not ask for" brinjal" .?.. ask for "eggplant "?? also there are no"lady's finger".its "Okra" !
47. In short U don't speak English, ????.U speak American.

நன்றி

www.pkp.in

5 Simple, But Useful CSS Properties

7:47 PM 0 Comments A+ a-

This post is about 5 useful CSS properties that you should be very familiar with, but will most likely rarely use. I’m not talking about the new fancy CSS3 properties. I’m referring to the old CSS2 properties such as: clip, min-height, white-space, cursor, and display that are widely supported by all browsers. So, don’t miss this post because you might be surprised how useful they are.
1. CSS Clip
The clip property is like a mask. It allows you to mask the content of an element in a rectangle shape. To clip an element: you must specify the position to absolute. Then, specify the top, right, bottom, and left value relative to the element.

Image Clip Example (demo)
The following example shows you how to mask an image using clip property. First, specify the <div> element to position: relative. Next, specify the <img> element to position: absolute and the rect values accordingly.



.clip {
position: relative;
height: 130px;
width: 200px;
border: solid 1px #ccc;
}
.clip img {
position: absolute;
clip: rect(30px 165px 100px 30px);
}

Image Resize and Clip (demo)
In this example, I’m going to show you how to resize and clip images. My original images are in rectangle format. I want to scale it down by 50% to create a thumbnail gallery in a square format. So, I used the width and height property to resize the images and mask them with the clip property. Then, I used the left property to shift the images to the left by 15px.

.gallery li {
float: left;
margin: 0 10px 0 0;
position: relative;
width: 70px;
height: 70px;
border: solid 1px #000;
}
.gallery img {
width: 100px;
height: 70px;
position: absolute;
clip: rect(0 85px 70px 15px);
left: -15px;
}
2. Min-height (demo)
The min-height property allows you to specify the minimum height of an element. It is useful when you need to balance the layout. I used it on my job board to ensure the content area is alway taller than the sidebar.

.with_minheight {
min-height: 550px;
}
Min-height hack for IE6
Note: min-height is not supported by IE6, but there is a min-height hack.
.with_minheight {
min-height:550px;
height:auto !important;
height:550px;
}
3. White-space (demo)
The white-space property specifies how white-space is handled in an element. For example, specify white-space: nowrap will prevent the text from wrapping to next line.

em {
white-space: nowrap;
}
4. Cursor (demo)

If you change the behavior of a button, you should change its cursor as well. For example, when a button is disabled, the cursor should be changed to default (arrow) to indicate that it is not clickable. So, the cursor property is extremely useful for developing web apps

.disabled {
cursor: default;
}

.busy {
cursor: wait;
}

.clickable:hover {
cursor: pointer;
}

5. Display inline / block (demo)

In case you didn’t know: block elements are rendered on a new line, whereas inline elements are rendered on the same line. <div>, <h1>, and <p> tags are examples of block elements. Examples of inline tags are: <em>, <span>, and <strong>. You can override the display style by specifying display: inline or block.



.block em {
display: block;
}

.inline h4, .inline p {
display: inline;
}


நன்றி

WebDesignerWall

Crackers Beat Adobe CS4 License Activation Using A Simple Novice Trick

2:05 AM 0 Comments A+ a-

There is no doubt that cracker's always tend to be one step ahead of software creators, no matter how tough the software protection is they always come up with a method to bypass it sooner or later, But, Adobe seems to be very unlucky with their CS4 product release, first it was the Photoshop CS4 leak and now Adobe Creative Suite 4 got cracked and keygened within three days of its initial release, massive sized trial version of Adobe CS4 suite with crack patches made their way on torrent portals and file-sharing websites within days after release.

Adobe CS4 makes use of a license activation system to make Keygens and shared serial-number obsolete by blacklisting them via a central activation server, Surprisingly, smart crackers defeated the whole CS4 activation system using a simple trick, blocking access to the activation server using Windows or MAC HOSTS file.
After generating the key using the keygen, users simply need to block access to activate.adobe.com using their firewalls or Windows HOSTS file, effectively disabling the CS4 licensing system from verifying the registration serial-key.

How to Fix Runtime Errors in Internet Explorer ?

1:49 AM 0 Comments A+ a-

This post provide also step by step instruction to Fix internet explorer run time error.

To do this automatically,

Click the Fix this problem link.Then click Run in the File Download dialog boxes, and follow the steps in the Disable Microsoft Internet Explorer Script Debugging Wizard.

To do this Manually ,

To do this, follow these steps in Internet Explorer:
Click the Tools button , and then click Internet Options. Or, press ALT+T, and then press O.In the Internet Options dialog box, click the Advanced tab.Click to select the Disable script debugging (Internet Explorer) and Disable script debugging (Other) check boxes, and then click to clear the Display a notification about every script error check box.Click OK to close the Internet Options dialog box.

How to Hide Your Post Date, Time and/or Author ?

1:44 AM 0 Comments A+ a-

There are some reason for blogger to hide Post date, time and author. May be they want to see their blog looks clear or everything. Now I will show you the trick to "hide your post date, time and or author". the methods is very simple, just find the code that I pointed to you and delete it. You can chose which part want to delete, date only, time only, author only or it all. OK, if you decided to do it lets begin the hack.

1. Login to blogger the go to "Layout --> Edit HTML"
2. Click on the "Download Full Template" to back up your template first.
3. Check on the "Expand Widget Templates" check box.

Hide Post Date
find this code and delete it.

Hide Post Time
find this code and delete it.

title='permanent link'>
expr:title='data:post.timestampISO8601'>

Hide Post Author
find this code and delete it.

5. Save your editing

Good Luck ............

How Can You Change The Name of Recycle Bin?

1:35 AM 0 Comments A+ a-


You can change the name of Recycle Bin of your system if you wish. It is very easy and interesting but it require some changes in windows registry,

Step 1: First click on Start button > click on Run option

Step 2: Type here regedit.exe and press enter then you will find there regedit editor

Step 3: In regedit editor you will open HKEY_CLASSES_ROOT folder, In this folder open the CLSID folder then open the {645FF040-5081-101B-9F08-00AA002F954E} folder >ShellFolder folder at last

Step 4: Here simply change the data value from "40 01 00 20" to "70 01 00 20".
After performing all above steps restart your computer then you will find option to rename Recycle bin name after right clicking on Recycle Bin Icon.

Now you can change new name as you wish.

How to withdraw PF money without involving/sign of employer.

2:13 AM 0 Comments A+ a-

If the company is closed and the employer is either not traceable or refused to sign the subscriber to the fund can still submit his claim for settlement through other means. It is the duty of the employer under the Act & Scheme to help Employees' Provident Fund organization to settle the Provident Fund dues of his employees. He has to complete the prescribed application within 5 days of receipt [para72 (5)] forms & hand over it to the member when he leaves the service. When a member finds it difficult to get the form attested by the employer, he can get the attestation of any of the following officer & send to the Provident Fund office:

1.Manager of a bank.
2.By any gazetted officer.
3.Member of the Central Board of Trustees./ committee/ Regional Committee (Employees'
Provident Fund Organization).
4.Magistrate/ Post/ Sub Post Master/ President of Village Panchayat/ Notary Public.

How to withdraw PF money & check the withdrawl status?

2:09 AM 0 Comments A+ a-

To withdraw PF money you need to fill the form no.19 (Employees's Provident Fund Scheme, 1952) and Form No.10C (Employee’s Pension Scheme, 1995) and you can withdraw the PF deposited to your account by your previous Employer. Forms available here: EPFO

FOR Claim Status (all INDIA) try here: EPF India

To know the details/rules (applicable) please see the blogs of Taurus Sir on PF:
RTI India - EPF - transfer or withdraw.

File RTI application with CPIO of Concerned PF office to check the status of claim. Application as per Central Govt. rules & fees.

Suggested Format of RTI application for withdrawl status (by JPS Sir) :http://www.rtiindia.org/forum/blogs/...nd-refund.html

How to Check PF Transfer Status?

2:05 AM 0 Comments A+ a-

To know the details of transfer procedure, please see the blogs of Taurus Sir on PF:
RTI India - EPF - transfer or withdraw.

File RTI application with CPIO of Concerned PF office to check the status of transfer.RTI application will be as per Central Govt. RTI Rules & fees.

RTI Application For Central Govt Info (by JPS 50 Sir)
http://www.rtiindia.org/forum/blogs/...govt-info.html

Please refer to this blog by JPS 50 Sir: http://www.rtiindia.org/forum/blogs/...ding-govt.html for a suggested format.

PF Account Balance Check Up.

1:53 AM 1 Comments A+ a-

How to Check PF balance ??

Online faciltiy is available for accounts maintained at PUNE, Ahmedabad, Chennai and Kerala regional offices of EPFO.

A/C with PUNE Office try here


A/C with AHEMABAD Office try here:EPFO | Employees Provident Fund Organisation, Gujarat, Ahmedabad

A/C with VADODARA Office try here: EPFO | Employees' Provident Fund Organisation, Vadodara Region

A/C with CHENNAI Office try here:Employee Provident Fund Organisation (EPFO), Chennai

A/C with KERALA Office try here:Your EPF Balance

If your PF account is not maintained at the office/s mentioned above please follow this blog by JPS Sir:
http://www.rtiindia.org/forum/blogs/...rough-rti.html