About

This is my personal blog where I like to blog about technology and other interesting stuff in life.

Archive for the 'Coding' Category

Team Foundation Server Tribulations

Monday, July 7th, 2008

Up until this past weekend, I would have recommended TFS to any development department. I would have mentioned how it is easy to merge and branch. I would have said how useful the built in project alerts were. I would have told you that we have not had to waste hardly any […]

Read the rest of this entry »

Extreme Paper Prototyping

Thursday, April 24th, 2008

Tonight while checking LinkedIn, I actually clicked an ad!! It is a pretty cool product to help you prototype your user interfaces on a white board. This would have been very useful on the Experimentation Platform we developed awhile ago at work. It’s called GuiMags.

Read the rest of this entry »

Code Camp 4

Sunday, April 6th, 2008

   Yesterday I attended Twin Cities Code Camp 4. This was my third code camp. It was probably one of my favorite ones. I went down to the cities with James, Manohar and Jordan. We also met Joel D a former developer where I work. It was kind of nice that […]

Read the rest of this entry »

DatePicker for Rails

Saturday, March 29th, 2008

I am current working on a project and needed a date picker. I found a pretty decent one called CalendarDateSelect that integrates very nice with Ruby on Rails. It comes with a few themes. All you have to do is include the corresponding style sheet. It is pretty easy to customize […]

Read the rest of this entry »

View Source

Thursday, March 13th, 2008

Tonight I was visiting space150’s website. I decided to view the source of their website because I was curious and there was a surprise. Check it out! Pretty clever if you ask me.

Read the rest of this entry »

Team Foundation Server Build Performance

Monday, March 10th, 2008

Today I spent some time trying to improve the speed of our CI/Nightly builds with TFS. While we found out that it was a backup solution that was causing the majority of our problems, I also found that we were not doing incremental builds. If you put this at the bottom of your […]

Read the rest of this entry »

Code Camp - Spring 2008

Sunday, March 9th, 2008

Even though I got made fun of for about a half hour straight last week at leadership training for going to Code Camp by sales/marketing people, I thought I would mention the next code camp is coming up on April 5th. I am pumped up for this one because it has a variety of […]

Read the rest of this entry »

F1 Web Challenge

Sunday, March 9th, 2008

It has been one week since the F1 Web Challenge and I think I have finally recovered. It was a very fun event. It was actually longer than 24 hours. I was up for 36 hours!! It was on the U of M campus (St. Paul). There were eight of […]

Read the rest of this entry »

Set Validation in Ruby

Saturday, March 8th, 2008

Today I was trying to figure out how to validate if a user entered a number in a given set. I searched the internet high and low and could only figure out how to validate a range. I actually found the solution in a book, so I thought I would post it.

1
2
3
4
5
6
class Story < ActiveRecord::Base
[…]

Read the rest of this entry »

Ruby on Rails Tutorial

Tuesday, March 4th, 2008

I found a Ruby on Rails tutorial today that I thought I would share because it was easy to follow and it is targeted for version 2.0.2. This tutorial is a little bit more extensive than ones I have posted in the past. In this tutorial you will use scaffolding. This also includes setting up […]

Read the rest of this entry »