Public/Get-Dirkjan.ps1
function Get-DirkJan { [CmdletBinding()] param() $DutchCulture = New-Object -TypeName System.Globalization.CultureInfo -ArgumentList 'nl-NL' [string[]]$Formats= @('d-MMMM-yyyy', 'd-MMMMyyyy') Invoke-WebRequest -Uri 'https://www.parool.nl/strips-en-puzzels/dirkjan~bc5b5b4e/' ` | Select-Object -ExpandProperty Images | Where-Object Src -Like 'https://image.parool.nl*' | Select-Object -ExpandProperty Src | ForEach-Object { $DateText = ($_ -split '/')[-1] $Date = [DateTime]::ParseExact($DateText, $Formats, $DutchCulture, [System.Globalization.DateTimeStyles]'None') [PSCustomObject]@{ PSTypeName = 'UncommonSense.Parool.Article' Url = $_ Date = $Date Title = 'Dirkjan' Body = $_ } } } |