Skip to content

Instantly share code, notes, and snippets.

View gonzalesraul's full-sized avatar

Raul Gonzales gonzalesraul

View GitHub Profile

Introduction

  • C-a == Ctrl-a
  • M-a == Alt-a

General

:q        close
:w        write/saves
:wa[!]    write/save all windows [force]
:wq       write/save and close
@gonzalesraul
gonzalesraul / introrx.md
Created June 1, 2018 10:57 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@gonzalesraul
gonzalesraul / Makefile
Created May 14, 2018 10:06 — forked from mpneuried/Makefile
Simple Makefile to build, run, tag and publish a docker containier to AWS-ECR
# import config.
# You can change the default config with `make cnf="config_special.env" build`
cnf ?= config.env
include $(cnf)
export $(shell sed 's/=.*//' $(cnf))
# import deploy config
# You can change the default deploy config with `make cnf="deploy_special.env" release`
dpl ?= deploy.env
include $(dpl)