-
Recent Posts
My Tweets
- @mroitto vilken bra ide! Det kommer bli precis som en Britney Spears konsert. Jag kan ha en headset så att jag kan fokusera pa mina danssteg 4 hours ago
- @gudski nu har jag twittrat länken till min Techdays session. Enjoy. 14 hours ago
- And the slides are up on SpeakerDeck: speakerdeck.com/u/daniellee/p/… 14 hours ago
- Here is the link to my Techdays session on YouTube. It's about TDD and Legacy Code. youtube.com/watch?v=8hA8Jl… 14 hours ago
- Today I listened to myself talking for an hour. Cold shivers down my spine. (It was my Techdays session on Youtube). 1 day ago
Archives
Categories
Meta
Monthly Archives: June 2011
Git for Windows tip: Use P4Merge as mergetool
I recently found P4Merge (thank you Twitter and Git Immersion) and instantly dropped WinMerge as my standard diff/merge tool. I really like the way it visualises the differences and the 3-way merge is really nicely done. P4Merge is the merge … Continue reading
Git for Windows tip: setting an editor
The first time I tried to do git commit on msysgit with no commit message (no –m switch), it opened up Vim so that I could write my commit message. Luckily for me I’d read enough Vim jokes on Twitter … Continue reading
Posting source code on WordPress.com with Windows Live Writer
The first time I tried to post some code to WordPress.com it took about an hour longer than I thought it would. The first step was learning of the existence of the WordPress sourcecode tag. It took some googling to … Continue reading
Posted in Windows Live Writer
Tagged Syntax highlighting, Windows Live Writer, Wordpress
Leave a comment
Git for Windows tip: Setting shell aliases with msysgit
As msysgit uses a bash shell, you can set really handy aliases for the different git commands. For example gs instead of git status and ga instead of git add are the ones I use the most. Check out the … Continue reading
Migrations with Rake, Albacore and FluentMigrator
For my previous projects I have mostly used FluentMigrator in combination with Nant for my migrations but now that there is a new FluentMigratorTask for Albacore (created by Mark Boltuc) I thought I would give Rake a try. For an … Continue reading