Skip to content

Instantly share code, notes, and snippets.

@mikefrobbins
Last active December 15, 2024 06:11
Show Gist options
  • Save mikefrobbins/8d2e208f6a5729d1cf90a052eaa1d443 to your computer and use it in GitHub Desktop.
Save mikefrobbins/8d2e208f6a5729d1cf90a052eaa1d443 to your computer and use it in GitHub Desktop.
Select and open PowerShell podcast episode webpage with PowerShell
# Install the Microsoft.PowerShell.ConsoleGuiTools module
Install-Module -Name Microsoft.PowerShell.ConsoleGuiTools
# Select and open PowerShell podcast episode webpage with PowerShell
Invoke-RestMethod -Uri https://feed.podbean.com/powershellpodcast/feed.xml |
Select-Object -Property @{
label='title';expression={$_.title[0]}}, @{
label='date';expression={Get-Date -Date $_.pubDate -Format d}},
duration,
link |
Out-ConsoleGridView -OutputMode Single |
Foreach-Object {
Start-Process -FilePath $_.link
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment