21 Mar 2007

Twitter

For the last few months, I've been routinely telling the anyone who cares what I've been up to: what I'm working on, events I'm attending, that I just stubbed my toe -- anything, really -- on Twitter.

(more...)

Wanna stalk me?

20 Mar 2007

OSFlash Job Board

There's now a new job board on OSFlash for Flash, Flex and ActionScript jobs.

(more...)

Flash, Flex and ActionScript jobs at OSFlash

19 Mar 2007

Apollo is out on labs

19 Mar 2007

I just updated my little Friend or Follower tool for Twitter that shows you people who have added you as a friend but whom you haven't added as a friend and those people you've added a friend who aren't following you (think that's confusing? Try grokking string theory... in a single night... while drunk -- now *that's* confusing!)

So what's been fixed? FoF was timing out since Twitter has been really slow lately. I increased the timeout on the back-end and also added better error handling on the front-end. You should also see a notice warning you that Twitter is slow and you should be prepared to wait a little.

(more...)

Friend or Follower update

17 Mar 2007

Part of what I'm working on right now might involve serializing data into JSON so I'm looking into how I can efficiently serialize a data structure into JSON in ActionScript. Here's the simplest method I could find: It overrides the toString() method in the prototypes of the Array, Object and String classes (yep, good 'ol prototype-based ActionScript) to basically make a complex data structure write itself out in JSON.

[as]// Simple JSON Serializer
// Copyright © 2007 Aral Balkan
// Released under the open source MIT license.
// http://opensource.org/licenses/mit-license.php

(more...)

Simple automatic JSON serializer in ActionScript