Jan 27, 2009 1
Beautiful code with wordle
Had to test generate a wordle from source code. In this case HttpServletRequest.java.


Jan 27, 2009 1
Had to test generate a wordle from source code. In this case HttpServletRequest.java.


Jan 25, 2009 7
Sometimes it can be handy to reach your home server even if you have all sorts of proxy servers and firewalls between you and your home server (e.g. from work).
Stunnel to the rescue!. Compile it, install it or just download it from some repository (I used macports).
On the server:
cert=stunnel.pem
pid=/tmp/stunnel.pid
[stunnel443]
accept = 192.168.1.7:443
connect = 192.168.1.7:22
sudo stunnel <server-config-file>openssl s_client -connect 192.168.1.7:443. After all ssl handshake code you should probably get something like: SSH-1.99-OpenSSH_5.1On your client machine:
#cert = stunnel.pem
pid=/tmp/stunnelclient.pid
#foreground=yes
client=yes
[21222]
accept=21222
connect=192.168.1.7:443
sudo stunnel <client-config-file>ssh -p 21222 localhost to create a connection to your server machineVoilà, a SSL tunnel for transporting SSH!
All SSH traffic nicely hidden in a SSL tunnel.
Jan 24, 2009 0
I found two 1GB memory cards just laying around at home. My mac mini only had 1GB memory in total but can handle 2GB. So I decided to upgrade my mini!
This will probably void warranty but my computer is way to old anyway. I found a great video-tutorial that I followed.
Tools used: putty knife, baby blanket, old company entry card (IKEA IT) and some other random card.
Recent Comments