This script fixes the darwin CIS Benchmark check 35028: "Ensure Require Password After Screen Saver Begins or Display Is Turned Off Is Enabled for 5 Seconds or Immediately."
This script fixes the darwin CIS Benchmark check 35029: "Ensure a Custom Message for the Login Screen Is Enabled."
This script fixes the darwin CIS Benchmark check 35022: "Ensure 'Show Location Icon in Control Center when System Services Request Your Location' Is Enabled."
This PowerShell script writes the given text in uppercase letters.
text Specifies the text to write (ask user by default)
PS> ./write-uppercase.ps1 "Hello World"HELLO WORLDAuthor: Markus Fleschutz | License: CC0
This PowerShell script writes sine curves.
PS> ./write-sine-curvesAuthor: Markus Fleschutz | License: CC0
This PowerShell script writes text encoded or decoded with ROT13.
text Specifies the text to write
PS> ./write-rot13 "Hello World"Author: Markus Fleschutz | License: CC0
This PowerShell script calculates and writes the digits of the mathematical constant PI.
digits Specifies the number of digits to list (1000 by default)
PS> ./write-pi.ps13.141592653589793238462643383279502884197169399375105820974944592307816406286208998628034825342...Author: Markus Fleschutz | License: CC0
This PowerShell script writes the given text in Morse code.
text Specifies the text to write
speed Specifies the speed of one time unit (100 ms per default)
PS> ./write-morse-code ABC● ― ― ● ● ● ― ● ― ●Author: Markus Fleschutz | License: CC0
This PowerShell script writes a PowerShell help page.
PS> ./write-help.ps1Author: Markus Fleschutz | License: CC0
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 {...