Skip to content

Commit 9ef8b1f

Browse files
author
Markus Fleschutz
committed
Add CNN World News
1 parent 247873a commit 9ef8b1f

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

Data/popular-dashboards.csv

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
NAME,URL
22
Toggl Track,"https://track.toggl.com/timer"
33
Google Calendar,"https://calendar.google.com/calendar/u/0/r/agenda"
4+
CNN World News,"https://edition.cnn.com/world"
45
Google News,"https://news.google.com"
56
GitHub Explore,"https://github.com/explore"
6-
Windy Weather,"https://www.windy.com/de/-Wetterradar-radar"
77
FlightRadar24,"https://www.flightradar24.com/27.63,-6.98/3"
88
Earthquake Watch,"https://www.arcgis.com/apps/dashboards/c8af9c5411814584b460cc87cb7c3780"
99
Live Cyber Threat Map,"https://threatmap.checkpoint.com"
1010
Webcams,"https://www.foto-webcam.eu"
1111
Peak webcam Zugspitze,"https://zugspitze.panomax.com"
1212
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"

Scripts/open-dashboards.ps1

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@
22
.SYNOPSIS
33
Open dashboards
44
.DESCRIPTION
5-
This PowerShell script launches the Web browser with some dashboard websites.
5+
This PowerShell script launches the Web browser with tabs of some dashboard websites.
66
.EXAMPLE
77
PS> ./open-dashboards
8+
⏳ (1/2) Loading Data/popular-dashboards.csv...
9+
⏳ (2/2) Launching Web browser with tabs of dashboard websites...
10+
...
811
.LINK
912
https://github.com/fleschutz/PowerShell
1013
.NOTES
@@ -16,7 +19,7 @@ try {
1619
Write-Host "⏳ (1/2) Loading Data/popular-dashboards.csv..."
1720
$Table = Import-CSV "$PSScriptRoot/../Data/popular-dashboards.csv"
1821
$NumRows = $Table.Length
19-
Write-Host "⏳ (2/2) Launching Web browser with dashboards... " -noNewLine
22+
Write-Host "⏳ (2/2) Launching Web browser with tabs of dashboard websites... "
2023
foreach($Row in $Table) {
2124
$Name = $Row.NAME
2225
$URL = $Row.URL

0 commit comments

Comments
 (0)