3
0
3
0
This PowerShell script generates and writes PowerShell code on the console (no AI, just for fun).
color Specifies the text color to use ("green" by default)
speed Specifies the speed in milliseconds per code line (500 by default)
PS> ./write-code.ps1try {...This PowerShell script writes an horizontal chart to the console.
PS> ./write-chart.ps1BOWLING RESULTS 2024████████████████▏ 40.5% Joe████████████▎ 30.9% TomAuthor: Markus Fleschutz | License: CC0
This PowerShell script writes the given text centered to the console.
text Specifies the text to write
PS> ./write-headline.ps1 "Hello World"Hello WorldAuthor: Markus Fleschutz | License: CC0
This PowerShell script writes text in Braille.
text Specifies the text to write
PS> ./write-braille "Hello World"Author: Markus Fleschutz | License: CC0
This PowerShell script writes text in a blue foreground color.
text Specifies the text to write
PS> ./write-blue "Hello World"Author: Markus Fleschutz | License: CC0
This PowerShell script writes the given text in big letters.
text Specifies the text to write ("Hello World" by default)
PS> ./write-big.ps1_ _ ____ _ _ ___ __ __ ___ ____ _ ____| |_| || ___)| | | | / _ \ \ \/\/ / / _ \ | _ \| | | _ \| _ || __) | |__ | |__ ( (_) ) \ / ( (_) )| /| |__ | (_) )|_| |_||____)|____)|____) \___/ \_/\_/ \___/ |_|\_)|____)|____/Author: Markus Fleschutz | License: CC0
This PowerShell script writes an ASCII image to the console.
PS> .\write-ascii-image.ps1Author: Markus Fleschutz | License: CC0
This PowerShell script writes text centered and animated to the console.
text Specifies the text line to write ("Welcome to PowerShell" by default)
speed Specifies the animation speed per character (10ms by default)
PS> ./write-animated.ps1(watch and enjoy)Author: Markus Fleschutz | License: CC0
This PowerShell script continuously lists the latest headlines by using a RSS (Really Simple Syndication) feed.
URL Specifies the URL to the RSS feed (Yahoo World News by default)
lines Specifies the initial number of headlines
timeInterval Specifies the time interval in seconds between two Web requests (60 seconds by default)
PS> ./watch-news.ps1UTC HEADLINES (source: https://www.yahoo.com/news/world)--- ---------14:29 Niger coup: Ecowas deadline sparks anxiety in northern Nigeria...Author: Markus Fleschutz | License: CC0
This PowerShell script queries the current crypto exchange rates from cryptocompare.com and lists it in USD/EUR/CNY/JPY.
PS> ./watch-crypto-rates.ps1CRYPTOCURRENCY USD EUR CNY JPY-------------- --- --- --- ---1 Bitcoin (BTC) = 97309.81 94385.57 38800 14798679.56...Author: Markus Fleschutz | License: CC0