Interested in advertising on Derpibooru? Click here for information!
Ministry of Image - Fanfiction Printing

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

Description

No description provided.

safe2279353 pinkie pie267044 earth pony551039 fish4139 pony1713119 salmon60 g42136654 :i1974 cyriak316 female1921836 fractal113 looking at you285471 mare814634 not salmon3342 recursion453 shrug1840 shrugpony382 simple background642536 this isn't even my final form413 transparent background302088 trypophobia278 wat22392 what has magic done632 what has science done1875 xk-class end-of-the-world scenario2600
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.