Skip to content

Instantly share code, notes, and snippets.

View tkachenko1503's full-sized avatar

Sergey Tkachenko tkachenko1503

View GitHub Profile
@tkachenko1503
tkachenko1503 / postgres-brew.md
Created February 3, 2019 21:32 — forked from ibraheem4/postgres-brew.md
Installing Postgres via Brew (OSX)

Installing Postgres via Brew

Pre-Reqs

Brew Package Manager

In your command-line run the following commands:

  1. brew doctor
  2. brew update
@tkachenko1503
tkachenko1503 / tmux-cheatsheet.markdown
Created July 18, 2017 10:11 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
(function() {
Backbone.Events.autorun = function(f, context) {
if (!this.__autorunHandles) this.__autorunHandles = [];
var backboneContext = this;
var handle = Tracker.autorun(function() {
Tracker.currentComputation.__backboneContext = backboneContext;
f();
});
this.__autorunHandles.push(handle);
return handle;