ADAM'S WEB PRESENCE

16 June 2007

Art Pancakes

Filed under: Homemade Creations — adam @ 5:02 pm

Lots of pancakesOn Sundays I usually make pancakes for breakfast with the kids. This week inspired by Dave Spencer’s Be a Breakfast Hero instructable, we took the pancakes to a new level.

At first I found I could make some rough face shapes just by pouring the mixture into the pan but to make the more advanced shapes, I had to make a stiffer mixture and used an icing bag to squeeze it out. Mine aren’t as good as Dave’s.

FYI, my pancake mixture is:

  • 1 cup self raising flour
  • 2 tablespoons caster sugar
  • 1 egg
  • 3/4 cup milk
  • pinch of salt

Just mix it all up, it’s pretty simple. Even my kids can do it.


Here’s some pictures. You can all laugh at our bed-hair!

Thanks for the inspiration Dave!YUM!

Check that bed hair!

They loved 'em


13 June 2007

Tunneling rdesktop via SSH

Filed under: Nerd Notes — adam @ 5:08 pm

Tunnel.pngI have a Linux (Debian Etch) server which I am maintaining for a customer up in Queensland. A couple of Windows servers have been added to the network and I want to maintain them also.

I have an existing connection to the Linux server via SSH. There is a hole in the customer’s firewall to allow me to connect to it via SSH but not with any other protocol.

Here is how I can connect through my SSH connection to the Windows machine and remotely operate it on my local Linux PC.


1. On the Linux server, edit the file /etc/ssh/sshd_config and add the following line:

    PermitTunnel yes

Don’t forget to restart the SSH daemon on the server after this (I just rebooted it).

2. Install some basic X11 packages and rdesktop onto the Linux server:

apt-get install xbase-clients xterm rdesktop

3. On your local Linux machine, edit the file /etc/ssh/ssh_config and add the following line:

    Tunnel yes

You can now log in to the Linux server using the following command. Let’s say for example, the Linux server is tux.customer.net

ssh -X root@tux.customer.net

Finally bounce across to the Windows box like so. Let’s say the Windows box is called bill.customer.net

rdesktop -u Administrator bill.customer.net

You could even do it in one step like this:

ssh -X root@tux.customer.net "rdesktop -u Administrator bill.customer.net"

Powered by WordPress