Skip to content

Instantly share code, notes, and snippets.

View ThatClyde's full-sized avatar

Clyde ThatClyde

View GitHub Profile
@ThatClyde
ThatClyde / keybase.md
Last active August 13, 2021 07:20
My proof of identity

Keybase proof

I hereby claim:

  • I am thatclyde on github.
  • I am thatclyde (https://keybase.io/thatclyde) on keybase.
  • I have a public key whose fingerprint is 2188 7404 B045 487A F998 2A4B 48F2 54B4 7B1C 228E

To claim this, I am signing this object:

@ThatClyde
ThatClyde / kochflake.py
Last active September 29, 2015 17:42
My Koch Snowflake
import turtle
def makeflake(length,t,depth):
if 0 == depth:
return
f(length/3,t,depth-1)
t.right(60)
t.right(60)
f(length/3,t,depth-1)