Welcome to Geekdojo Sign in | Join | Help
There just isn't much information out there about Microsoft Dynamics CRM Web Services... at least not when compared to other technologies.  And with Silverlight and Surface and PopFly burning up the MS blogosphere, it's kind of understandable. Read More
A coworker of mine was trying to apply the XPath 2.0 upper-case() function to some shredded xml from a query in SQL Server 2005 and inquired about it with me just before heading out the door. Here's what's happening: You try to apply the upper-case function Read More
Just want to save this mapping URL on MSDN of SqlDbType to SqlType (the 'native' sql types you should use in Sql CLR code), since I expect to be doing some of that, shortly! http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemDataSqlTypes.asp Read More
I would not post such a thing as this if I had not spent a LOT of time looking at it.  But I have, and the new Application Updater Block v2.0 has been neither easy to implement nor reliable in even toy problems for me.  I'm extremely disappointed.  Read More
VS.NET is a funny thing, it won't let you reference an .exe and yet csc.exe will.  That's a bit of a pain when you want to reference, say, a WinForm for unit testing purposes.  Sure, you can create a separate assembly project for the entry point Read More
On the merits of caffeine: “As the mathematician Paul Erdos said, 'A mathematician is a device for turning coffee into theorems.' Academics, designers, programmers, and creative professionals everywhere will surely empathize.” http://www.oreilly.com/catalog/mindhks/chapter/hack92.pd Read More
... this is how I'd assign work, from time to time (pre-production code only, of course). int System.Collections.IComparer.Compare(object x, object y) { throw new NotImplementedException(@ "Congratulations, you've found the missing Read More
Nothing to see here, just linking to my Wikied contribution to pinvok.net   Read More
I don't know who Nick Malik is but I like his practical views on eXtreme Programming Read More
Nothing to see here, just saving this link: Visual Studio.NET 2003 Automation Samples link   Read More
SOAPosphere: The logical and/or physical 'atmosphere' or contiguous bounded environment of transport/RPC services surrounding a silo of service functionality.  The SOAP-based 'web services' that fulfill the PE & CE of the PEACE tenets Read More
Hello, for those of you that might care - I'm back from my blogging hiatus, sort of.  This time, I want to ask a question of you: What kind of ways do you organize your personal code?  What folder structure do you choose?  Do you name folders Read More
An explicit call to a struct method, even if it overrides an object method, will not implicitly box.  However, consider this case: static void Main() { int i=65536; Console.WriteLine("This is boxed: {0}", i); Console.WriteLine("This Read More
I needed string.Format in SQL just now, so I made it up (not very exciting but nicer than writing nested REPLACE statements. YMMV   DROP FUNCTION dbo.fnFormatString GO CREATE FUNCTION dbo.fnFormatString(@format varchar(6000), @arg1 sql_variant, Read More
This is a great new article. Of special note is the little Whidbey note at the bottom: Delegates have been optimized and, if I'm reading the chart right, will be about 3 times faster :)   Read More
More Posts Next page »