Main Content

Cookie Dough Oreos – My Review

When I heard about Cookie Dough Oreos I knew I had to try them. However, the idea is better than the execution. They’re ok, but not nearly as good as the original. The idea is fantastic, but there’s only so much you can do with Oreos and keep them being Oreos. Usually cookie dough is refrigerated, […]

Super Bowl Sports Ball

A conversation with a Twitter friend over who’s going to win the Super Bowl when neither of us know who’s playing.

Children See. Children Do.

http://www.youtube.com/watch?v=gXjE68-_jBs Our kids are watching us. The good, the bad, and the ugly things we do. Even if you don’t think they saw it, they probably did. Lets try to set good examples.

Our Day at Nickelodeon Universe.

Today I took the day off and Christi and I took Lily to Nickelodeon Universe in the Mall of America to have some fun. We had unlimited ride wristbands and we were taking advantage of the day. Lily loved the rides. We went on quite a few junior rides as she is only 4, but […]

How to add GIT to a project with existing files.

Here is the code I use to add GIT to an existing project. git init git remote add origin GITURL touch .gitignore (optional see below) git add -A git commit -m ‘first commit’ git push If you try to clone a GIT repository to a folder with existing files, GIT will be unhappy as the […]