View SearchBar.jsx
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
/** | |
* GENERAL NOTES | |
* @author TalkRise <admin@talkrise.com> | |
*/ | |
// Module imports | |
import React, { Component } from 'react'; | |
import PropTypes from 'prop-types'; | |
import { debounce } from 'lodash'; |
View apiUtilities.jsx
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
/** | |
* GENERAL NOTES | |
* @author TalkRise <admin@talkrise.com> | |
*/ | |
// Module imports | |
import axios from 'axios'; | |
View withEnterTransition.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 React, { Component } from 'react' | |
import type { ComponentType } from 'react' | |
import { omit, prop } from 'ramda' | |
import posed from 'react-pose' | |
/** | |
* @const poseProps | |
* @description Represents a fade up transition | |
* @type {{hidden: {y: number, opacity: number}, visible: {y: number, opacity: number}}} | |
*/ |
View 4Mike.py
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 sys | |
import requests | |
"""Define Constants""" | |
MAILGUN_DOMAIN = "" | |
MAILGUN_API_KEY = "" | |
''' | |
Entry point for the application | |
''' |
View GraphQLDataWrapper.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 React, { Component } from 'react' | |
import PropTypes from 'prop-types' | |
import GenericErrorComponent from './GenericErrorComponent' | |
import GenericLoadingComponent from './GenericLoadingComponent' | |
class GraphQLDataWrapper extends Component { | |
render () { | |
const { data, error, ErrorComponent, loading, LoadingComponent, renderData, ...rest } = this.props | |
// There was an error |
View configureFirebaseInstance.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 * as firebase from 'firebase' | |
// Configure your firebase singleton instance | |
const firebaseInstance = firebase.initializeApp({ | |
apiKey: YOUR_FIREBASE_API_KEY, | |
authDomain: YOUR_FIREBASE_AUTH_DOMAIN, | |
databaseURL: YOUR_FIREBASE_DATABASE_URL, | |
storageBucket: YOUR_FIREBASE_STORAGE_BUCKET | |
}) |
View index.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
/** | |
* orders/index.js | |
* | |
* @desc The key to our succinct redux pattern is to keep our domain action types, reducer, actions, selectors, and data HOCs | |
* in the same file as these functions are inherently coupled | |
*/ | |
/** | |
* @desc Imports | |
*/ |
View tmux.conf.local
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
# https://github.com/gpakosz/.tmux | |
# (‑●‑●)> dual licensed under the WTFPL v2 license and the MIT license, | |
# without any warranty. | |
# Copyright 2012— Gregory Pakosz (@gpakosz). | |
# -- navigation ---------------------------------------------------------------- | |
# if you're running tmux within iTerm2 | |
# - and tmux is 1.9 or 1.9a |
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 " be iMproved, required | |
filetype off " required | |
syntax on | |
set rtp+=~/.vim/bundle/Vundle.vim | |
set noswapfile | |
set number | |
set noshowmode | |
call vundle#begin() |
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="/Users/mmasia/.oh-my-zsh" | |
export PATH=~/Documents/repos/github.com/Guaranteed-Rate/kubeclj:$PATH | |
export PATH=~/.cargo/bin:$PATH | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, |
OlderNewer