Browse by Tags
All Tags »
.Net (
RSS)
About a month ago I started diving into the world of Rails again . As I said in that blog post, Rails has always had much thought leadership and has always been a hip way to develop. Now 2 of the main new technologies that where discussed in that blog...
This week there are 3 pieces of candy which are all sort of related, they are all talking about ruby Candy nr 1: Faster ruby Ruby for windows has long been available as a 1 click installer, this one click installer is based on Visual C++ version 6 which...
A while back a colleague of mine used to send out emails every once in a while called candy of the week. This little piece of candy usually was a pretty picture or website which lightened up everyone's day. I was thinking about moving this concept...
About SubSonic Let me start off by saying that SubSonic is great, it's my DAL of choice for most projects. It's small it's fast to set up and it has a whole lot of functionality and elegance out of the box. You can tell I was pretty exited...
Introduction A while ago there was quite the discussion about what the differences where between VB.NET and C# and what people should use. After a while it seems that most things where said and it became clear that the C# camp had the most zealous advocates...
I have created a windows forms application for my own use a long time ago, since then I have added some features every now and then when needed. A little while ago I decided to give these utilities away for free on my website . At current the Utilities...
A while back I created a little utility to upload files to MediaFire which is a file hosting service. MediaFire supports uploading of files up to 100 MB in a free account with unlimited storage, and is in my opinion one of the best free online storage...
Introduction What is MVC MVC stands for: Model (database) Controller (business logic) View (what you see + view logic) It is used to separate the logic from a web application and other types of applications into these 3 logical parts. There are a lot...
In my opinion the future of games and other interfaces will be one where motion detection will be a key element. What we are seeing at the moment is that the Nintendo WII is outselling the competition, why is this? Well for one it makes for quite a good...
One of my favorite productivity tools has been open sourced :) It has been placed on source forge with a BSD style license which means you can use it in open source, non profit and for profit applications. The project can be found here . ---- More information...
SubSonic Vs dOOdads Vs ActiveRecord Let's meet our contenders: dOOdads An ORM framework which was provided by the people who also gave us MyGeneration . It's built with a couple of things in mind: - Ease of use - Supporting a large amount of DBMS systems...
String.Format is a nifty little tool I use a lot in development. I'm wondering if anyone has made a function yet to reverse it and I'm wondering what the cool implementations other people can come up with. What do I mean by reversing it ? I mean extracting...
An article by Steve Yegge who I actually didn't know until he was included in a question session with some of the big names in the software industry a while back. A very good writer, anyway the article: http://steve-yegge.blogspot.com/2006/09/good-agile...
Watch this and be blown away as well: http://www.wekeroad.com/actionpackintro.html A DAL which creates classes for Stored procedures, tables etc. And all that is needed to set it up is a * in a file. Home of this DAL layer: http://www.codeplex.com/Wiki...
When looking at the following code: StringBuilder first = new StringBuilder(); StringBuilder second = first; first.Append ( "hello" ); first = null ; Console.WriteLine (second); What would you think the output would be ? If it is anything other then:...
More Posts
Next page »