Archive

Archive for March, 2005

Technorati

March 30th, 2005 No comments

So I’ve just been examining Technorati, trying to get the gist of it.

Categories: This Blog Tags:

DrunkenBlog: Behind the Red Shed, with Jonathan ‘The Wolf’ Rentzsch

March 28th, 2005 No comments

In this post on DrunkenBlog, Jonathan Rentzsch gives a terrific interview. Notably, he discusses Apple’s enterprise software development gem, WebObjects, which I’ve always wanted to know more about.

Anyone know if there is a downloadable developer’s version somewhere?

Update: Yes, you can download a 1 month evaluation copy from http://connect.apple.com/.

Categories: General, J2EE, Software Tags:

No More Appendix

March 24th, 2005 1 comment

Well, I’m back home with one less organ: my appendix was removed yesterday by Dr. Jose Pires at Montfort Hospital. Everything went very well.

Categories: General Tags:

Zeroconf under Debian Linux

March 19th, 2005 No comments

This afternoon I quickly setup enough infrastructure on my test server to enable it to use Multicast DNS to resolve local names and answer local queries. Multicast DNS is part of the Zeroconf specification, which Apple has implemented and refers to as Rendezvous.

In order for this to work, your system needs to both answer and perform multicast DNS queries. The two pieces you need for this are:

  • mDNSResponder: From Apple, and covered under the APSL, but included in [Porchdog Software]’s Howl package.
  • nss-mdns: Written by Lennart Poettering, provides a plugin for the GNU Name Service Switch (NSS) functionality of the GNU C Library (glibc) providing host name resolution via Multicast DNS

As of 0.3, nss-mdns is already Debian-ready, simply build a package executing fakeroot dpkg-buildpackage from the unpacked tarball. There is an mDNSResponder package in Sarge which is rumored to be removed shortly due to license problems with APSL, so grab a copy soon.

Once these are installed, simply add mdns to the hosts line of /etc/nsswitch.conf and you’re done.

You will now be able to resolve “.local” hosts from your Debian system and also resolve this system’s hostname on other local hosts. By editing /etc/mdnsresponder/mDNSResponder.conf, you can advertise any service you want.

Categories: IPv6, Networking, System Tags:

JINI and JXTA

March 14th, 2005 2 comments

Some days I wish I had way more energy in order to explore all the technology I’m interested in.

How does JXTA figure in relation to JINI?

Dan Creswell’s post about JINI not being RMI brought JINI back to the forefront of my technology todo list. This stuff is cool.

Categories: J2EE, Networking Tags:

Extracting URLs from .webloc Files

March 2nd, 2005 No comments

Before I forget how to do this, here is a simple way to extrac URLs from Safari’s .webloc files:

find ./ -name '*.webloc' -exec strings '{}'/rsrc \; | grep http | sed '/^.http/s//http/' | sort -u | pbcopy

Seems to work for me.

Categories: General, Software Tags: