Skip to content

Instantly share code, notes, and snippets.

View act65's full-sized avatar

Alex act65

View GitHub Profile
@act65
act65 / saddle-split.ipynb
Last active May 15, 2018 01:07
Saddle splitter exploration
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@act65
act65 / style.css
Last active March 18, 2019 13:06
css script for stylish (userstyles.org) to block youtube recommendations
/* Watch next sidebar */
#related.ytd-watch { display: none; }
/* Comments */
/* ytd-comments { display: none; } */
/* Watch next panel over the that has just finished */
.ytp-endscreen-content { display: none; }
/* Suggesting videos whilst the current one is starting */
@act65
act65 / word_cloud_from_bib.py
Last active August 31, 2018 21:17
make a word cloud from a bib file
import os
from PIL import Image, ImageColor
import numpy as np
from wordcloud import WordCloud, STOPWORDS
import argparse
def argumentparser():
parser = argparse.ArgumentParser(description='Make a word cloud of a bib file')
parser.add_argument('--bib_dir', type=str,
help='location of the bib file')
@act65
act65 / notebook.ipynb
Created March 11, 2019 00:41
temporal difference value estimates
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.