Archive for September, 2010
Great site for latitude/longitude calculations
Posted by hakanl in Uncategorized on September 29, 2010
Testing WPF
Posted by hakanl in Uncategorized on September 28, 2010
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
Web server health dashboard
Posted by hakanl in Uncategorized on September 22, 2010
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).
My new favorite C# code snippet
Posted by hakanl in Uncategorized on September 22, 2010
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!