Twitter Screen Saver (a.k.a. a “Stream Saver”)

Just a quick and dirty experiment: A Twitter ScreenSaver.

TwitterStreamSaver.png

With the Apple Developer Tools installed, you are able to create your own screensavers with Quartz Composer.
(I’ve been experimenting with this tool a few years ago when it was called PixelShox. Later it was bought by Apple to include it in Quicktime.)

This “StreamSaver” is still a work in progress and sorry; OSX 10.5+ only.

If you have any idea’s, lemme know!

Download/see it here, and place it in ~/Library/Screen Savers.

Prediction: “Twitter App Formatting Standards War”

Well…, a war is a little bit exaggerated. But consistency is the issue here, which remembers me the early days of different implementations of webbrowsers (which is still a pain in the ass, ask any random webdeveloper)

For example, today I ran in to the formatting of an URL. In tweetdeck it’s only clickable when an URL has the protocol attached to it (http://). So I complained about it, thinking that people didn’t understand linking in tweets.

Turns out I was wrong, apps like tweetie and the webinterface of twitter itself automagically create a hyperlink from an address prefixed with www without an http://.

So my question is, should there be a standard (like HTML/CSS) or developer guidline to format tweets (or is there one already?)

Sending prawn documents with ActionMailer

Problem: How to send a prawn pdf wich normally is generated by a controller.

and keeping it DRY

Required: Prawn & prawnto

Read the rest of this entry »

RER2009 Rumble

We (@kjw and @leipeleon) participated in the RubyEnRails Rumble last weekend. It was a blast!

Prevent spambots from posting

Just got a report that we’re getting spammed by a spambot.

Then I recalled a remark @smeevil made about a technique he used to fight off spambots: create a valid form element but put it away somewhere off screen (a hidden field won’t probably work)

Read the rest of this entry »

Using github on the mac for non-programmers

A quick and dirty tutorial for some friends of mine.

Needed software:

Nice to have:

  • Textmate: text editor.
  • GitHub account (for push rights).
  • GitX: Grapichal tool for commiting to local repo (OSX 10.5+).

Create account on github

Go to http://github.com for an account.

Optional: Provide an SSH key for pushing changes.

Clone a Repo


My advice is to generate a special dir for the projects (mine is Rails).

Fire up the terminal and type:

    # Goto the dir
cd ~/Rails
    # if the repo is read only:
git clone git://github.com/LeipeLeon/facebooker.git
    # if you have push rights:
git clone git@github.com:LeipeLeon/facebooker.git
    # if you installed GitX (as mentioned above)
gitx

Adding changes

With the gitx program it’s easy to commit thanges to your local repo. When these are ready to commit to the master you sync it first with the HEAD and then push your changes.

    # get changes from the master repo to your local repo
git pull
    # push your changes
git push

Additional info:

If it’s a rails application you’re cloning, startup the server with

    # Copy database credentials, uses sqlite3 as default
cp config/database.yml.example config/database.yml
    # install required gems
rake gems:install
    # make tables
rake db:migrate
    # startup server at http://localhost:3000
script/server

and you will be able to use the application at http://localhost:3000

Burgerweeshuis Evenementen Kalender

Bij het gebrek aan een RSS feed van de burgerweeshuis agenda heb ik zelf een (ruby) tooltje gebouwd om alle nieuwe evenementen in google calender te plaatsen.

Tevens wordt elk nieuw evenement automatisch geplaats in het twitter account @burgerweeshuis. Via @nuinhetbw alle evenementen een uur van te voren aangekondigd.

Get yours here:

Dit tooltje heeft de aandacht getrokken van diverse andere organisaties en ben dan ook van plan om hier iets meer mee te gaan doen. I’ll keep you posted!

Textmate Comments doesn’t work anymore!

I like to stay on the edge of development so I’ve installed all the bundles available for TextMate in http://svn.textmate.org/trunk to my ~/Library/Application Support/TextMate.

But then you get a lot of bundles you don’t need like Active4D and ASP, so I disabled all the bundles who’s name didn’t ring a bell to me. The menu is readable again! Little did I know it was going to bite me in the foot the next day.

I performed this action late at night, just before getting some shut-eye. The next morning I was happily coding away until I discovered the Comment (command + /) feature didn’t work anymore!

Damn!

At first I thought it was a corrupted bundle, so I disabled all bundles to no avail. Then I reinstalled TextMate, nothing….

I have this plugin called Project+, updated it: nope, reinstall it: nope, disable it: nope.

With AppZapper I deleted the caches: no joy.

So I was already an hour away and I got frustrated….. So I enabled all plugins and Tada! IT WORKED AGAIN! By trail and error I found out:

It’s all in the bundle called “Source”.

Re-enabling this plugin restores all functionality! Whoohoo!!

So, here we go again, coding happily away….

Create a Facebook app with Rails

In the beginning of this year I scored a programming gig for Wakoopa to spice up their Facebook app.

The original app was created in .NET by a third party and was buggy as hell. The goal was to recreate the app in Rails and have at least the same functionality.

Some befriended (PHP) developers warned me that facebook has some serious pitfalls so before I made an estimate for the project I bought a PDF called Developing Facebook Platform Applications with Rails from The Pragmatic Programmers and a PDF book from Peepcode.

Thanks to this PDF and the Facebooker plugin it was doable. I made the sample application as described in the PDF and so I had enough knowledge to create the WakoopaFacebook app. My advice: buy it!

Read the rest of this entry »

Time Tracking: In Analog Style

IMG_0228.JPGAs a freelancer you need to keep track of your time spend on a account. Blech! Not my favorite task, but it has to be done. I tried several web and desktop tools, but it didn’t satisfy me.

Reading David Allan’s ‘Getting Things Done’ persueded me to follow a style of tracking items with OmniFocus but it doesn’t include any timetracking capabilities.

Searching around the web brought me to the website of David Seah and specificaly the Emergent Time Tracker.

Read the rest of this entry »