Skip to content

Instantly share code, notes, and snippets.

View drvinceknight's full-sized avatar
😀
👍

Vince Knight drvinceknight

😀
👍
View GitHub Profile
@drvinceknight
drvinceknight / Fire Lightning talk.ipynb
Created March 22, 2017 07:40
Notebook from lightning talk demoing the fire library to create a command line tool for a linear programming problem.
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.
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.
@drvinceknight
drvinceknight / A notebook example of using Nashpy.ipynb
Last active January 8, 2017 20:25
Explore the nature of equilibria for battle of the sexes and then prove an observation with the help of Sympy.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import collections
import random
def dice_roll():
return random.randint(1, 6)
def index_of_same(rolls):
counter = collections.Counter(rolls)
rolls.sort(key= lambda x:(counter[x], x))
nbr_the_same = max(counter.values())
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.
\documentclass{article}
\usepackage{tikz}
\begin{document}
\framebox{
\begin{tikzpicture}
\draw [thick] (0,0) to [bend left=50] (0,10);
\draw [thick] (3,0) to [bend left=70] (3,10);
\draw [thick] (5,2) to [bend left=90] (5,8);
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.