Skip to content

Instantly share code, notes, and snippets.

@meros
Created December 1, 2022 11:24
Show Gist options
  • Save meros/24b9a5918ab5968ab2ce676e77402b96 to your computer and use it in GitHub Desktop.
Save meros/24b9a5918ab5968ab2ce676e77402b96 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
# Define the lyrics of the song as an array of strings
lyrics=(
"🎶 We're the programmers, fixing bugs all day"
"Coding away, working hard"
"We'll make your software run"
"Without any hiccups, we'll make it fun"
"We'll squash those bugs, one by one"
"Until your program is done 🎵"
"But wait, there's more 🤔"
"Artificial intelligence is coming for our jobs"
"It can code faster and better than us"
"But don't worry, we'll adapt 💪"
"We'll learn new skills and stay ahead"
"Because programmers will always be in demand 💻"
)
# Use a for loop to iterate over the lyrics array
# and print each line with a pause in between
for line in "${lyrics[@]}"; do
echo "$line"
sleep 1
done
@meros
Copy link
Author

meros commented Dec 1, 2022

Generated by simply asking for it with openai's chatbot

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment