I hereby claim:
- I am aelesbao on github.
- I am aelesbao (https://keybase.io/aelesbao) on keybase.
- I have a public key ASBtZdMx-YRdcXLMxZ7lN7vAXpkVMJYznmhjQcauonLULQo
To claim this, I am signing this object:
| DROP TABLE IF EXISTS measurement CASCADE; | |
| -- our master table | |
| CREATE TABLE measurement ( | |
| id bigserial PRIMARY KEY NOT NULL, | |
| logdate date NOT NULL | |
| ); | |
| -- create the partitions | |
| CREATE TABLE measurement_2016_12 ( |
| #!/bin/sh | |
| brew tap homebrew/science | |
| brew cask install aquaterm xquartz | |
| brew install gnuplot --with-aquaterm --with-x11 | |
| brew install octave --with-sndfile --without-qt5 | |
| # Now you can use either Aquaterm or X11 as your graphics engine. | |
| # Add the following to ~/.octaverc and choose one: | |
| # | |
| # graphics_toolkit('gnuplot'); |
I hereby claim:
To claim this, I am signing this object:
| require 'rubygems' | |
| specs_with_extensions = Gem::Specification.each.select { |spec| spec.extensions.any? } | |
| specs_with_extensions.each do |spec| | |
| puts "#{spec.name} (extensions: #{spec.extensions.inspect})" | |
| end |
| # sets the correct term | |
| set -g default-terminal "screen-256color" | |
| # allow xterm titles in terminal window and terminal scrolling with scrollbar | |
| set -g terminal-overrides "screen*:XT:smcup@:rmcup@" | |
| # automatically set window title | |
| setw -g automatic-rename on | |
| setw -g allow-rename off |
| #!/bin/bash --login | |
| orig_commit=$1 | |
| dest_commit=$2 | |
| root="$(git rev-parse --show-toplevel 2> /dev/null)" | |
| is_not_rebasing() { | |
| test -d ${root}/.git/rebase-merge | |
| } |