improve.dk
Just another mindless drone looking for the perfect stack
posts - 220, comments - 475

April 2010 Blog Posts


Speaking at Aarhus .NET User Group

Written on Friday, April 23, 2010 by Mark S. Rasmussen in Development: .NET, Presenting

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.

No comments | Write first comment
 

Simple AS3 Stack Implementation

Written on Wednesday, April 21, 2010 by Mark S. Rasmussen in Development: AS/Flex/Flash

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; ...

4 comments | Read comments
 

Miracle OpenWorld 2010 Slides

Written on Saturday, April 17, 2010 by Mark S. Rasmussen in Development: .NET, Conferences, SQL Server: Miracle Open World, Presenting

These are my slides + materials from the sessions I presented at the Miracle OpenWorld 2010 conference.

No comments | Write first comment