Skip to content

Instantly share code, notes, and snippets.

#include "ExampleClass.h"
namespace example
{
ExampleClass::ExampleClass() :
x_(0),
y_(0)
{}
ExampleClass::~ExampleClass()
@rhololkeolke
rhololkeolke / tmux_local_install.sh
Created March 19, 2017 04:46 — forked from ryin/tmux_local_install.sh
bash script for installing tmux without root access
#!/bin/bash
# Script for installing tmux on systems where you don't have root access.
# tmux will be installed in $HOME/local/bin.
# It's assumed that wget and a C/C++ compiler are installed.
# exit on error
set -e
TMUX_VERSION=1.8