Skip to content

Instantly share code, notes, and snippets.

View sarnthil's full-sized avatar
🇺🇦
🐐

Laura Oberländer sarnthil

🇺🇦
🐐
View GitHub Profile

Keybase proof

I hereby claim:

  • I am sarnthil on github.
  • I am sarnthil (https://keybase.io/sarnthil) on keybase.
  • I have a public key whose fingerprint is C673 3FC4 4DA8 E353 1AF6 FDCB 6ACB C2EA 1CA3 CE08

To claim this, I am signing this object:

@sarnthil
sarnthil / gist:c7057b32ed50f2dc0eac1cf0305acc89
Created August 30, 2016 20:06
word-rnn cooking recipes
no-crust-pumpkin-pie
Steps
---
Preheat oven to 375 degrees F (190 degrees C).
Lightly grease a 9x13-inch baking dish with cooking spray.
Dip one 1/2 inch pie pizza crust in warm or chicken, halved or as needed, cover dough with some of the noodles; mix well.
If you wish, you can place into bite-sized pieces with enough water to serve.
Ingredients
@sarnthil
sarnthil / nummagic.py
Created January 5, 2016 14:53 — forked from L3viathan/nummagic.py
Shenanigans abusing magic methods
import random
import math
class Num(object):
def __init__(self, val):
self.value = val
self.bit = False
def __repr__(self):
return str(self.value)
def __abs__(self):
return self