Haskell Tutorial

http://learnyouahaskell.com/

Read full story Comments { 0 }

Erlang Tutorial

http://learnyousomeerlang.com/

Read full story Comments { 0 }

This Code Was Generated By A Tool

This comment seems to be appearing in my code rather more frequently recently, especially as I have been working with WCF. This should include the important information which tool generated the file, include version information and parameters used. WCF code generation is rather weak. It includes 7 wierdly named hidden files. One of these includes [...]

Read full story Comments { 0 }

Cucumber documentation

Here

Read full story Comments { 0 }

Interactive vim tutorial

This is an alternative to the good old vimtutor. http://www.openvim.com/tutorial.html And for those scared of vsvim there is always ctrl-shift-F12 which enables/disables vsvim.

Read full story Comments { 0 }

Snake Wrangling for Kids (Learning to Program with Python)

Here is a link to a book on programing software in python for kids.

Read full story Comments { 0 }

Alternatives to the Escape Key in vim

Here is set of alterantives to the escape key in vim. For the uninitiated the escape key is used to move from edit mode to normal (command mode). Ctrl-[ is the default alternative. This allows the user to not have to move your hands away from the main keys.

Read full story Comments { 0 }

How to create a South Park Like cartoon.

http://www.sp-studio.de/

Read full story Comments { 0 }

NDesk.Options

NDesk.Options http://www.ndesk.org/Options This is a fluent api for creating command line option tools. This is great for adding command-line switches without having to reinvent a parser each time.

Read full story Comments { 0 }

How to force sql server to use mixed mode authentication in Powershell

$instanceName = get-itemproperty ‘HKLM:\Software\microsoft\Microsoft SQL Server\Instance Names\SQL’ -name MSSQLSERVER if ($?) { $i = $instanceName.MSSQLSERVER set-itemproperty “HKLM:\Software\microsoft\Microsoft SQL Server\$i\MSSQLServer” -name LoginMode -value 2 -type dword }

Read full story Comments { 0 }