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:
I hereby claim:
To claim this, I am signing this object:
| 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 |
| 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 |