Skip to content

Instantly share code, notes, and snippets.

@granthenke
granthenke / emojipacks-loader.sh
Created March 28, 2018 15:10
A short script to load a bunch of emojis with https://github.com/lambtron/emojipacks
# Set slack subdomain, email, and password
subdomain=
email=
password=
declare -a urls=(
"https://raw.githubusercontent.com/lambtron/emojipacks/master/packs/slackmojis-uncategorized.yaml"
"https://raw.githubusercontent.com/lambtron/emojipacks/master/packs/slackmojis-meme.yaml"
"https://raw.githubusercontent.com/lambtron/emojipacks/master/packs/slackmojis-party-parrot.yaml"
"https://raw.githubusercontent.com/lambtron/emojipacks/master/packs/animals.yaml"
"https://raw.githubusercontent.com/lambtron/emojipacks/master/packs/officespace.yaml"
@granthenke
granthenke / .gitignore_global
Created July 24, 2018 14:56
My global gitignore configuration
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
@granthenke
granthenke / Dockerfile
Last active August 2, 2019 13:10
Turtles docker image. Docker containers inside of docker containers recursively. A case of because I can, not because I should...
FROM docker:dind as turtles
VOLUME ["/image"]
COPY ./turtles.sh /tmp
WORKDIR /tmp
ENTRYPOINT ["./turtles.sh"]
CMD ["turtle"]