Rainbow Rocks 10th Anniversary - Let's celebrate the 10th anniversary of Rainbow Rocks with an art event! Here
Interested in advertising on Derpibooru? Click here for information!
KilianKuro Commissions!

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

Description

No description provided.

safe2233152 pinkie pie262213 earth pony529995 fish4020 pony1663323 salmon59 g42095101 :i1948 cyriak304 female1870738 fractal106 looking at you274444 mare783284 not salmon3278 recursion448 shrug1806 shrugpony382 simple background626053 this isn't even my final form411 transparent background295092 trypophobia277 wat22122 what has magic done627 what has science done1867 xk-class end-of-the-world scenario2584
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.