From 3721feeaa982a4166bdc724136d721c86bddca59 Mon Sep 17 00:00:00 2001
From: Markus Fleschutz <markus.fleschutz@atcsim.de>
Date: Tue, 14 May 2024 16:18:13 +0200
Subject: [PATCH] Updated list-coffee-prices.ps1

---
 scripts/list-coffee-prices.ps1 | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/scripts/list-coffee-prices.ps1 b/scripts/list-coffee-prices.ps1
index ee8b784e..21093ba2 100755
--- a/scripts/list-coffee-prices.ps1
+++ b/scripts/list-coffee-prices.ps1
@@ -5,6 +5,10 @@
 	This PowerShell script queries alphavantage.co and lists the global price of coffee (monthly, in cents per points).
 .EXAMPLE
 	PS> ./list-coffee-prices.ps1
+
+	Monthly Global Price of Coffee (by alphavantage.co, in cents per pound)
+	-----------------------------------------------------------------------
+	2024-04-01 ████████████████████████████████████████████████████████████████████▌ 240
 .LINK
 	https://github.com/fleschutz/PowerShell
 .NOTES
@@ -29,22 +33,23 @@ function WriteHorizontalBar { param([float]$Value, [float]$Max)
 	} elseif ($Num -ge 0.125) {
 		Write-Host "▏" -noNewline
 	}
-	Write-Host " $Value"
+	Write-Host " $Value" -noNewline
 }
 
 try {
 	Write-Progress "Loading data from www.alphavantage.co..."
 	$prices = (Invoke-WebRequest -URI "https://www.alphavantage.co/query?function=COFFEE&interval=monthly&apikey=demo" -userAgent "curl" -useBasicParsing).Content | ConvertFrom-Json
-	Write-Progress -completed " "
+	Write-Progress -completed "Done."
 
 	""
-	"$($prices.name) (by alphavantage.co, in $($prices.unit))"
-	"---------------------------------------------------------------"
+	"Monthly $($prices.name) (by alphavantage.co, in $($prices.unit))"
+	"-----------------------------------------------------------------------"
 	foreach($item in $prices.data) {
 		if ($Item.value -eq ".") { continue }
 		Write-Host "$($item.date) " -noNewline
 		[int]$value = $Item.value
 		WriteHorizontalBar $value 350.0
+		Write-Host "ct"
 	}
 	exit 0 # success
 } catch {