-
-
Chrome Blacklist Blocker (PowerShell)
By BeejIf you need this, you’ll know why ;) [Read More] -
Style all select tags with a given CSS class into a fancy radio button look
By Beejhttps://stackoverflow.com/a/25455374/813599 [Read More] -
Json.Net Serialize Dictionary to List
By BeejMotivation: Wanted convenience of a Dictionary on the server side MVC controller (for some key look-up based logic), yet send the same list of objects down to Knockout Ajax client, which most readily consumes lists as Javascript object arrays. [Read More] -
List all your Azure RDP’s
By BeejGet-AzureVM | #this first one gets the entire list of VMs in subscription Get-AzureVM | # this one gets the detailed object for each specific VM %{ $port = ($_ | Get-AzureEndpoint | ? {$_.name -like "Remote*"})[0].Port; $null = $_.DNSName -match 'https://(.*?)/' write-host "$($_.Name) - $($matches[1]):$($port)" } [Read More]