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 [...]
After crossing the Canada from east to west, I am back on my blog. It was a fantastic journey where I visited Toronto, Calgary, the Rockies, the Washington States, Seattle, Vancouver,… It was a fabulous experience but it was time to come back home (Belgium for me). I resigned from my job as .NET developer in [...]
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 [...]
As you know (or not), I am looking for a new challenge in London or in Brussels. So, if you know someone who could be interested by my services. Do not hesitate to give him my website’s URL. That would be awesome.
Bookmark It
Hide Sites
$$(’div.d325′).each( function(e) { e.visualEffect(’slide_up’,{duration:0.5}) });
I decided to create a french blog, I notice that they are not a lot of interesting blogs in french who 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 [...]
For whom are interested by the dotnet Brussels community. I created a design for the future website. I know I am not a very good designer, also, generally, I do not care about design. But, as I am alone for this project, I have to do all by myself. So, here is the result :
In [...]
Yesterday, I came back from the Montreal’s codecamp, that was a nice event, well organized.
Today, I was walking on the street of Montreal and thinking about why we do not have that kind of community in Belgium. A lot of people are motivated and always want to learn new stuff, so why do not we [...]
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 [...]
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 [...]
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}) });