To answer my friend Guillaume Collic, here is the powershell version of his script to view the BreizhCamp agenda ! $Output = @() (Invoke-RestMethod http://www.breizhcamp.org/json/talks.json) | % { $props = [ordered]@{“Titre”=$_.title; “Speakers”= $_.speaker + ” ” + $_.cospeaker; “Track”=$_.track; “Format”=$_.format; “Description”=$_.description } $Output += New-Object -TypeName PSCUstomObject -Property $props } $Output | Sort-Object Format,Track |…