Thursday, August 9, 2007

Youtube: Tech Tutorials

Youtube has always fascinated with the kind of business opportunities it provides. Youtube not only provides you links on various humorous videos, tv shows, comedy, autos etc… it also does present before you some of the most wanted tutorials.. Yes, you got it right.. I am talking about Video Tutorials. I tried to compile a list but then there are so many.. So just putting below some of the many easy to find Tech Tutorials from Youtube… check them out at your leisure.

Do comment if you find them interesting :)

Cheers,

Vaibhav

Wednesday, August 8, 2007

Google Mistakes Own Blog for Spam, Deletes it

Readers of Google Inc.’s Custom Search Blog were handed a bit of a surprise Tuesday when the Web site was temporarily removed from the blogosphere and hijacked by someone unaffiliated with the company.
ADVERTISEMENT

The problem? Google had mistakenly identified its own blog as a spammer’s site and handed it over to another person. more>>

Tuesday, August 7, 2007

Did you ever thought of converting your text documents to Audio files and stuff them in your iPod/iPhone so that you could listen to them at your leisure. What great fun it would be if you could do so. The good news is that this is now possible, with a software called Text2Aloud. The software is available for free trial download. However, if you would like to use it forever you definitely need to shed off some of your hard earned dollars ;)

In order to setup the program and get on board please follow the steps below:

SETUP - WINDOWS
1. Download and install TextAloud2.
2. Open the TextAloud2 program.
3. Go to File - Open and select the file you want to convert to audio. You can change the file name that appears in the Title field if you choose. Remember where you save this file as you will need to navigate to it later.
4. Click the Speak To File button.
5. Choose where you would like to save the new audio file, and select OK to start the process. Wait for the process to complete.
6. When the process is complete, drag the audio file into your iTunes library.

Also note that the voice might sound very much computer like, however, if you would like to hear a more smooth and clear voice, i believe AbleReader is an alternative that is both Mac and Windows compatible and uses “AT&T Natural Voices” (16kHz audio).

So if you are a nature conservationist, this is the way to go. In the end, who wants to carry the hard paper printed documents home ;)

Cheers,

Vaibhav

Monday, August 6, 2007

Picsquare.com: Future of Photo Printing has arrived

Picsquare.com is one of the startup idea’s that really made me say ” WOW”. The idea of the site is pretty simple; you upload pictures directly from the digi cam/ scanned copies from your computer to the website and the site delivers you the hard copies of the same and that too within an acceptable time.

Picsquare.com which was founded by Manish and Kartik, students from IIT Mumbai, offers various solutions from Photo Prints, Photo Mugs, Photo T-Shirts, Photo Greetings to Photo Calendars.

During my short meeting with Manish and Kartik, i found the guys to be extremely passionate and confident about their product. Some of the future ideas they shared with me sound even better. I believe the co-founders have enough charisma to take picsquare to the new orbit.Also with attractive pricing and prompt delivery timelines, i believe picsquare.com has miles to go.

Click here to check out Picsquare

Cheers,
Vaibhav

Saturday, August 4, 2007

Top 10 Password Crackers .. REVEALED.

Here we go with the list.
  1. MessenPass 1.04 : Reveal passwords of instant messenger applications such as MSN Messenger and Yahoo Messenger.
  2. FileZilla PWDump 0.1 : FileZilla PWDump is a utility that dumps all FileZilla (client) credentials from the Windows Registry and decrypts the passwords.
  3. KMd5 1.03b: An Md5 hashes cracker for lists (lists of hash or lists of word, but an incremental mode is available as well).
  4. LCP 5.04 : Main purpose of LCP program is user account passwords auditing and recovery in Windows NT/2000/XP/2003
  5. RockXP 3.0 : Retrieve your lost XP system passwords, retrieve and change your XP Key.
  6. UnSecure: Remote on-line password cracker.
  7. Brutus : Another remote on-line password cracker
  8. VNCrack : VNC password cracker
  9. PKCrack : Breaking Pk-Zip Encryption.
  10. Cain/Abel NT/2K/XP Password Cracker : Cain and Abel is a password recovery tool for Microsoft Operating Systems.

Get a hang of them people. Keep visiting and keep commenting my page for more. :)

Cheers,

Vaibhav

Wat is the difference between JDK and JRE?

A lot of times, we have seen that people ( obviously novices in the field of java) dont know the exact difference between JDK and JRE. Just to make Java get a lil more closer to our readers, we thought of putting up the difference between the two in this writeup.

“JDK” is the Java Development Kit. I.e., JDK is a bundle of software that you can use to develop Java based software. The “JRE” is the Java Runtime Environment. I.e., the JRE is an implementation of the Java Virtual Machine which actually executes the Java Programs.Typically, each JDK contains one (or more) JRE’s along with the various development tools like the Java source compilers, bundling and deployment tools, debuggers, development libraries, etc.

Look, so simple it was.. ..

cheers,
Technofriends Team

Write a Java Application without a main() method

Here we are.. this time with a small Java tip.. being Java fans..we just cant wait to post on Java. So, decided to start of with something which most of us might not be aware of.
You can write a runnable Java program which does not have main method at all. This can be done using the static block of the class.

The reason this works is that static initialization blocks get executed as soon as the class is loaded, even before the main method is called. During run time JVM will search for the main method after exiting from this block. If it does not find the main method, it throws an exception. To avoid the exception System.exit(0); statement is used which terminates the program at the end of the static block itself.

class MainMethodNot
{ static
{
System.out.println(“This java program has run without the main method”);
System.exit(0);
}
}