Torgamous
Aspiring Gynoid
- Pronouns
- She/Her
Masami will also be there tomorrow. Kirika! Kirika! Kirika!Later. Kirika will still be there tomorrow. Have to drop by Masami's and keep up good relations.![]()
Masami will also be there tomorrow. Kirika! Kirika! Kirika!Later. Kirika will still be there tomorrow. Have to drop by Masami's and keep up good relations.![]()
Ooooh, yeah. That'd be nice.If Mami can make her ribbons invisible, can we do the same with our hammer? It'd be like Saber's invisible sword from Fate. Hard to know when the thing's gonna hit you if you can't see it.
Vote tally:
##### 3.21
[X] Sereg.
No. of votes: 1
Gadjo
[X] Accept
[X] Thank
[X] Cleanse?
[X] Explain Sendai
[X] Explain Walpurgisnatch
[X] Other Meguca?
[X] Nagisa/Yuma meetup
[X] goto Mami
No. of votes: 1
'Lement
[x] Thank her for the compliment, the match and the pocky.
[x] Accept the pocky. Don't waste it if you want to live.
[x] Ask Kyouko if she wants to spar again another time.
-[x] I would appreciate more practice with my hammer.
[x] Ask if we can cleanse her gem.
[x] I know a girl about Yuma's age. Maybe they would make good friends.
[x] Good News!
-[x]Inform her that the Sendai situation has been taken care of and what the current situation there is.
[x] Ask her if there are any other Magical girls in the area and what she knows about them.
-[x] If she asks why, remind her that we're trying to encourage cooperation and reduce competion between magical girls.
[x] When done talking, return to Mitakihara and join Mami and the others for lunch.
No. of votes: 7
Sereg, Redshirt Army, boonerunner, Muramasa, landcollector, Ugolino, AnonymousRabbit
Uh, thanks, but you should really be voting for Sereg.
You don't have to. The counter will pick it up as the same vote.
This is a pretty good tactic if for whatever reason we're short on grief.Does our hammer sill have it's boosted stats if we wield it with Grief?
If so, we should make a bunch and have a cloud of warhammers next time we decide to kick somebody's ass.
We should stop by at least long enough to trade out Aurora for Gwen so that we can finish up the clear seed testing. We can probably play with Kirika for a bit then, even if we do try to rush off to see the Dynamic Duo afterwards.
We need to figure out how to make a gavel.Hey, can we do that? Make a giant warhammer? Or a small one? I can just imagine the funny looks we'll get when we need to hammer a nail and summon a miniture warhammer to hammer them in.
gotos are terrible, terrible programming practice[1] and you will be attacked by velociraptors for using them.
Have you ever tried reading a Choose Your Own Adventure book? They're like that.I don't even know what "goto" does, or why it would be tempted if it's such a bad idea.
It does literally what it says. When you hit a goto line in the code, it goes to the label specified. So, for example:I don't even know what "goto" does, or why it would be tempted if it's such a bad idea.
:yellow
hugs mumi
goto yellow
:yellow
hugs mumi
goto red
:white
annoy oriko
goto cont_white
:black
joke kirika
goto other_other_white
:cont_white
microwave tea
if feathers goto panic else goto black
:red
spar kyouko
if kokoplomacy goto argue else goto white
:asuka
check masami
:argue
argue
goto white
:other_other_white
imouto nagisa
goto asuka
:panic
scream aaaaaaaaaaaa
breathe
scream aaaaaaaaaaaaaaaaaaaa
goto panic
Basically, when programmers read through code to find out what it does (or programs execute it), the instructions are read in one line at a time (though some parts do have loops or subroutines that programmers conceptualize as larger chunks). Gotos, however, are completely arbitrary: they skip to a completely different location in the code. Computers can follow that type of instruction just fine, but it throws human programmers off, so even if the code works correctly the first time, other people coming in to update the code can screw it up if they aren't really careful about what the goto is supposed to be doing. And almost everything you can do with a goto can be done just as easily (and far more clearly) with a normal function call or loop.I don't even know what "goto" does, or why it would be tempted if it's such a bad idea.
JFC, my eyes bleed when they look at that code...It does literally what it says. When you hit a goto line in the code, it goes to the label specified. So, for example:
On the other hand, imagine you have a few more:Code::mumi hugs mumi goto mumi
Code::yellow hugs mumi goto red :white annoy oriko goto cont_white :black joke kirika goto other_other_white :cont_white microwave tea goto black :red spar kyouko goto white :asuka check masami :other_other_white imouto nagisa goto asuka
Just so.Okay, I get the point. Anyone trying to read the code would hate the coder.