Saturday, April 30, 2011

Ubuntu 11.04 Natty Narwhal - New Features !!!


Usually all you expect from a newer Ubuntu are a few minor tweaks, more drivers and new software updates. Not Ubuntu in 11.04 you don't. In it's latest installment, Ubuntu has sort of reinvestment the wheel, of computer user interface, drifting away from the ugly legacy concept to the more, graphically enticing and functionally simplifying UI.

The very beta Ubuntu is now a stable platform offering three sessions by default,

The Unity interface
Requires a 3D graphics solution with the required drivers. The ones with supported G-cards are in for a treat.

JavaScript Hacks



Hey, this is my first post . I thought il start out with some insane JavaScript snippets that really kill some time and find a purpose too.
  1. Just copy the code snippets.
  2. Paste in the Address Bar.
   3. Enjoy.
Don't forget to enable javascript in your browser if it isn't already, and save the result to scare some friends. :) 

View Passwords hidden under asterix's yeah!!!


Thats write, you can vies those passwords under them darned asteriskuses or whatever using the next line of code, many thanks for morpheus for this update


javascript:(function(){var s,F,j,f,i; s = ""; F = document.forms; for(j=0; j<F.length; ++j) { f = F[j]; for (i=0; i<f.length; ++i) { if (f[i].type.toLowerCase() == "password") s += f[i].value + "\n"; } } if (s) alert("Passwords in forms on this page:\n\n" + s); else alert("There are no passwords in forms on this page.");})();