Excited about Monad

time to read 1 min | 128 words

After listening to HanselMinutes about Monad, I'm pretty excited. I do a lot of stuff in the command line already, and I'm always on the lookout to find something new and fun. The amount of stuff that I can do there is really nice.

(gci -recurse | where {$_.Name -like "*.cs"} | match-string ".").count

Here is the ugly way to find all the lines of code in a project. This means that a 30 minutes search turned into a 20 seconds typing and getting the answer I need. That is truly powerful.