Skip to content

Instantly share code, notes, and snippets.

View jklymak's full-sized avatar

Jody Klymak jklymak

View GitHub Profile
@jklymak
jklymak / TimeSeriesNotes.ipynb
Last active September 17, 2021 14:16
TimeSeriesNotes.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jklymak
jklymak / BottomDrag.ipynb
Created November 7, 2019 00:33
Bottom drag calc
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jklymak
jklymak / tcalc.ipynb
Created March 17, 2019 23:00
Temp budget calc
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jklymak
jklymak / Notes5k.ipynb
Last active May 21, 2018 17:20
Notes 5k runs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jklymak
jklymak / bachelor.py
Created May 9, 2018 16:25
bachelor mil example
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.cbook import get_sample_data
fname = get_sample_data('percent_bachelors_degrees_women_usa.csv',
asfileobj=False)
gender_degree_data = np.genfromtxt(fname, delimiter=',', names=True)
# These are the colors that will be used in the plot
@jklymak
jklymak / # hdf5 - 2018-05-03_14-04-12.txt
Created May 3, 2018 23:30
hdf5 on macOS 10.13.4 - Homebrew build logs
Homebrew build logs for hdf5 on macOS 10.13.4
Build date: 2018-05-03 14:04:12
@jklymak
jklymak / # netcdf - 2017-07-10_15-49-19.txt
Created May 3, 2018 23:28
netcdf on macOS 10.13.4 - Homebrew build logs
Homebrew build logs for netcdf on macOS 10.13.4
Build date: 2017-07-10 15:49:19
@jklymak
jklymak / InstallPython.md
Created April 27, 2018 21:09
Install python

Install Python and friends

  1. Go to https://www.anaconda.com/distribution/ and download conda (Choose python 3.6 - 2.7 is end-of-life)
  2. when it asks to modify your path, let it. That will make ~/anaconda3/bin/python your python instead of the system python which is at /usr/bin/python.

That should be everything!

Running

Command line:

@jklymak
jklymak / PlotSlices.ipynb
Last active May 1, 2018 21:15
PlotSlices.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.