I guess that most developer have their favorite set of libraries that they use in just about every project. Atleast I have such a toolbox. They are tools that I find myself using constantly and that I feel help me in my development. Here comes my list.
1. Asp.Net Mvc
Well, I'm mostly a web develop ...
Using the MVC pattern in javascript
As anyone who have ever worked on a javascript heavy page knows, javascript can very easily get out of hand and become a mess. Roy Osherove thinks we should fix this problem by generating our javascript using a server side programing language. I didn't realy like this idea, nor did Jimmy Bogard. But ...
I would not abstract away my javascript
Yesterday I saw this post by Roy Osherove where he talks about Script# and writing c# code to generate javascript code. I dont realy like this idé, as javascript and c# are two very different languages. While c# is a static programing language, javascript is a dynamic scripting language and i ...
Keep your javascript away from my markup
Today, many web applications use alot of javascript to create a nice experiance for the user. With libraries like jQuery it is very easy to create that little extra that gives you this "woow" feeling. I use alot of javascript as well and I think it´s pretty fun writing when using a l ...
xVal provider for FluentValidation
Yes finally I found someone who written a xVal provider for FluentValidation, you can find it at http://fluentvalidation.codeplex.com/Thread/View.aspx?ThreadId=54463 but you must download the sourcecode for fluentvalidation and compile it. So hopes it helps someone out there ;)
Building a forum application, Part 1
I have decided to build a forum application. My goal is to build a generic forum that people can use and learn from. I want to use the latest techniques and tools to build a good application base that is easy to extend with the functionality that you require. I will post here from time to time as I ...
Extended jMonthCalendar with drag n drop
For a few weeks me and Magnus (the other guy that is blogging here) have been working on a intranet. Mostly for learning purposes. The other week we needed a calendar to let users have a overlook at their schedule. We started googling a bit and found a great jquery plugin called jMonthCalendar. This ...