Skip to content

Instantly share code, notes, and snippets.

@austinpray
austinpray / getter.js
Last active February 17, 2017 00:32 — forked from hensondev/getter.js
const get = function (name) {
return (
`public String get ${name.charAt(0).toUpperCase()}${name.slice(1)}() {
\treturn this.${name};
}`
);
};
var get = function (name) {
return "public String get" + name.charAt(0).toUpperCase() + name.slice(1,name.length) + "() {\n \treturn this." + name + ";" + "\n}"
};

Reduced testcase for hash history

@austinpray
austinpray / -
Created September 2, 2015 23:05
commit e9bc6f9bca87d3eeb6de916b8072b1f5088a5fb5
Author: Austin Pray <austin@austinpray.com>
Date: Wed Sep 2 17:57:59 2015 -0500
Fixes a birchpress provider creation bug
Guess I'll just do their job for them.
diff --git a/web/app/plugins/birchschedule/modules/gcalsync/package.php b/web/app/plugins/birchschedule/modules/gcalsync/package.php
index e83e7d0..e1b7ae2 100644
@austinpray
austinpray / .gitignore
Last active August 27, 2015 22:24
Test trellis
.tmp
@austinpray
austinpray / init.sh
Created August 9, 2015 18:45
Sage before/after incremental builds
#!/usr/bin/env bash
@austinpray
austinpray / AdventureTime.csv
Last active December 11, 2023 03:31
List of important adventure time episodes
Season Episode Title Reason
1 5 The Enchiridion A good intro to the series, plus introduces the important Enchiridion
1 8 Business Time* First mention of Ooo being post-apocalyptic
1 9 My Two Favorite People Intros the Jake and LR plotline
1 10 Memories of Boom Boom Mountain A look at how Finn was adopted into Jake's Family
1 12 Evicted! Intros Marceline
1 16 Ocean of Fear Introduces Finn's phobia
1 22 Henchman* Establishes Finn and Marceline as friends
1 23 Rainy Day Daydream* good episode to show someone who’s never seen the show before
1 25 His Hero introduces the Lich and Billy
DOMAIN_CURRENT_SITE=amigoslink.dev
DB_USER=amigoslink_dbuser
DB_PASSWORD=amigoslink_2iDAw468125E
WP_SITEURL=http://amigoslink.dev/wp
DB_NAME=amigoslink_dev
WP_ENV=development
WP_HOME=http://amigoslink.dev
{
"dependencies":{
"main.js":{
"files":[
"scripts/main.js"
],
"main":true
},
"main.css":{
"files":[
{
"name": "sage",
"homepage": "https://roots.io/sage/",
"authors": [
"Ben Word <ben@benword.com>"
],
"license": "MIT",
"private": true,
"dependencies": {
"modernizr": "2.8.2",