Tags
.NET ADO.NET AggregateException Anti-pattern asp.net ASP.NET MVC C# C# 3 Code Quality ConcurrentDictionary Conference CTP/Beta Database data design DDD DDD Scotland Debugging design patterns error handling Extension Methods fun Google Analytics hiring IIS Installation learning LINQ object oriented design parallelisation parallelization refactoring security software development practices Spatial SQL SQL Injection Attack SQL Server SQL Server 2005 SQL Server 2008 unit testing virtual earth visual studio Visual Studio 2008 Windows 7 Windows VistaArchives
- February 2012
- January 2012
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- March 2007
- February 2007
- December 2006
- July 2006
- April 2005
Monthly Archives: April 2008
Where’s My Data? An introduction to Spatial Queries in SQL Server 2008
The slide deck used for my presentations to the Scottish SQL Server UG on 13/Feb/2008, the North-East Scotland .NET User Group on 20/Feb/2008, VBUG Manchester on 24/July/2008, and SQL Bits III on 13/Sept/2008. There is also a set of demo … Continue reading
Hello world!
Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!
Posted in Uncategorized 1 Comment
DDD7 – Date official!
I’ve just received an email to say that the date for DDD7 has officially been released. At the time of writing the DDD website hasn’t been updated, but I can reveal that it will be on Saturday 22nd November 2008. … Continue reading
Posted in Uncategorized Leave a comment
Crazy Extension Method
Here is an example of a crazy extension method that alters the semantics of method calling. First the extension method: public static class MyExtensions { public static bool IsNullOrEmpty(this string target) { return string.IsNullOrEmpty(target); } } Instead of calling the … Continue reading
Event: LINQ to XML – Everything but the kitchen sinq
I’ll be speaking at the Scottish Developers event in Glasgow on the 10th June 2008 at the Continuing Professional Development Centre at Glasgow Caledonian University. I’ve be giving an introduction to the new XML classes in .NET 3.5, how they … Continue reading
Posted in Uncategorized Leave a comment
Fizz-Buzz in LINQ
This just occurred to me. It is somewhat pointless, but I thought it was interesting: static void Main(string[] args) { var result = from say in Enumerable.Range(1, 100) select (say % 15 == 0) ? “BuzzFizz” : (say % 5 … Continue reading
Getting values out of XML in .NET 3.5 (LINQ to XML series part 2)
In my last post I gave a brief introduction to some of the new XML classes available in .NET 3.5. In this post I’ll continue that introduction by explaining how to get information out of the XML. First off, lets … Continue reading
Introduction to LINQ to XML
Last year I wrote about the new languages features available in C# 3.0 (Anonymous Types, Extension Methods, Automatic Properties, A start on LINQ, Object Initialisers I, Object Initialisers II, & Object Initialisers III) and since then I’ve really got in … Continue reading
Data Protection Muppets
I’ve mentioned this topic on my blog before with regard to the Royal Bank of Scotland and Intelligent Finance but this time it was related to an insurance claim. The insurance company put me in contact with a company that … Continue reading
Developer Day Scotland Geek Dinner
Delegate registration for Developer Day Scotland is still open – sign up now for the last few places. Developer Day Scotland is a day long event for Software Developers held on 10th May 2008 in Glasgow. If you want to … Continue reading
Posted in Uncategorized Leave a comment
