Found this in some code today. Made me smile
Fibonacci Sequence using .NET 4 and no recursive function
Using a recursive function can be very expensive as you’re stack will get larger and larger as you need to store in memory a pointer to the last function on top of…
Cool Stuff Vol 4.
IE and CSS Compatibility http://msdn.microsoft.com/en-us/library/cc351024%28v=vs.85%29.aspx Bedroom Closet Office http://www.elijahmanor.com/2011/01/transition-to-working-from-home.html MVC Scaffolding (using NuGet) http://blog.stevensanderson.com/2011/01/28/mvcscaffolding-one-to-many-relationships/ Lean Pub http://leanpub.com/ MediaElement.js – Cross Browser HTML5 Video / Audio Compatibility http://mediaelementjs.com/ Test Javascript on Differnent Browser…
Serializing .NET Resources (.resx) as JSON (part 2)
So after playing with my own code after a while I realized that there was a slight flaw in my thinking. Since every application is slightly different in the way it determines…
Serializing .NET Resources (.resx) as JSON
This is actually quite a useful solution. The goal here is to use the same resource file for client and server side coding, while also utilizing the “Culture” awareness of .NET that…
Reinstalling WCF on Windows
http://msdn.microsoft.com/en-us/library/ms732012.aspx Technorati Tags: wcf,debugging
PartialView: Why?
There are several cases where you would want to break down your view into several small components. One use case that I am working with right now, is I have a multi-lingual…
Reverse Proxying With IIS7
There are some really nice modules to add on to IIS7. One of the them URL Rewrite. You can also set up a Reverse Proxying rule. This basically allows you to re-route…
Powershell Script: Convert RGB to HEX
Sometimes when I’m doing web programming (namely CSS), I need to quickly convert RGB to HEX. So, I have written a neat little Powershell script. Keep in mind that you might have…