Skip to content

Instantly share code, notes, and snippets.

View gillyb's full-sized avatar
🍕
Chillin'

Gilly Barr gillyb

🍕
Chillin'
View GitHub Profile
@gillyb
gillyb / html-template.html
Created January 31, 2019 14:20
Simple HTML template for one-page sites
<!--
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>
@gillyb
gillyb / bash-commands.sh
Created December 4, 2018 08:13
A simple bash cheat sheet
#!/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"