Cool…
Monthly Archives: February 2006
Hyperconnectia
The disease of the Internet generation:
Lego Brokeback Mountain
Weirdly interesting. Lego – I wish I knew to how to quit you!
http://destinationdaniel.smugmug.com/gallery/1213678/1/56764726
Thanks to seehere.blogspot.com
Barcelona and GaudÃ
Posted a new travel log entry from our last Europe trip:
Here’s what I’ve got so far:
- 2005-05-24: SFO to Rome
- 2005-05-25: First day in Rome
- 2005-05-26: Rome to Sorrento
- 2005-05-27: Sorrento and Capri
- 2005-05-28: Day trip to Pompei
- 2005-05-29: Sorrento to Firenze (Florence)
- 2005-05-30: Firenze and Lucca
- 2005-05-31: Firenze and Bologna
- 2005-06-01: Firenze, Greve, and Villa Vignamaggio
- 2005-06-02: Greve and Firenze
- 2005-06-03: San Gimignano and the wedding
- 2005-06-04: Greve to Barcelona
- 2005-06-05: Barcelona and GaudÃ
My new Scala 500
Arrived today. This one is redesigned with a different earpiece and it no longer requires a separate charger, as the power jack is built right in.
Intro to SLP
SLP (Service Location Protocol) is a network service discovery protocol, in the same vein as Bonjour, ZeroConf, UPnP, etc.
IBM developerWorks has a nice article which covers the basics of SLP and shows some example programs using an open-source implementation called OpenSLP.
FUSE/sshfs
FUSE (Filesystem in Userspace) rocks. Case in point, sshfs. – It’s a filesystem client based on the SSH File Transfer Protocol. Since most SSH servers already support this protocol it is very easy to set up: i.e. on the server side there’s nothing to do. On the client side mounting the filesystem is as easy as logging into the server with ssh.
To set it up, just do this once:
$ sudo apt-get install sshfs $ sudo adduser yourlocalusername fuse (log out and back in so that it recognizes me as a member of the group "fuse")
Mounting is as easy as:
$ sshfs yourremoteusername@remotehost: mountpoint
To unmount:
$ fusermount -u mountpoint
Tip of the hat to Ubuntonista and of course Miklos Szeredi.