Skip to content

Instantly share code, notes, and snippets.

View gonsie's full-sized avatar
💭
Working hard from home, or...

Elsa Gonsiorowski, PhD gonsie

💭
Working hard from home, or...
View GitHub Profile
// Base16 XCode Dusk
// Scheme: Elsa Gonsiorowski (https://github.com/gonsie)
base00 = '#282B35';
base01 = '#3D4048';
base02 = '#53555D';
base03 = '#52BE5B';
base04 = '#7E8086';
base05 = '#FFFFFF';
base06 = '#FFFFFF';

Keybase proof

I hereby claim:

  • I am gonsie on github.
  • I am gonsie (https://keybase.io/gonsie) on keybase.
  • I have a public key whose fingerprint is 46C0 FD64 4B3B AABD 3921 B51C D367 742D FD7E 3C28

To claim this, I am signing this object:

@gonsie
gonsie / -v output
Created October 18, 2012 16:52
homebrew mpich2 issue #15533
brew install -v --env=std mpich2
==> Downloading http://www.mcs.anl.gov/research/projects/mpich2/downloads/tarballs/1.5/mpich2-1.5.tar.gz
Already downloaded: /Library/Caches/Homebrew/mpich2-1.5.tar.gz
/usr/bin/tar xf /Library/Caches/Homebrew/mpich2-1.5.tar.gz
==> Using Homebrew-provided fortran compiler.
This may be changed by setting the FC environment variable.
==> ./configure --prefix=/usr/local/Cellar/mpich2/1.5 --mandir=/usr/local/Cellar/mpich2/1.5/share/man --enable-shared
./configure --prefix=/usr/local/Cellar/mpich2/1.5 --mandir=/usr/local/Cellar/mpich2/1.5/share/man --enable-shared
Configuring MPICH2 version 1.5 with '--prefix=/usr/local/Cellar/mpich2/1.5' '--mandir=/usr/local/Cellar/mpich2/1.5/share/man' '--enable-shared' 'CC=/usr/bin/clang' 'CFLAGS=-Os -w -pipe -march=native -Xclang -target-feature -Xclang -aes -Qunused-arguments -mmacosx-version-min=10.8' 'LDFLAGS=-L/usr/local/lib' 'CXX=/usr/bin/clang++' 'CXXFLAGS=-Os -w -pipe -march=native -Xclang -target-feature -Xclang -aes -Qunused-arguments
@gonsie
gonsie / scripttemplate.sh
Created June 25, 2012 17:29 — forked from kylelemons/scripttemplate.sh
BASH Script template
###
### Usage: blah [<options>]
###
### Description of the script
###
### Options:
### -f --flag
### Description of the flag
### -o --option <arg>
### Description of the option and argument
@gonsie
gonsie / template.py
Created June 25, 2012 17:23
Quick and Dirty Python Template
def main():
pass
import sys
if __name__ == "__main__":
if len(sys.argv) == 1:
print "Usage:", sys.argv[0], "arg1 arg2"
else:
main()