Code

NetMeter tool released

Posted in Code on January 13th, 2010 by Jeppe Andersen – Be the first to comment

I have always been using a small tool to monitor my network usage for various reasons, but recently my favourite decided to take the step away from being a free tool. Instead of tracking down another, I decided to use this opportunity to start a new project of my own, and use it as an opportunity to take a look at WPF for the first time.
Currently it simply displays your network usage, but should only be considered an appetizer in its current state – I got some ideas lined up to give this some more sweet features!

Head over to the new page and try it right away if you want – nocture.dk/software/netmeter

Dijkstra’s algorithm in C#

Posted in Code on October 25th, 2009 by Jeppe Andersen – 3 Comments

I had the pleasure of working with this algorithm one year ago during a project on route planning. Recently I encountered this algorithm again during a course, and decided to do a small implementation of this algorithm along with a graphical interface to use it. Use it for anything you want.

It finds the shortest path from a starting point to all nodes in a graph, but keeps track of how to get there, so if you want to use it for the shortest path between 2 points, simply follow the previous node located in path from the destination point.

http://www.nocture.dk/data/Dijkstra.zip