df -k
sudo mkdir -p /data
You'll find it in this directory, this kind of disk is oftently call sdb
| language: | |
| - cpp | |
| compiler: | |
| - gcc | |
| before_install: | |
| - sudo apt-get update | |
| install: |
| #!/usr/bin/env python | |
| """ | |
| Select some text and then "!fmtcomment". It understands "//" and | |
| "#" comments, works with indenting in spaces and tabs. It assumes | |
| you want to squeeze your text within 80-chars, and treats tabs as | |
| 4 spaces thusly. | |
| E.g., will turn | |
| // Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. |
| let(:runner) do | |
| memoized_runner('pd-gocd::agent') do |node| | |
| #..... | |
| end | |
| end |
| /* Exercise: Loops and Functions #43 */ | |
| package main | |
| import ( | |
| "fmt" | |
| "math" | |
| ) | |
| func Sqrt(x float64) float64 { | |
| z := float64(2.) |
| Bonnie Tyler - Total Eclipse of the Heart | |
| Air Supply - Without You | |
| Aerosmith - I Don't Want to Miss a Thing | |
| No Doubt - Don't Speak | |
| Toni Braxton - Un-Break My Heart | |
| The Beatles - Hello Goodbye | |
| Backstreet Boys - I want it that way | |
| A whole new world | |
| Whitney Houston - I Will Always Love You | |
| Queen - The Show Must Go On |
| module SoftDelete | |
| REQUIRED_PROPERTIES = [ | |
| [ :deleted_at, DataMapper::Property::DateTime ], | |
| ].freeze | |
| def self.extended(klass) | |
| REQUIRED_PROPERTIES.each do |property| | |
| klass.send(:property, *property) | |
| end |
| * An Emacs Workshop for Beginners | |
| It's all about discovering Emacs Really | |
| ** Install | |
| *** Emacs 24.3 | |
| http://emacsformacosx.com/ | |
| http://emacs.naquadah.org/ | |
| http://ftp.gnu.org/pub/gnu/emacs/windows/ | |
| ** Conventions and docs |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| #!/bin/bash | |
| # * * * * * root /path/to/riak_graphite_stats.sh | |
| set -e | |
| SOURCE=$(hostname) | |
| GRAPHITE_PORT=2003 | |
| GRAPHITE_SERVER="myserver" | |
| PREFIX="test.riak" |