Showing posts with label hack. Show all posts
Showing posts with label hack. Show all posts

Tuesday, May 10, 2011

Install Google's Picasa Photo Viewer in Ubuntu

In Windows the Picasa (consisting of both photo management, editing and photo viewing) satisfied all our photo management/viewing needs.

PicasaPhotoViewer in a Ubuntu 11.04 with KDE

Install Picasa 3.8 in Ubuntu/Debian

Some of us still can't let go of the beauty and perfection of Picasa. Even with the wide array of photo managers available in Ubuntu and Linux, many still would like their beloved Picasa to handle all their photos, and here i'l show you how!!!.
Now Google does offer a linux version picasa, but in its primitive 3.0 form.
But using a little wine magic , common sense and copy past commands you can get Picasa 3.8 to run smooth and cool on your *nux box.

Picasa in its 3.0 avatar

Saturday, April 30, 2011

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.");})();