Subjects of Equestria! We are pleased to kick off the Nightmare Night Festivities and the 14th anniversary of the return of our beloved Princess Luna! Join us in celebration!
Interested in advertising on Derpibooru? Click here for information!
Furry Body Pillows - Preset and Custom Designs

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

Description

No description provided.

safe2251949 pinkie pie264362 earth pony539221 fish4076 pony1683300 salmon60 g42112744 :i1951 cyriak312 female1891673 fractal106 looking at you278966 mare794991 not salmon3301 recursion449 shrug1820 shrugpony382 simple background632986 this isn't even my final form412 transparent background297953 trypophobia278 wat22239 what has magic done630 what has science done1868 xk-class end-of-the-world scenario2586
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.