Choosing between database types
Nov 23 11:35:01
Askari and Java prototyping
Nov 22 4:48:43
Finding scarcity in the digital economy
Nov 10 12:17:27
Tornado - the web services server?
Sep 19 23:19:55
Quote of the week
Jul 18 9:18:44
Just poking around with PowerShell. Here are some useful tips and tricks I have found to customize it:
function prompt { [string]$(get-location) + " % " }
PS> Set-PSDebug -trace [level] [-step]
There are three possible trace levels:
• 0: No tracing
• 1: Trace script lines as they execute
• 2: Also trace variable assignments, function calls, and scripts.
Adding -step means that the script also pauses after each line.