Add CNN World News

This commit is contained in:
Markus Fleschutz 2023-06-01 12:23:20 +02:00
parent 247873a027
commit 9ef8b1f891
2 changed files with 8 additions and 3 deletions

View File

@ -1,12 +1,14 @@
NAME,URL NAME,URL
Toggl Track,"https://track.toggl.com/timer" Toggl Track,"https://track.toggl.com/timer"
Google Calendar,"https://calendar.google.com/calendar/u/0/r/agenda" Google Calendar,"https://calendar.google.com/calendar/u/0/r/agenda"
CNN World News,"https://edition.cnn.com/world"
Google News,"https://news.google.com" Google News,"https://news.google.com"
GitHub Explore,"https://github.com/explore" GitHub Explore,"https://github.com/explore"
Windy Weather,"https://www.windy.com/de/-Wetterradar-radar"
FlightRadar24,"https://www.flightradar24.com/27.63,-6.98/3" FlightRadar24,"https://www.flightradar24.com/27.63,-6.98/3"
Earthquake Watch,"https://www.arcgis.com/apps/dashboards/c8af9c5411814584b460cc87cb7c3780" Earthquake Watch,"https://www.arcgis.com/apps/dashboards/c8af9c5411814584b460cc87cb7c3780"
Live Cyber Threat Map,"https://threatmap.checkpoint.com" Live Cyber Threat Map,"https://threatmap.checkpoint.com"
Webcams,"https://www.foto-webcam.eu" Webcams,"https://www.foto-webcam.eu"
Peak webcam Zugspitze,"https://zugspitze.panomax.com" Peak webcam Zugspitze,"https://zugspitze.panomax.com"
Airport webcam Salzburg,"https://livecam.salzburg-airport.com" Airport webcam Salzburg,"https://livecam.salzburg-airport.com"
Windy Weather Radar,"https://www.windy.com/de/-Weather-radar-radar"
Windy Weather Temperatures,"https://www.windy.com/-Temperature-temp"

1 NAME URL
2 Toggl Track https://track.toggl.com/timer
3 Google Calendar https://calendar.google.com/calendar/u/0/r/agenda
4 CNN World News https://edition.cnn.com/world
5 Google News https://news.google.com
6 GitHub Explore https://github.com/explore
Windy Weather https://www.windy.com/de/-Wetterradar-radar
7 FlightRadar24 https://www.flightradar24.com/27.63,-6.98/3
8 Earthquake Watch https://www.arcgis.com/apps/dashboards/c8af9c5411814584b460cc87cb7c3780
9 Live Cyber Threat Map https://threatmap.checkpoint.com
10 Webcams https://www.foto-webcam.eu
11 Peak webcam Zugspitze https://zugspitze.panomax.com
12 Airport webcam Salzburg https://livecam.salzburg-airport.com
13 Windy Weather Radar https://www.windy.com/de/-Weather-radar-radar
14 Windy Weather Temperatures https://www.windy.com/-Temperature-temp

View File

@ -2,9 +2,12 @@
.SYNOPSIS .SYNOPSIS
Open dashboards Open dashboards
.DESCRIPTION .DESCRIPTION
This PowerShell script launches the Web browser with some dashboard websites. This PowerShell script launches the Web browser with tabs of some dashboard websites.
.EXAMPLE .EXAMPLE
PS> ./open-dashboards PS> ./open-dashboards
(1/2) Loading Data/popular-dashboards.csv...
(2/2) Launching Web browser with tabs of dashboard websites...
...
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES
@ -16,7 +19,7 @@ try {
Write-Host "⏳ (1/2) Loading Data/popular-dashboards.csv..." Write-Host "⏳ (1/2) Loading Data/popular-dashboards.csv..."
$Table = Import-CSV "$PSScriptRoot/../Data/popular-dashboards.csv" $Table = Import-CSV "$PSScriptRoot/../Data/popular-dashboards.csv"
$NumRows = $Table.Length $NumRows = $Table.Length
Write-Host "⏳ (2/2) Launching Web browser with dashboards... " -noNewLine Write-Host "⏳ (2/2) Launching Web browser with tabs of dashboard websites... "
foreach($Row in $Table) { foreach($Row in $Table) {
$Name = $Row.NAME $Name = $Row.NAME
$URL = $Row.URL $URL = $Row.URL