Skip to content

Instantly share code, notes, and snippets.

View brianspiering's full-sized avatar

Brian Spiering brianspiering

  • San Francisco, CA, USA
View GitHub Profile
@brianspiering
brianspiering / .bash_profile
Last active June 16, 2023 18:08
This file holds all my BASH configurations and aliases
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management
@brianspiering
brianspiering / start.ipy
Last active February 1, 2017 15:42
Jupyter Notebook: IPython kernal defaults
# ~/.ipython/profile_default/startup/start.ipy
# HT: http://people.duke.edu/~ccc14/sta-663-2016/Customizing_Jupyter.html
from functools import reduce, partial
import itertools as it
import glob
import operator as op
import os
import sys
@brianspiering
brianspiering / anscombe's_quartet.ipynb
Last active February 22, 2017 22:59
Anscombe's quartet
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@brianspiering
brianspiering / my_computer_science_journey.ipynb
Created March 1, 2017 00:47
My computer science journey visualization
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@brianspiering
brianspiering / estimating_pi.ipynb
Created June 16, 2017 17:58
Technical interview: Estimating the number pi
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@brianspiering
brianspiering / closures_for_data_science.ipynb
Last active September 6, 2017 18:27
Closures for Data Science
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@brianspiering
brianspiering / explore_tokenizers.ipynb
Last active September 18, 2018 18:52
Explore different methods for tokenizing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@brianspiering
brianspiering / explore_permutation_testing.ipynb
Last active October 9, 2017 23:08
Explore permutation testing with different statistics
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@brianspiering
brianspiering / Preferences.sublime-settings
Last active April 22, 2018 02:06
My Sublime Text 3 User preferences "Heaven'll be indifferent to this Indifferent dog"
{
"added_words":
[
"Souptown",
"Sprass",
"9pm",
"pyspark",
"sc",
"databricks",
"ransformations",
@brianspiering
brianspiering / environment.yml
Last active February 9, 2019 18:06
Current Data Science Teaching Environment - TeachOps For the Win!
name: rl-course
channels:
- conda-forge
- damianavila82
- pytorch
dependencies:
- python==3.7
- pytorch>=1.0
- torchvision
- ipython