2006/02/26

CTRL ALT DEL @ remote desktop

Is there a way to use the CTRL ALT DEL function in remote desktop?? whenever i try it it just brings up the CTRL ALT DEL functions for my local machine instead of the server i am remoted into.

The ANSWER is

Ctrl Alt End

2006/02/25

about paper cd case

about paper cd case

How to fold the paper case:

1. Fold the left and right sides (lines labelled "1" and "2").

2. Fold the bottom edge up to the line labelled "3". Then fold it back. This part will be the pocket.

3. Fold the top edge down to the line labelled "4" and then fold it back. Then fold the top edge down the the line labelled "5" and then fold it back. This will make the spine and top flap.

4. Spread the sides of the pocket to the sides to create "wings". Beginners can do this by folding lines "6" and "7" (first wing) and then lines "8" and "9" (second wing). Or, fold "6" and "8" and then "7" and "9". The fold lines may be off slightly depending on your printer.

5. Tuck the wings behind the front part of the pocket. The two letter "A"s should touch each other and the two letter "B"s should touch each other. Flatten the pocket. Your CD will go in the pocket.

6. Make little dog ears in the top flap (labelled "10" and "11").

7. Tuck the top flap into the pocket. Woohoo! You're done!

The folding instructions are based on Tom Hull's original origami CD case instructions.

2006/02/23

Manually Remove a Windows Service

You can use the command line tool "sc" to delete a service (as well as a whole bunch of other things, like set it to manual/auto, stop/start it, etc).


C:>sc delete
DESCRIPTION:
Deletes a service entry from the registry.
If the service is running, or another process has an
open handle to the service, the service is simply marked
for deletion.
USAGE:
sc delete [service name]

2006/02/21

ColdFusion 7.x & MySQL 4.1.x Connection

ColdFusion 7.x & MySQL 4.1.x Connection


You can check MySQL installation by nmap or netstat commands.

debian:~# nmap localhost

Starting nmap 3.81 ( http://www.insecure.org/nmap/ ) at 2006-01-14 11:22 CET
Interesting ports on localhost.localdomain (127.0.0.1):
(The 1654 ports scanned but not shown below are in state: closed)
PORT STATE SERVICE
21/tcp open ftp
22/tcp open ssh
25/tcp open smtp
53/tcp open domain
80/tcp open http
110/tcp open pop3
143/tcp open imap
953/tcp open rndc
3306/tcp open mysql

Nmap finished: 1 IP address (1 host up) scanned in 0.809 seconds
debian:~#
debian:~# netstat -a | grep mysql
tcp 0 0 localhost.localdo:mysql *:* LISTEN
unix 2 [ ACC ] STREAM LISTENING 4245 /var/run/mysqld/mysqld.sock
debian:~#

BE CAREFUL: This settings are working without any problem on Windows systems BUT if you want to get Unicode support on Linux systems, you must define JDBC URL like below

jdbc:mysql://127.0.0.1:3306/unicodetest?useUnicode=true&characterEncoding=UTF-8