Unity Application Block

I know It’s a shame, but I did not know Unity Application Block. I was searching for an IOC/Depedency Injection and a colleage advised me to learn Unity. If like me, you did not know the existence of Unity (developed by Microsoft), let’s take a look on Unity’s Codeplex website. They are some nice screencasts [...]

ASP.NET MVC C# Linq to Stored procedure with Dynamic Query (a quick phone book, piece of Cake !)

Salut les Gars !
I am back with a little code I wrote today for my business. I had to create a little phone book.
The db I had to query was pretty complicated and I did not want to create all the stuff you need for an effective Linq ot Sql classes. Therefore, I decided to [...]

French blog is comming

I decide to create a french blog, I notice that they are not a lot of interesting blogs in french which talks about agile, ddd, tdd,…
So, in place to express my little knowledge in a language who is not mine, I prefer to use my native language and improve the quality of my post.
Anyway, I [...]

ASP.NET MVC : Url Helper Extension CSS, Javascript, Picture

Here a url helper, maybe it can interests you :

public static class UrlHelperExtension
{
public static string Image(this UrlHelper helper, string fileName)
{
return helper.Content(string.Format("~/Content/Images/{0}",fileName));
}

public static string Stylesheet(this UrlHelper helper, string fileName)
{
return helper.Content(string.Format("~/Content/Css/{0}.css",fileName));
}

public static string Javascript(this UrlHelper helper, string fileName)
{
return helper.Content(string.Format("~/Content/Scripts/{0}.js", fileName));
}
}

And here is how I use it :
For CSS :

<link rel="stylesheet" type="text/css" href="<%= Url.Stylesheet("reset") %>" media="all" />

For javascript

<script [...]

Agile – Test Driven Design “Need it or not Need it”

What my colleagues often say when they hear TDD is :  “It makes no sense”, “We do not need that”, “I am doing without TDD since ten years”.
Indeed, maybe, you do not need it. Indeed, you were doing without it but if you are a developer, you should be open to new technologies, curious and [...]

Agile – One thing to do before starting a new project

A colleague gave me an article about things you have to do and things you do not have to do during a project. I found it very funny, true and usefull. Thus, I allow myself to recopy it on my blog.

Bookmark It

Hide Sites

$$(’div.d86′).each( function(e) { e.visualEffect(’slide_up’,{duration:0.5}) });

Agile – Scrum “I believe in a better way”

If Ben Harper was a developper, sure, he would have use Scrum.
First of all, Scrum is just a methodology and not a magic word that would erase all the problems during your development lifecycle. Rather than invent a new definition of Scrum, look at the wikipedia definition:
Scrum is an iterative incremental process of software development [...]