Hey, there’s something new around here!

I’ve finally redesigned this website’s WordPress theme. Can you believe the old one was already 4 years old? It’s a much simpler design, now – less clutter, more focused on a pleasant reading experience (the content is still the same, though, so don’t get your hopes up). I’ve designed and coded the themes I’ve used in […]

Continue reading →

Ludum Dare 24 starts today

Developers: Ludum Dare, the 48-hour videogame development competition, starts today at 9PM EST when the theme for this weekend-long game hackathon is announced. I will be taking part of this fun contest for the first time, streaming the development process live at a Twitch.TV channel. I’ve wrote a few posts about what I plan on […]

Continue reading →

Android for ActionScript developers, part 2: Events and listeners

The first thing that made me pause when working with Java is discovering that it doesn’t have event listeners – at least not in the sense that I’ve come to expect based on my ActionScript experience. In ActionScript 3, you attach an event to an object like so: myObject.addEventListener(MouseEvent.MOUSE_DOWN, onMouseDown); protected function onMouseDown(e:Event): void { […]

Continue reading →