Dive into the archives.
- Free Ebook: Foundations of Programming by Karl Seguin
If you’re interested in a really great ebook, check out this completely free ebook by Karl Seguin called Foundations of Programming. Download
- Facebook + ASP.NET MVC
Currently I am starting on a project that will be an application built on top of the Facebook platform. If you have never built Facebook applications, they have a whole API and documentation you can read over here. Anyway, since I am an ASP.NET developer I wanted to share my experience on what I found [...]
- Distributed Build Management and Continuous Integration Server with TeamCity
Recently I investigated some options for having Continuous Integration in our new application we’re working on at my company. I wanted a way where we can manage builds, deployments and eventually testing. My first thought was to look into the freeware solution I have heard of called CruiseControl.NET by ThoughtWorks. CruiseControl sounded pretty nice: open [...]
- Multiple Roles with Authorize Attribute using Enums in ASP.NET MVC
In MVC, if you have ever used the [Authorize] attribute you will know that there are two options of using it by decorating your controller or action. Either with pre-determined users: [Authorize(Users = "Bob, John")] public class OrdersController : Controller { } Or with pre-determined roles: [Authorize(Roles = "Admin, User")] public class OrdersController : Controller [...]
- First Reactions to Ruby on Rails
One of my goals for this year was to learn Ruby or Ruby on Rails. A lot of companies are using this newer technology to quickly write, deploy and test their web applications and since I’m a web developer it only made sense I learned what all of the hoopla was about. So far after [...]

