Rage Against the Design
So we found a problem recently with a certain scripting language’s argument parsing: function Test-Argument($a) { $a.GetType().FullName } [Test 1]: Test-Argument 4 System.Int32 [Test 2]: Test-Argument .5 System.Double [Test 3]: Test-Argument "hello" System.String [Test 4]: Test-Argument Goodbye System.String [Test 5]: Test-Argument -42 System.String [Test 6]: Test-Argument (-42) System.Int32 Why can’t it properly parse [...]
Rant: Sometimes I hate my job
So I’ve been asked to add a feature to one of the apps that I nominally took over when my former manager left … they want a management pane where certain authorized super users (to be decided later) can add data to the main lookup tables, and must be able to do clean up by [...]