Skip to content

Instantly share code, notes, and snippets.

View co89757's full-sized avatar

gueuz co89757

  • United States
View GitHub Profile
@co89757
co89757 / Makefile
Created December 2, 2019 07:56 — forked from isaacs/Makefile
# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.
@co89757
co89757 / tmux-cheatsheet.markdown
Created March 12, 2019 06:30 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@co89757
co89757 / vim_cheatsheet.md
Created February 13, 2018 08:02 — forked from awidegreen/vim_cheatsheet.md
Vim shortcuts

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
@co89757
co89757 / 0_reuse_code.js
Created August 24, 2014 21:21
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console