All content on jerakeen.org

toybox

16 August 2004 in blog
tagged with [cocoa] [macos] [perl] [release]

Look, ma, a web browser.

Honestly, I don’t know why I bother blogging. All I say is ‘look, I wrote this shiny toy’. Bah.

disqus comments  

NNW subscriptions

16 August 2004 in blog
tagged with [macos] [rss]

So I wanted to see which of my NNW () subscriptions were dead. And I wanted to get the hang of AppleScript. Right.

set errorlog to ""

tell application "NetNewsWire"
  repeat with check in subscriptions
    set err to error string of check as string
    if length of err > 1 then
      set errorlog to errorlog & “Error for ‘” & ((display name of check) as string) & “’ (” & (RSS URL of check as string) & “): ‘” & ((error string of check) as string) & “’\r”
    end if
  end repeat
end tell

tell application “BBEdit”
  make new text window with properties {contents:errorlog}
end tell

Pretty nifty. Course, you have to have BBEdit. But making it use TextEdit shouldn’t be hard.

disqus comments  

Release Frenzy!

16 August 2004 in blog
tagged with [irc] [perl] [release] [wiki]

Had a bit of a release thing over the weekend, new versions of Bot::BasicBot, URI::Title, AudioFile::Identify::MusicBrainz were released, and I’ve also given the world URI::Find::Simple. Now I need a release of Bot::BasicBot::Pluggable to sync it up with Bot::BasicBot, and I have some german translations to integrate into CGI::Wiki::Kwiki. Insane, I tell you.

disqus comments