View user.js
This file contains 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
import { | |
http, | |
gql, | |
Batch, | |
SQLDataSource, | |
Context, | |
Entity, | |
ApolloGraph, | |
Context, | |
Schema, |
View snippets.js
This file contains 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
/* | |
* | |
* serverWillStart | |
* | |
* requestDidStart | |
* parsingDidStart | |
* validationDidStart | |
* didResolveOperation | |
* executionDidStart |
View norma.vim
This file contains 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
" =============================================================== | |
" norma | |
" | |
" URL: | |
" Author: jbaxleyiii | |
" License: MIT | |
" Last Change: 2016/11/03 00:26 | |
" =============================================================== | |
let g:colors_name="norma" |
View .zshrc
This file contains 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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH=/home/jbaxleyiii/.oh-my-zsh | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
# ZSH_THEME="hyperzsh" |
View .tmux.conf
This file contains 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
# rebind prefix key | |
unbind C-b | |
set-option -g prefix C-a | |
bind-key C-a send-prefix | |
# set-option -g default-shell $SHELL | |
bind R source-file /home/jbaxleyiii/.tmux.conf \; display-message "tmux.conf reloaded" | |
set -g default-terminal "xterm-256color" |
View .bashrc
This file contains 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
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac |
View .vimrc.plugs
This file contains 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
Plug 'airblade/vim-gitgutter' | |
Plug 'vim-airline/vim-airline' | |
Plug 'vim-airline/vim-airline-themes' | |
Plug 'austintaylor/vim-indentobject' | |
Plug 'ctrlpvim/ctrlp.vim' | |
Plug 'garbas/vim-snipmate' | |
Plug 'marcweber/vim-addon-mw-utils' | |
Plug 'tomtom/tlib_vim' | |
Plug 'pangloss/vim-javascript' | |
Plug 'scrooloose/nerdtree' |
View .vimrc
This file contains 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 nocompatible | |
set hidden | |
syntax enable | |
colorscheme norma | |
" colorscheme dracula | |
let g:airline_theme='bubblegum' | |
filetype off |
View getReviewsQuery.graphql
This file contains 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
query GetReviews { | |
reviews { | |
author { | |
username | |
} | |
} | |
} |
View review-reference.graphql
This file contains 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
type Review { | |
author: User | |
} |
NewerOlder