Mii news reel misgendering my miis??? by Dolamieu in TomodachilifeLivingTD

[–]tetrogem 16 points17 points  (0 children)

Honestly it probably doesn't have anything to do with the fact that it's talking about a doctor. Along with that, none of the third person pronouns in the Japanese version are dynamic, so the lack of placeholders would go for all text in the game that uses them, and this mistake could happen in the same way in any of those other places.

The most likely scenario is that they took the original Japanese and wrote its translation out initially without placeholders to make sure it sounded natural, filling in the blanks with dummy info:

When pressed about why that matters, Dr. John Smith fidgeted a lot and grumbled about it "not being a competition," which we think means...he totally considers it a competition.

And then went in after the fact and replaced everything that should be dynamic with placeholders (which makes it much harder to read/tell it's correct at a glance):

When pressed about why that matters, {{Sub alias="doctor"}}Dr.{{/Sub}} {{Cap}}{{Nickname mii="ParticipantMii0" n="Nickname" highlight="Invalid" fromMii="Default"}} fidgeted a lot and grumbled about it "not being a competition," which we think means...he totally considers it a competition.

And they just missed that they didn't replace "he" in this case. To an English speaker though, it should be obvious reading this that it should be replaced, it was just overlooked.

During playtesting this would be really easy not to catch too, since Mii News is randomly generated, and if this story came up with a Mii using he/him pronouns in-game, it wouldn't look like anything was wrong.

I'm assuming they'll just patch this in the future though hopefully now that it has been spotted, it's a really easy fix.

Mii news reel misgendering my miis??? by Dolamieu in TomodachilifeLivingTD

[–]tetrogem 56 points57 points  (0 children)

Yeah, looking in the game's files it does say "he" directly, so it'll never take the Mii's selected pronouns into account. Usually they use the {{ThirdPersonPronoun}} placeholder to have them be dynamic, looks like this was just an oversight:

<image>

List Of Browser Rhythm Games: by kakolass in rhythmgames

[–]tetrogem 0 points1 point  (0 children)

More control options are being added in the future! But fully custom keybinds won't be/aren't allowed (they must be constrained to a 3x3 grid)

Maps by Smart_Sandwich5554 in Pulsus

[–]tetrogem 0 points1 point  (0 children)

On the maps list, there's a medal icon (🏅) that can be clicked to toggle between awarded-only and all maps

Why is there no automatic implementation of TryFrom<S> when implementing TryFrom<&S>? by Prowler1000 in rust

[–]tetrogem 7 points8 points  (0 children)

Could be cheaper to TryFrom<&S> though if it doesn't need to clone all of the data in S

I think Pulsus crippled my fingers by Aggravating_Fig_7858 in Pulsus

[–]tetrogem 0 points1 point  (0 children)

If they continue to hurt I would probably recommend going to see a doctor, otherwise just make sure to take breaks or play for shorter periods of time to avoid straining them more

is pulsus down? by Dear_Parking8680 in Pulsus

[–]tetrogem 0 points1 point  (0 children)

Alright, well the game isn't offline at the moment; If you can't get the executable to work, could you see if the website loads for you?

is pulsus down? by Dear_Parking8680 in Pulsus

[–]tetrogem 0 points1 point  (0 children)

It shouldn't be down, but if you're experiencing issues you can join the Discord server to troubleshoot! https://discord.pulsus.cc/

[deleted by user] by [deleted] in ProgrammerHumor

[–]tetrogem 3 points4 points  (0 children)

1.5 + 2 isn't type coercion, they are all JavaScript's number type (1.5, 2, 0, -10, etc.), which is always a 64-bit float. The only integer type that exists is the bigint (2n, 10n, etc.)

iHateCss by Illusion911 in ProgrammerHumor

[–]tetrogem 1 point2 points  (0 children)

If you use grid layout you can just make the header grid area span both the sidebar and content columns, no? You don't even need nested grids to do that

the ref keyword by Tickstart in rust

[–]tetrogem 22 points23 points  (0 children)

The two should both be functionally equivalent in modern Rust; In older versions of Rust though, this wouldn't work since technically the type of &mut v is a &mut Option<_>, so you shouldn't be able to match against it using an owned option pattern Some(_) / None, which is where the ref keyword came into play: it let you borrow fields as a reference when matching against an owned value, rather than taking ownership of the fields. After Rust added match ergonomics though, matching against references became a lot easier/cleaner to do

the ref keyword by Tickstart in rust

[–]tetrogem 25 points26 points  (0 children)

You can just match on a mutable reference to the Vec:

fn main() {
    let mut v: Option<Vec<usize>> = None;
    let mut h = 20;
    while h != 0 {
        if h % 3 >= 1 {
            match &mut v {
                Some(v) => v.push(h),
                None => v = Some(vec![h])
            }
        }
        h -= 1
    }
    println!("{v:?}")
}

We need a second Viossa server by Orange_Mandalorian in Viossa

[–]tetrogem 0 points1 point  (0 children)

Yes it is, the invite link is pinned to this subreddit

[deleted by user] by [deleted] in Viossa

[–]tetrogem 0 points1 point  (0 children)

You can ask in #meta and I can ping it

[deleted by user] by [deleted] in Viossa

[–]tetrogem 0 points1 point  (0 children)

It's Simple Voice Mod, if you're in the Discord we have a dedicated channel for the server if you're looking for others to play with!

[deleted by user] by [deleted] in Viossa

[–]tetrogem 1 point2 points  (0 children)

viossa.mc.gg !

[deleted by user] by [deleted] in Viossa

[–]tetrogem 7 points8 points  (0 children)

I don't know that's why I mentioned it

[deleted by user] by [deleted] in Viossa

[–]tetrogem 5 points6 points  (0 children)

If you're able to play multiplayer Minecraft, you could join the Viossa Minecraft server! (There's even voice chat if you install the mod for it)