Archives by date

You are browsing the site archives by date.

Google Logos

On a new year, I found a new logo on google, and wonder what they do with old logos…I search google for its logo and reach google logo collection since 1999… http://www.google.com/holidaylogos.html I must see for designer to see the creativity of logo designer and its really fun for public to see the good efforts [...]

ffmpeg : Video Converter for Linux and Windows

Now a days we often visit a website that display some ad video or some profile video. Most of those are created using camcoders, professional video studio. But those formats are very heavy in Size (storage) to be used on web interface. Therefore as developer you often reach a stage where you need to convert [...]

My New Computer is up and running

After, almost 4 yrs I bought a new PC for myself. After some ups and down in assembling PC and installing Software I finally get it running. It is really fast PC to work on, and Virtual PC 2007 from Microsoft, I am really enjoying using more than one OS on my PC. Currently my [...]

Setting/Resetting Auto increment value in MSSQL 2005

Once you create a table and what to reset autoincrement value of a table to your desire number, you need to set some system table values, which are not available for direct editing. To perform this you need to do following: SELECT OBJECT_ID,OBJECT_NAME(OBJECT_ID) AS TABLENAME, NAME AS COLUMNNAME, SEED_VALUE, INCREMENT_VALUE, LAST_VALUE, IS_NOT_FOR_REPLICATION FROM SYS.IDENTITY_COLUMNS ORDER [...]

Disclaimer for Toy website (Was originally written in 1998)

Disclaimer follows:  (It was in red colour on website homepage, but I copy here as normal, Bold some text to highlight) Web Page is subject to change without notice; Text is slightly enlarged to show detail; Resemblance to actual persons, living or dead, is unintentional and coincidental; All models are over 18 years of age; [...]

Whois utility for Microsoft Windows

Check this software http://www.microsoft.com/technet/sysinternals/utilities/Whois.mspx I download it, copy paste the exe in my C:\Windows\System32 and now I have new command available on my XP command prompt to find whois of domains. great work

POP3 Mail accessing with SSL

I have lately create an class in PHP 4 to connect and do POP3 mailbox handling. However, that class is not able to utilize the SSL connection and hence it fails when I have to access my Gmail (Now Google Mail ) account which use SSL connection for the purpose. For this I found another [...]