mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-16 23:18:17 +02:00
Add CNN World News
This commit is contained in:
parent
247873a027
commit
9ef8b1f891
@ -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"
|
||||||
|
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user