This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for i in *.opus; do ffmpeg -i "$i" "${i%.*}.mp3"; done | |
| for i in *.m4a; do ffmpeg -i "$i" "${i%.*}.mp3"; done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| yarn create next-app -- --typescript | |
| cd folder/ | |
| # Add tinaCMS | |
| npx @tinacms/cli@latest init | |
| # Add Tailwind | |
| yarn add -D tailwindcss postcss autoprefixer | |
| npx tailwindcss init -p |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo "Creating an SSH key for you..." | |
| ssh-keygen -t rsa | |
| echo "Please add this public key to Github \n" | |
| echo "https://github.com/account/ssh \n" | |
| read -p "Press [Enter] key after this..." | |
| echo "Installing xcode-stuff" | |
| xcode-select --install |
OlderNewer