niik

Stories submitted by niik

Exception data evolved(blog.freakcode.com)

submitted by niikniik(365) 1 year, 5 months ago

Two extensions methods which makes adding debug data to exceptions a breeze. read more...

add a comment |category: |Views: 64

tags: another

Intellisense for Google Maps v3 in Visual Studio(blog.freakcode.com)

submitted by niikniik(365) 2 years, 6 months ago

A drop in file for getting intellisense working for Google Maps version 3. read more...

add a comment |category: |Views: 131

tags: another

Exception signatures - organize your exceptions(blog.freakcode.com)

submitted by niikniik(365) 2 years, 10 months ago

Unhandled exceptions in your websites and applications are often a strong indication that one of your users is having a bad experience. Treat exceptions as TODO-items and use exception signatures to keep track of them without being overwhelmed. read more...

add a comment |category: |Views: 351

tags: another

A managed MD5 implementation(blogs.msdn.com)

submitted by niikniik(365) 3 years, 3 months ago

A fully managed MD5 implementation for .NET ported from the reference implementation in C. Allows for MD5 usage in Silverlight and removes some unwanted allocations that takes place in the built-in version. read more...

add a comment |category: |Views: 29

tags: another

How to Calculate Network Utilization in .NET(nayyeri.net)

submitted by niikniik(365) 3 years, 4 months ago

How to calculate utilization of a particular network interface in .NET using performance counters and a bit of math. read more...

add a comment |category: |Views: 519

tags: another

How would the CLR Be Different?(codebetter.com)

submitted by niikniik(365) 3 years, 4 months ago

Matthew Podwysocki explores the question “Knowing what we know now, how would you change the CLR?” read more...

add a comment |category: |Views: 12

tags: another

A generic implementation of the WeakReference object(ondevelopment.blogspot.com)

submitted by niikniik(365) 3 years, 8 months ago

Real handy implementation of a generic WeakReference by Patrik Hägne complete with neat implicit casting read more...

add a comment |category: |Views: 74

tags: another

ToTitleCase extension method(blog.freakcode.com)

submitted by niikniik(365) 3 years, 8 months ago

An extension method for converting text to proper case (ie "george washington" => "George Washington") read more...

add a comment |category: |Views: 185

tags: another

Single instance Calculator.NET(blog.freakcode.com)

submitted by niikniik(365) 3 years, 8 months ago

Everyone has their set of utility programs that they need to be productive. I've got lots of them. Calculator.NET is one of them. Read how to add a single instance option by modifying the source code. read more...

add a comment |category: |Views: 23

tags: another

High precision performance measurement(blog.freakcode.com)

submitted by niikniik(365) 3 years, 8 months ago

I've seen enough developers use DateTime.Now for their "quick and dirty " performance measurements. Enough is enough, it's high time to start measuring performance with precision and it's so easy that there's really no reason not to read more...

add a comment |category: |Views: 24

tags: another

The hazards of extension methods(blog.freakcode.com)

submitted by niikniik(365) 3 years, 8 months ago

I love extension methods! I really do, to the point that I sometimes have to constrain myself not to use them for everything but there's one big problem read more...

add a comment |category: |Views: 17

tags: another

StartsWithAnyOf extension method(blog.freakcode.com)

submitted by niikniik(365) 3 years, 8 months ago

Simple reusable extension method for the string object that saves time and increases readability read more...

add a comment |category: |Views: 16

tags: another

Collection.IsNullOrEmpty(blog.freakcode.com)

submitted by niikniik(365) 3 years, 8 months ago

A great highly reusable utility method that increases your code readability. Do you love String.IsNullOrEmpty? Well, this is exactly the same but for collections read more...

add a comment |category: |Views: 51

tags: another