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.

safe2276466 pinkie pie266248 earth pony549125 fish4137 pony1705924 salmon61 g42118958 :i1968 cyriak315 female1906921 fractal113 looking at you275893 mare811079 not salmon3268 recursion453 shrug1840 shrugpony382 simple background643355 this isn't even my final form413 transparent background302962 trypophobia276 wat22251 what has magic done631 what has science done1846 xk-class end-of-the-world scenario2568
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.