Buy anything from HongKong - Dealextreme

You can buy any kind of electronic gadgets from DealExtreme with free shipping option.
Please visit DealExtreme for very low prices.
Here is the link to the site : www.dealextreme.com

19 April 2007

Movie player and subtitles editor

Very impressive movie player :
http://www.subedit.prv.pl/

Change Locale of Solaris Unix Linux Machines

export LC_ALL=en_US.UTF-8
export LANG=en
Locale Chart for Solaris : http://developers.sun.com/dev/gadc/tools/lc/lc.jsp

Opening tar.gz Compressed File

To open a tar.gz compressed file use the command : "gzip -dc file_name.tar.gz tar -xvf -"

Creating a tablespace and user in Oracle Database

TABLESPACE :
create tablespace sample datafile 'C:\oracle\product\10.2.0\oradata\orcl\sample.dbf' size 10M autoextend on next 10M;

USER:
CREATE USER sample IDENTIFIED BY sample DEFAULT TABLESPACE sample TEMPORARY TABLESPACE temp QUOTA UNLIMITED ON sample;
GRANT ALL PRIVILEGES TO sample;

Hacking MSN Live Messenger

To disable someone's MSN Live Messenger tell him to write the following string (without quotes) in the personel messages area : "ñ¯a_Á¯aÿ±m¯aÁÇáç±Çáß±Çá§ÁaÇáDZOÇᯱÇá§±Çár×ÁÇá+ÑÇ á£áÇá"

Running java process for remote debugging

Add the following JVM parameters :
"-Xdebug -Xrunjdwp:transport=dt_socket,address=8888,server=y,suspend=n"