Skip to content

Instantly share code, notes, and snippets.

View Pharserror's full-sized avatar

Adam Lind Pharserror

  • New York, NY
View GitHub Profile
=== 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
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
@Pharserror
Pharserror / docker-cloud.yml
Created July 22, 2017 21:32
Mailu Stackfile for Docker Cloud
version: '2'
services:
http:
# build: $FRONTEND
image: mailu/$FRONTEND:$VERSION
restart: always
env_file: .env
ports:
@Pharserror
Pharserror / init.vim
Created June 5, 2017 21:36
SpaceVim config
" 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=[
\ [''],
@Pharserror
Pharserror / config
Created June 5, 2017 04:54
Irssi config
, { address = "irc.gitter.im"; use_ssl = "yes"; password = "$GITTER_PASS"; }
@Pharserror
Pharserror / appify
Created February 24, 2017 14:39 — forked from mathiasbynens/appify
appify — create the simplest possible Mac app from a shell script
#!/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
@Pharserror
Pharserror / calculator.js
Last active June 18, 2022 20:36
A simple calculator that can do addition, subtraction, multiplication, division, and exponents.
/* 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 = {
#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 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
<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