Use o PowerShell para obter um perfil de usuários CoderWall

# Requires PowerShell v3
<#
.Synopsis
Get-CoderWall uses the built-in PowerShell cmdlet
Invoke-RestMethod to retrieve and convert the JSON
into PowerShell objects
#>
function Get-CoderWall ($user) {
Invoke-RestMethod http://coderwall.com/$user.json
}

Get-CoderWall dfinke