Interested in advertising on Derpibooru? Click here for information!
Sky Railroad Merch Shop!

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

Description

No description provided.

Comments

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

Detailed syntax guide

Dsiak
Best Artist - Providing quality, Derpibooru-exclusive artwork
Non-Fungible Trixie -
My Little Pony - 1992 Edition
Wallet After Summer Sale -
Magnificent Metadata Maniac - #1 Assistant
Artist -

Actual Horse
Mars’s MIPS, this will freeze mars at max speed  
.data  
trixieIsBest: .asciiz “The great and powerful Trixie its best\n”  
trixie: .word 1  
bestPony: .word 1  
.text  
la $t0, trixie #get adress of trixie  
lw $t1, 0x4($t0) # $t1 = what is 4 bytes ahead of $t0’s adress (this will land in best pony) $t1 = best pony  
lw $t0 0x0($t0) # $t0 = what is in the adress $t0, trixie, $t0 = trixie
 
li $v0, 4 #ask to print string starting at $a0  
la $a0, trixieIsBest #adress of the string
 
whileTrixieIsBest: #Label  
syscall #print string  
beq $t0, $t1, whileTrixieIsBest #branch if $t0 equals $t1 ; branch if trixie == best pony
Background Pony #FA2A
For the old guys in the audience:
 
10 print “The Great and Powerful BASIC is best.”  
20 goto 10
Background Pony #26F8
brackets?  
newline?  
preincrement?  
void?
 
Twi has better codestyle
Parcly Taxel
Parcly Taxel - For supporting the site
Silly Pony - Celebrated the 13th anniversary of MLP:FIM, and 40 years of MLP!
Flower Trio - Helped others get their OC into the 2023 Derpibooru Collab.
Roseluck - Had their OC in the 2023 Derpibooru Collab.
Tree of Harmony - Drew someone's OC for the 2022 Community Collab
Elements of Harmony - Had an OC in the 2022 Community Collab
Philomena - For helping others attend the 2021 community collab
Twinkling Balloon - Took part in the 2021 community collab.
Ten years of changes - Celebrated the 10th anniversary of MLP:FiM!
Happy Derpy! - For Patreon supporters

Princess of Science
Well actually the correct syntax (in Python 3) looks like  
for q in range(100): print("The great and powerful Parcly is the best")  
Also: It’s…
 
 
[Liberty Bell music plays]  
MONTY PYTHON’S FLYING CIR-CUS!
Yet One More Idiot
Artist -

World's biggest idiot xD
I don’t know C____, C, or Python, but I do remember a little programming the mathematics software I used when I was at uni (called GAP4). :)
 
i:=1; while i=(1..100) do print “The great and powerful Trixie its best.”; i:=i+1; od;
Background Pony #8621
Wouldn’t have more easy to use python?  
Like this:  
print 'The great and powerful Trixie is the best, ' * 100  
Or to print multiple lines:  
@count=0  
while count!=100:  
… print ‘The great and powerful Trixie is the best’  
… count=count+1@
PoolofCarp

Why would Twilight make her write “the great and powerful Trixie its best” a hundred times? I mean, it’s a lines gag, right? The line should be something like “I won’t declare myself great and powerful in class,” and then she cheats by making a loop.
GreyGears
Lunar Supporter - Helped forge New Lunar Republic's freedom in the face of the Solar Empire's oppressive tyrannical regime (April Fools 2023).
Wallet After Summer Sale -
Artist -
Not a Llama - Happy April Fools Day!

Virtually real pony.
No multi-threading ?  
Console mode ?  
“For 1 to 100” instead of “while(true)” ?
 
Trixie, I’m disappointed.
atalarikt
Artist -

EqG fan + Love Liver
Also, as an IT vocational high school student who takes the software engineering class, I can relate to this very much.