From My Heart to Yours Hi Baby, today the 19th of December not only marks the day that you get one year older, it also marks the day you become one year more beautiful. I created this section on my website just to remind you that although I am busy all the time there is [...]
Removing ^M From File in Emacs
If you edit a text file on Windows and you then use it in emacs under a Linux environment you will see the ^M character at the end of each lin. Do the following to remove it in emacs. ; goto top of buffer M-x replace-string C-q C-m RET The control-q will allow you to [...]
100 Open Computer Courses
While doing my usual random searching through Google I stumbled across a wonderful resource. Something I think every individual not only computer savvy persons or geeks would find useful. It’s a list of 100 open computer courses. Yes, open as in FREE! The are split into the following categories: Computer Science and Engineering Computer Security [...]
Converting keystores between JKS and P12
Found these keytool commands that saved me some valuable time working with an already existing .p12 certificate for signing an applet. It withs in JDK6 and onwards (not in JDK5 and earlier). JKS → P12 keytool -importkeystore -srckeystore keystore.jks -srcstoretype JKS -deststoretype PKCS12 -destkeystore keystore.p12 P12 → JKS keytool -importkeystore -srckeystore keystore.p12 -srcstoretype PKCS12 -deststoretype [...]

