Browse by Tags
All Tags »
Code (
RSS)
Sorry, but there are no more tags available to filter with.
-
|
I'm experimenting with using the Guid type in databases and applications but I don't like the string format of the Guid. It's not easily read or formatted on a report. I wanted to find a way to represent very large integers such as the Guid...
|
-
|
In my first attempt at creating a real applicaiton using the new ASP.NET MVC project template ( Codeplex Preview 5 ), I found that when I clicked a new tab I'd created linked to a specific controller and an action I'd decorated with the [Authorize...
|
-
|
I've just installed the plugin blogged about by Mike Ormond and here's an example of it's output taken from code in the Atrax project I've just published to Codeplex . namespace Atrax.Library { [DataContract, Serializable] public class...
|
-
|
Two and a half years ago I wrote an implementation in C# of an algorithm published in 2003 in a short academic paper by Yutaka Matsuo and Mitsuru Ishizuka in the International Journal of Artificial Intelligence Tools. Of course, the algorithm is not a...
|
-
|
I want to thank Scott Guthrie and Scott Hanselman and the whole ASP.NET MVC team for making web development fun again. The simplicity of Rails, the power of .NET, and so much more. I've been reading the posts and watching some of the screencasts but...
|
-
|
I am fascinated with Windows Communication Foundation (WCF) but the configuration files can be cumbersome. Until now I haven't had the time to investigate programmatic configuration of WCF, but I may be involved in a project soon in which WCF would...
|
-
|
I was playing around with some old code in which I had a custom ConfigurationSection (see code below). I had an attribute in the configuration section that I wanted to change from an Int32 to a Double. Seems a simple change. Just a little refactoring...
|
-
|
When something works well on its own with a high level of reliability, we tend to take it for granted and forget about the mechanics of how it works. We turn the key of our car and expect the engine to fire up. No thought is given to the inner workings...
|
-
|
Often in my line of work, I need to create parameterized queries in code. All those overloaded constructors. Yuck. So, like a lazy guy would, I built a factory. I use it everywhere. In my personal projects and even at work when no one is looking. Here...
|
-
|
Sometimes your logger throws an exception while logging an exception. At least it does if you have luck swings like mine from time to time. Here's how I deal with it. using System.Diagnostics; try { //some logging code that can throw an exception...
|