Welcome to MSDN Blogs Sign in | Join | Help

jaredpar's WebLog

Code, rants and ramblings of a programmer.

Syndication

News

Now Reading

Pragmatic Programmer

Pragmatic programming at it's best. The book is a light read and worth the time

Essential WPF

Thus far the best book I've read on WPF. Gets right down to working with WPF and the goals/history.

Purely Functional Data Structures

Reading this book makes me feel like I'm back in college. It will really get your mind going and is best read with a whiteboard handy.


November 2005 - Posts

Monad: Detecting if you are an Admin
One of the LUA tasks I found very frustrating was detecting whether or not I was running as an Admin in a .BAT script. It's very difficult to do this correctly and the best way I found was to write a separate program that would determine this for me. Read More...

Posted Monday, November 07, 2005 2:25 PM by Jared Parsons | 1 Comments

Quick Monad Scripts
Determine if a command exists in your path. Very helpful when you are writing scripts for mulptiple machines. $local:cmd = get-command doesnotexist -ea SilentlyContinue if ( $null -eq $cmd ) { # Action if command does not exist } else { # Action if command Read More...

Posted Friday, November 04, 2005 12:56 PM by Jared Parsons | 0 Comments

Shell Scripting with Monad
I spent a bit of my college days in *nix land. Much of that time was spent writing and maintaining scripts for my various shell accounts. After I switched to primarily developing on Windows, I was frustrated by the Windows CMD shell and eventually lost Read More...

Posted Tuesday, November 01, 2005 6:31 PM by Jared Parsons | 3 Comments

Page view tracker