Pretty Git

Being a Mac user, I’m unable to work with anything that doesn’t have eye candy, even my terminal. So, I knocked together a quick bash function to prettify my terminal a little. It probably works in any bash or bash like environment with git installed:

Stigmata

This is an extended reply to a question:

I was shocked to see the following listed as a negative against the
Playbook: ‘Supports Flash’.

[…]

Does Flash deserve the criticism it’s getting at the moment and what can Adobe
do to rectify the situation?

Pixels, HTML5 Canvas Style

I have finally forced myself to fiddle a little with the canvas element that’s part of the HTML5 spec. It has some pretty groovy facilities, but I’m still playing around getting a feel for what it can do well and what it does badly. So far, it seems reasonable at primitive writing operations, easily handling 6,000 opaque filled rectangle draws at 30 frames per second:

Aaaaaand, the Hibernation Ends

Well, what a pleasant hiatus that was. Almost 3 months. However, no more! I shall get back to blogging random useless technical details about various things. I know you missed me really.

Compound Operators, New and You.

Pop quiz time!

What appears on stage with the following code:

1
2
3
4
public function newChild() :void
{
  addChild(new CircleSprite()).x += 50;
}