Policy Update - Rules changes incoming for AI content - Read Here
Interested in advertising on Derpibooru? Click here for information!
Techy Cutie Pony Collection!

Help fund the $15 daily operational cost of Derpibooru - support us financially!

Description

No description provided.

safe2272553 pinkie pie266347 earth pony547973 fish4130 pony1705567 salmon60 g42131237 :i1964 cyriak316 female1914791 fractal113 looking at you284070 mare809693 not salmon3338 recursion452 shrug1837 shrugpony382 simple background640304 this isn't even my final form413 transparent background301033 trypophobia278 wat22365 what has magic done632 what has science done1874 xk-class end-of-the-world scenario2596
Source

Comments

Syntax quick reference: **bold** *italic* ||hide text|| `code` __underline__ ~~strike~~ ^sup^ ~sub~

Detailed syntax guide

Background Pony #7F93
def draw_pinkie(armLength,drawer):
if armLength > 5:
drawer.forward(armLength)
drawer.right(20)
draw_pinkie(armLength-15,t)
drawer.left(40)
draw_pinkie(armLength-15,t)
drawer.right(20)
drawer.backward(armLength)
drawer.left(90)
drawer.up()
drawer.backward(100)
drawer.down()
drawer.color(“pinkie pie”)
draw_pinkie(75,drawer)
 
Joke code from here.