Archive for category Uncategorized

Awesome tool

Awesome tool for performance monitoring/instrumentation, I wish I could afford it for my team though…

http://www.dynatrace.com

Leave a comment

When you need Photoshop online

http://fotoflexer.com/

Leave a comment

Cool packaging tool for VS2010

For managing external libraries and references, haven’t tried it yet, but looks very cool!
http://nuget.codeplex.com/

Leave a comment

Great site for latitude/longitude calculations

http://www.gpsvisualizer.com/calculators

Leave a comment

Testing WPF

Trying out WPF technology for my little ResxTranslator project. Styles and resources are powerful features of WPF, but I struggled to find a good site that shows a few examples of how it can be used. Here’s one though: Styles, Resources, and Control Templates in WPF

Leave a comment

Web server health dashboard

I looked at some tools to build a simple dashboard for a web site I run (http://www.activegolf.com) and here is a short list of things I found:

My goal was to quickly build something that I can show on my MacMini in the office (PowerPC-based, old).

2 Comments

My new favorite C# code snippet

My new favorite C# code:

string.Join(",", list.ConvertAll(x => x.ToShortTimeString()))

That takes a list of objects (DateTime in this example) and creates a comma-separated string of it. Short and sweet!

Leave a comment