Archive for November 2008

I love Google – Extract a favicon to a png

Sometimes i love Google more then is healthy. I was looking for some way to extract a favicon from a page and get it as a png, and i found this wonderful little service. http://www.google.com/s2/favicons?domain=youtube.com http://www.google.com/s2/favicons?domain=yourdomain.com Anf you get the icon in a png. Amazing!

Join and Group By with LINQ to Entities

I have banged my head against some LINQ to Entities stuff today. It started out when i was doing a query to get some stats out of my forum. I should point out that i’m a newbe with LINQ to Entities and the Entity Framework so if i have done anything stupid here you are [...]

Group By with LINQ

Today i wanted to do a group by query with LINQ wich is something i never done before. I turned out to be kind of easy. If you just want to group by a single field. (from s in db.CrewStatsSet where s.LogDate >= date1 && s.LogDate <= date2 && s.Action == action group s by [...]

Finally have Subversion + CruiseControl.NET + MSBuild running

I’ve been struggling the whole afternoon to get some kind of continuous integration up and running. It started with that i got sick and tired of the Publish feature in Visual Studio 2008 because it just starts to fail from time to time and its kind of impossible to find out why because it doesn’t [...]