Technorati
So I’ve just been examining Technorati, trying to get the gist of it.
So I’ve just been examining Technorati, trying to get the gist of it.
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/.
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.
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:
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.
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.
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.