I hereby claim:
- I am parallaxisjones on github.
- I am parallaxis (https://keybase.io/parallaxis) on keybase.
- I have a public key whose fingerprint is 9EE2 8E4B 449E 569D B137 B827 1681 13ED B31D 3E95
To claim this, I am signing this object:
| { | |
| "env": { | |
| "browser": true, | |
| "node": true, | |
| "es6": true | |
| }, | |
| "plugins": ["react"], | |
| "ecmaFeatures": { |
| /***************** | |
| * cellBlockA.js * | |
| ***************** | |
| * | |
| * Good morning, Dr. Eval. | |
| * | |
| * It wasn't easy, but I've managed to get your computer down | |
| * to you. This system might be unfamiliar, but the underlying | |
| * code is still JavaScript. Just like we predicted. | |
| * |
| <?php | |
| // Create two taxonomies, Class and Year, for the post type "Lecture" | |
| function wpcampuscpt_lecture_taxonomies() { | |
| // Add Class taxonomy, make it hierarchical (like categories) | |
| $labels = array( | |
| 'name' => _x( 'Classs', 'taxonomy general name' ), | |
| 'singular_name' => _x( 'Class', 'taxonomy singular name' ), | |
| 'search_items' => __( 'Search Classes' ), | |
| 'all_items' => __( 'All Classes' ), | |
| 'parent_item' => __( 'Parent Class' ), |
| Each Jenkins page has a REST API hyperlink at the bottom, this is because each page has its own endpoint. | |
| http://localhost:8080/me | |
| configure | |
| Click 'Show API Token' | |
| 78e21f82a9e137614fef5b9593bcf827 = API Token | |
| curl -s -u goll:78e21f82a9e137614fef5b9593bcf827 http://localhost:8080/crumbIssuer/api/json |
| # shortform git commands | |
| alias g='git' | |
| # get a list of all commit messages for a repo | |
| git log --pretty=format:'%s' | |
| # find the nearest parent branch of the current git branch | |
| git show-branch -a | grep '\*' | grep -v `git rev-parse --abbrev-ref HEAD` | head -n1 | sed 's/.*\[\(.*\)\].*/\1/' | sed 's/[\^~].*//' | |
| # push changes to an empty git repository for the first time |
| query IntrospectionQuery { | |
| __schema { | |
| queryType { name } | |
| mutationType { name } | |
| subscriptionType { name } | |
| types { | |
| ...FullType | |
| } | |
| directives { |
| query IntrospectionQuery { | |
| __schema { | |
| queryType { name } | |
| mutationType { name } | |
| subscriptionType { name } | |
| types { | |
| ...FullType | |
| } | |
| directives { |
| { | |
| // http://eslint.org/docs/rules/ | |
| "ecmaFeatures": { | |
| "binaryLiterals": false, // enable binary literals | |
| "blockBindings": false, // enable let and const (aka block bindings) | |
| "defaultParams": false, // enable default function parameters | |
| "forOf": false, // enable for-of loops | |
| "generators": false, // enable generators | |
| "objectLiteralComputedProperties": false, // enable computed object literal property names |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # from here: http://www.codingsteps.com/install-redis-2-6-on-amazon-ec2-linux-ami-or-centos/ | |
| # and here: https://raw.github.com/gist/257849/9f1e627e0b7dbe68882fa2b7bdb1b2b263522004/redis-server | |
| ############################################### | |
| # To use: | |
| # wget https://gist.githubusercontent.com/four43/e00d01ca084c5972f229/raw/install-redis.sh | |
| # chmod 777 install-redis.sh | |
| # ./install-redis.sh | |
| ############################################### | |
| echo "*****************************************" |