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 [...]
Filed under: Agile on October 20th, 2009 | No Comments »
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 [...]
Filed under: Agile on June 12th, 2009 | 6 Comments »
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 [...]
Filed under: Agile on June 4th, 2009 | 2 Comments »
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 [...]
Filed under: Agile on May 29th, 2009 | No Comments »
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 [...]
Filed under: Agile on May 27th, 2009 | No Comments »
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}) });
Filed under: Agile on May 13th, 2009 | No Comments »
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 [...]
Filed under: Agile on May 8th, 2009 | 2 Comments »