Skip to content

Instantly share code, notes, and snippets.

@christophetd
christophetd / 0_reuse_code.js
Last active August 29, 2015 14:17
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
@christophetd
christophetd / README.md
Last active May 15, 2020 14:52
Command line clipboard

Simple command line clipboard using xclip

Installation

# Install xclip (if not already installed)
if [ -z `which xclip` ]; then sudo apt-get install xclip; fi

# Download script and make it executable
sudo wget -O /usr/bin/clipboard https://gist.githubusercontent.com/christophetd/63f8986dcd367c758dac/raw/9017ce92c98fb80c01c73938d583e84416d026c4/clipboard