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
=== V1 === | |
ckrono - tabogation motherfunk | |
encapsulate - imaginary gods | |
deco - musical family | |
nym - afterimage | |
giraffage - feels | |
clu - aquatic ambience | |
telepath - contact | |
hundred waters - xtalk (kodak to graph remix) | |
slugabed - all this time |
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
TODO: Need to add descriptions for each until a later date when I can make a video compilation. | |
FOOTSIES | |
https://www.youtube.com/watch?v=2oxQUKimD6Y&t=3h32m37s | |
https://www.youtube.com/watch?v=2oxQUKimD6Y&t=5h36m50s | |
https://www.youtube.com/watch?v=2oxQUKimD6Y&t=6h47m50s | |
https://www.youtube.com/watch?v=2oxQUKimD6Y&t=8h23m20s |
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
version: '2' | |
services: | |
http: | |
# build: $FRONTEND | |
image: mailu/$FRONTEND:$VERSION | |
restart: always | |
env_file: .env | |
ports: |
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
" Set leader | |
let mapleader = "\<space>" | |
" Set indent and column size | |
let g:spacevim_default_indent = 2 | |
let g:spacevim_max_column = 80 | |
" Disable any plugins | |
let g:spacevim_disabled_plugins=[ | |
\ [''], |
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
, { address = "irc.gitter.im"; use_ssl = "yes"; password = "$GITTER_PASS"; } |
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
#!/bin/bash | |
if [ "$1" = "-h" -o "$1" = "--help" -o -z "$1" ]; then cat <<EOF | |
appify v3.0.1 for Mac OS X - http://mths.be/appify | |
Creates the simplest possible Mac app from a shell script. | |
Appify takes a shell script as its first argument: | |
`basename "$0"` my-script.sh |
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
/* Calculator.js | |
* A simple calculator written in JS | |
* Note that I wrote this with pre ECMA6 style because that's more | |
* or less what's standard at the moment - not to say I don't love | |
* and always try to use ECMA6 where I can */ | |
var Calculator = function() { | |
// Create some space in memory to store our equation | |
var equation = []; | |
// Declare all possible operations | |
var _operations = { |
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
#Minecraft server properties | |
#(File Modification Datestamp) | |
generator-settings= | |
op-permission-level=4 | |
allow-nether=false | |
resource-pack-hash= | |
level-name=basedworld | |
enable-query=false | |
allow-flight=false | |
announce-player-achievements=false |
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
# This is the main Apache server configuration file. It contains the | |
# configuration directives that give the server its instructions. | |
# See http://httpd.apache.org/docs/2.4/ for detailed information about | |
# the directives and /usr/share/doc/apache2/README.Debian about Debian specific | |
# hints. | |
# | |
# | |
# Summary of how the Apache 2 configuration works in Debian: | |
# The Apache 2 web server configuration in Debian is quite different to | |
# upstream's suggested way to configure the web server. This is because Debian's |
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
<VirtualHost *:80> | |
ServerName 0.0.0.0 | |
ServerAlias localhost | |
ServerAdmin webmaster@localhost | |
DocumentRoot /var/www/eightyproof/public | |
RailsEnv development | |
ErrorLog ${APACHE_LOG_DIR}/error.log | |
CustomLog ${APACHE_LOG_DIR}/access.log combined | |
<Directory "/var/www/eightyproof/public"> | |
Options FollowSymLinks |