Yappy,
I just won a price by "Liking" a page on facebook "Like & Win" competition
Actually some company announced that they will give free gifts to the 2000th and 2011th users, who like their facebook page.
So what I did was simple, I just made a python script (that's not hacking, just power of programming) to win that price and start that script to check the page status and alert me when page like is near 1998-1999 
01 | import urllib2,time,winsound |
02 | from HTMLParser import HTMLParser |
04 | class MyHTMLParser(HTMLParser): |
07 | HTMLParser.__init__( self ) |
10 | def handle_starttag( self , tag, attrs): |
12 | for name, value in attrs: |
13 | if name = = 'id' and value = = 'profile_header' : |
19 | def handle_endtag( self , tag): |
24 | def handle_data( self , data): |
26 | self .data.append(data) |
29 | print "Checking current likes (remember 2000th and 2011th will get the price):" |
39 | if string.startswith( '1,999' ): |
40 | winsound.PlaySound( "SystemExclamation" , winsound.SND_ALIAS) |
41 | print "Check the page and get the price" |
43 | print "Sleeping for 5 minutes" |
Change this URL to the URL of your choice [http://www.facebook.com/pages/Some_URL_for_like_and_win]
Please note I am NOT responsible if that company sues you for cheating & for using programming skills in competition 
Aloha