By tag: CodeThinked
0
kicks
How Do You Deal With Exceptions?
A little post on my ideas about handling exceptions within applications. How do you handle them?
0
kicks
Code Generation Should be the Nuclear Option
So let me first just start off by saying: I do not like code generation. In certain cases I think it can help greatly, but many people are far too eager to jump to this solution. I don't think that there is anything particularly evil about the process of generating code, but I do feel like using cod...
0
kicks
Static Method Interception in .NET with C# and Mono.Cecil
Interested in Mono.Cecil? A very short introduction to a very cool and powerful tool.
0
kicks
Introduction to Mixins For the C# Developer
If you are a C# developer then you may keep hearing about all the cool kids from Smalltalk, Ruby, Python, Scala using these crazy things called mixins.
0
kicks
Should We Solve Institutional Problems In Our Code?
Is it okay for us to solve deficiencies in our development teams with code?
0
kicks
Ditching the Micro-Optimization Fetish
Seems like today is the day for performance optimization talks: in String.Empty, in calls to ActionLinks, in high-performance IoC containers.
But people sometimes miss the point that these are micro-optimizations: thanks God Justin tries to bring a bit of sanity in this geeky world of micro-optimiz...
0
kicks
5 Blogs ASP.NET MVC Developers Should Be Following
Everyone knows that Phil Haack, Rob Conery, Scott Hanselman, and Scott Guthrie all provide good ASP.NET MVC content on their blogs. I wanted to provide a list of excellent resources on ASP.NET MVC that are a little less well known.
0
kicks
Do We Create Type Systems In Dynamic Languages?
Justin Etheredge examines whether home-grown type systems appear in large projects written with dynamic languages.
0
kicks
File Uploads in ASP.NET MVC 1.0 RTM
I had not messed around with file uploads in ASP.NET MVC for a while and so when I fired up ASP.NET MVC 1.0 RTM I was pleasantly surprised to find out how easy they had made it!
0
kicks
Heisenberg And Lambdas
How can we tell if an object is going to leak? We can't hold a reference to it, since that will cause it to stick around. So how can we get a reference which isn't a reference? Well, we get a weak reference!
0
kicks
To Inject Or Not To Inject
The benefits of Dependency Injection are very hard to see when only dealing with very simple examples. I tried to come up with an example that is simple enough to fit in a blog post, but is able to show the benefits of using Dependency Injection.
0
kicks
Beginning Mocking With Moq 3 - Part 2
Beginners introduction to mocking using the recently released Moq 3 framework.
0
kicks
Beginning Mocking With Moq 3 – Part 1
A intro to mocking using the newly release Moq 3 framework.
0
kicks
Spiff Up Your ASP.NET MVC Form With jQuery
Since many people who are being introduced to ASP.NET MVC are being simultaneously introduced to jQuery I felt like I’d give you a quick introduction to a few jQuery plug-ins that will help you make better forms. But most importantly make your forms better without you really having to do too much to...