Rocking the blogosphere

Archive for March, 2005

Another Design Patterns site

http://wiki.cs.uiuc.edu/PatternStories/DesignPatterns

including a handy reference card.

Popularity: 4% [?]

A Learning Guide to Design Patterns

Wow, this guy is seriously into Design Patterns. He runs a study group for it:

http://industriallogic.com/papers/learning.html

Popularity: 3% [?]

This may be the most useful UNIX command ever

http://www.gsp.com/cgi-bin/man.cgi?section=1&topic=leave

or just

man leave

if it’s already on your system. My FreeBSD system had it by default.

Popularity: 7% [?]

Restarting fetchmail automatically

I use fetchmail (in daemon mode) to pull down mail from a POP server to my local box, where I then serve it up with the Courier IMAP server. Problem I had was when my box rebooted, fetchmail could not automatically restart because it needs a password to proceed (I don’t want to store the password in my .fetchmailrc). My solution was to add the following to my .bashrc:

if [ -x "/usr/local/bin/fetchmail" ]; then
  if ! killall -0 fetchmail 2> /dev/null; then
     echo “killall -0 fetchmail failed - starting fetchmail…”
     fetchmail
  fi
fi

Popularity: 4% [?]

Remote XUL is a pain

I’m struggling to get a remote XUL app working that uses a dont-build-content tree XUL template with a remote RDF datasource. The problem is that Mozilla’s security model is just too restrictive in terms of what remote XUL and JavaScript can do. An extension could do this no problem, but I can only get the remote XUL to do what I want if I change the browser’s security settings (which I can’t ask users to do) or use signed JavaScript (which sounds like a royal pain in the butt). More info at these forum threads:

Popularity: 4% [?]

appcasting

I had the same idea espoused in Robin Good’s post about appcasting. I experimented with the idea using this post on my blog. This was a lame example as my search sidebar extension is only 11KB, but it was a proof of concept - certainly the concept is more interesting when applied to larger files like Linux ISO images…

I think we are on to something here with the idea of distributing software using RSS enclosures.

In fact, I am been very underwhelmed by the quality of the podcasts that I’ve found - I’ve found them completely boring and useless - but I could definitely appreciate getting the latest Knoppix ISO automatically overnight using this technology.

Popularity: 3% [?]

next.yahoo.com

Want to see the latest stuff that Yahoo! is working on?

http://next.yahoo.com/

Some highlights currently on there:

and more…

http://next.yahoo.com/

Popularity: 6% [?]

Next Page »