Speaking at Aarhus .NET User Group
On April 28th I'll be giving a presentation at Aarhus .NET User Group on SharedCache. The presentation will be part of a combined event where Morten Jokumsen will be presenting Velocity and Jakob Tikjøb Andersen will be presenting Cassandra. I'll give a quick run through of what SharedCache is and what it's not, how to use it and what you can expect from it. If all goes well, I'll have my EC2 SharedCache cluster up and running for demo purposes :) If you want to join, please sign up at Facebook.
Simple AS3 Stack Implementation
Recently I was doing some experimental AS3 development. Much to my surprise, simple collection classes like Stack/Queue are not available in the framework - guess I'm spoiled being used to the .NET Framework. I ended up implementing a simple stack using an internal linked list. There's nothing exciting about the implementation but I thought others might be able to use it, so here it is :) StackNode.as package dk.improve.collections
{
internal final class StackNode
{
public var value:Object;
...
Miracle OpenWorld 2010 Slides
These are my slides + materials from the sessions I presented at the Miracle OpenWorld 2010 conference.