Skip to content

Instantly share code, notes, and snippets.

View willopez's full-sized avatar

Will Lopez willopez

  • Houston, TX
View GitHub Profile
@willopez
willopez / docker_aliases.txt
Last active November 17, 2019 20:47
Useful Docker and Docker Compose aliases
alias dc='docker-compose'
# Bring all services down
alias dcd='docker-compose down'
# Attach to all logs of all services
alias dcl='docker-compose logs -f'
# Run a comand inside a running container
alias dcr='docker-compose run --rm'
### Keybase proof
I hereby claim:
* I am willopez on github.
* I am beeboss (https://keybase.io/beeboss) on keybase.
* I have a public key ASDR6Cn-pVyLR_i4ML2UdQK9BG5aYP-HX8uIAFH5sY7fKgo
To claim this, I am signing this object:
@willopez
willopez / issue.md
Last active February 14, 2018 17:17
Issue template

Issue tracker is ONLY used for reporting bugs. NO NEW FEATURE REQUESTS ACCEPTED Use stackoverflow for supporting issues.

Are you looking for help with getting started on Reaction? Please go to our Gitter room instead.

Prerequisites

  • Are you running the latest version?
  • Did you search the issue queue for existing issue? Search issues

Expected Behavior

@willopez
willopez / docker-compose.yml
Created June 13, 2017 04:44
Private docker registry
docker-compose.yml
==================================================================
version: '2'
services:
haproxy:
image: m21lab/haproxy:1.6.2
links:
- registry
- registry-ui
ports:
@willopez
willopez / vim.sh
Created April 13, 2017 03:40
Compiling vim on Ubuntu 16 with LUA-support
# Remove previous installations
sudo apt-get remove vim vim-runtime vim-tiny vim-common
# Install dependencies
sudo apt-get install libncurses5-dev python-dev libperl-dev ruby-dev liblua5.2-dev
# Fix liblua paths
sudo ln -s /usr/include/lua5.2 /usr/include/lua
sudo ln -s /usr/lib/x86_64-linux-gnu/liblua5.2.so /usr/local/lib/liblua.so
@willopez
willopez / .eslintrc
Created April 27, 2016 18:33
React eslintrc
{
"plugins": ["react"],
"env": {
"node": true,
"jquery": true,
"browser": true,
"amd": true,
"es6": true,
"commonjs": true,
"jest": true
@willopez
willopez / webpack.config.js
Last active December 11, 2015 04:23
webpack config
var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var config = require('./config');
var NoErrorsPlugin = webpack.NoErrorsPlugin;
var optimize = webpack.optimize;
var webpackConfig = module.exports = {
entry: {
auth: ['./src/client/auth.js']
@willopez
willopez / keymap.cson
Created October 5, 2015 19:51
Atom Custom Key Bindings
'atom-text-editor.vim-mode.normal-mode':
'space b': 'fuzzy-finder:toggle-buffer-finder'
'space f': 'fuzzy-finder:toggle-file-finder'
'space w': 'core:save'
@willopez
willopez / gist:d6e4f16067305d0fab96
Last active September 8, 2015 23:19
.vimrc.bundles.local
" Additional bundles
Bundle 'rking/ag.vim'
Bundle 'mxw/vim-jsx'
Bundle 'junegunn/vim-easy-align'
Bundle 'marijnh/tern_for_vim'
Bundle 'goatslacker/mango.vim'
Bundle 'Yggdroot/indentLine'
Bundle 'evanmiller/nginx-vim-syntax'
" Disable unneeded bundles
@willopez
willopez / gist:7e107583dbe4df1fec97
Last active September 24, 2015 03:23
.vimrc.before.local
let g:spf13_bundle_groups=['general', 'writing', 'youcompleteme', 'programming', 'ruby', 'javascript', 'html']