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
#!/usr/bin/env bash | |
### | |
### Some terminal colors | |
### usage: echo -e "${GREEN}Hello, this should be green! $RESET" | |
### | |
export BLACK="\033[30m" | |
export GRAY="\033[1;30m" | |
export RED="\033[31m" | |
export GREEN="\033[32m" |
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
<!-- | |
HELLO WORLD! | |
------------ | |
This is a simple html template for a website with all the meta tags I need included. | |
Make sure you go over all of them, and search for all ':TODO:' strings, and make | |
sure you replace them all with relevant info. | |
--> | |
<!DOCTYPE html> |