Monday, September 14, 2009

Use Full Photo in Orkut rather than Cropping

Recently I found orkut removing "Use Original" button while we change our dp ie profile pic after some research I found that it can be fixed using a trick of javascript.
  • Go to Edit Profile & Click Change Photo , then Upload your Image!
  • After Uploading , dont Click anything.
  • Use the Javascript below in the addressbar (Place where we type www.orkut.com)
javascript:with(($ = (this.orkutFrame||window).document.forms)[$.length - 1])action = "/EditSummary.aspx?apw=9999&aph=9999&apdw=9999&apdh=9999&Action.cropProfilePhoto" ,submit();void(8)

  • After Pasting it , Click Enter.
  • Some Error like "Bad, bad user! No donut for you" will come..
  • Never Mind that.
  • Now Click your home page, the uploaded Picture will be fully Sized in your Orkut Account.

Credits: Oug !
Original article link:http://www.tricksterminal.com/2009/09/how-to-upload-full-photo-in-orkut.html

Caution Orkut doesnot permit using javascript but it is a safe javascript verified in Orkut help centre by level 3 user
Rizwan Ibrahim
Orkut Help Centre Link:http://www.google.com/support/forum/p/orkut/thread?tid=56a0f93d38f82300&hl=en&fid=56a0f93d38f823000004737faeefc63b

Wednesday, September 2, 2009

Wild Keyboard Trick

Save this in notepad as anyname.vbs :
and run see the magic:

Code:-
------------------------------------------------------------------------
Set wshShell=wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop
------------------------------------------------------------------------

Crazy CD ROM Trick

Paste this code in notepad .
save it with .vbs extention double click .And ur CDROM goes wild...Enjoy on your friend pc...
CODE:-
---------------------------------------------------------------------------------
set oWMP =CreateObject("WMPLayer.OCX.7")
set colCDROMs=oWMP.cdromCollection
do
if colCDROMs.Count>=1 then
For i = 0 to colCDROMs.Count-1
colCDROMs.Item(i).Eject
Next
For i=0 to colCDROMs.Count-1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 100
loop
--------------------------------------------------------------------------------