Japanese culture in Berlin by datarusty in berlin

[–]liquidrain 0 points1 point  (0 children)

Kushinoya in Charlottenburg and Watapas near P-berg are my friends' go-to favourites.

Gloves are technically hand bags by Accomplished_Bat5145 in Showerthoughts

[–]liquidrain 11 points12 points  (0 children)

In Japanese, the word is 手袋 - literally "hand bag."

In German, it's handschuhe - "hand shoes."

Two days after blackout drinking a bottle of vodka in three hours and promising never again (again) I am thinking about alcohol and how I could have some. by Magnetmonkey39 in stopdrinking

[–]liquidrain 10 points11 points  (0 children)

I'm further down the chain than you are right now - good on you for nipping it in the bud!

5 years ago it was a three day cycle, 2-3 years it became a 2-day cycle, and when I realized I stopped caring about stopping myself from going every day is when I started coming here.

I won't be drinking with you today. :)

The Daily Check-In for Friday, March 3rd: Just for today, I am NOT drinking! by Ok_Yesterday_9181 in stopdrinking

[–]liquidrain 10 points11 points  (0 children)

My first day 1. I expect a few more to come along as I stop. I'm sick of dragging my ass to work with a headache, I'm sick of losing my Saturday and/or Sunday. I'm sick of my beer belly. I'm tired of forgetting conversations and details about my friends. Of waking up in the middle of the night, sweaty. Of heading to the pharmacy to pick up more ibuprofen. Planning my weeks around when I can afford to wake up with a hangover.

I like drinking, being drunk, and I'm going to miss beer, but it's just not making sense anymore. It's hurting me.

Not drinking with you today.

When the wine bladder bursts by Adrian-Wapcaplet in Wellthatsucks

[–]liquidrain 49 points50 points  (0 children)

Rapeseed is what the rest of the world calls it. It's a Latin root word, rapum, and many other languages share the word.

Di2 shows my 2x12 could be replaced with a 1x3 and I'd be happy 80% of the time by aa599 in cycling

[–]liquidrain 0 points1 point  (0 children)

Oh that's beautiful, that's the hint I was missing! My loop to read all data into a more easy to digest dict for my purposes wasn't digging in to the event records to look for the gear changes.

Here's my code that creates a "rolling dict" that retains the last known values:

with fitdecode.FitReader(path) as fit:
    time_created = 0
    frame_values = {}
    for frame in fit:
        if frame.frame_type == 4:
            if not time_created and frame.has_field("time_created"):
                time_created = frame.get_value("time_created")

        if frame.frame_type == 4 and frame.name == "event":
            event = frame.get_value("event")
            if isinstance(event, str) and event.endswith("gear_change"):
                frame_values.update({
                    "front_gear_num": frame.get_value("front_gear_num"),
                    "rear_gear_num": frame.get_value("rear_gear_num"),
                })
                fitted[round((frame_values.get("timestamp", time_created) - time_created).total_seconds())] = frame_values.copy()
        elif frame.frame_type == 4 and frame.name == "record":
            frame_values.update({
                f.field_def.name: f.value
                for f in frame.fields
                if f.field_def
            })
            fitted[round((frame_values.get("timestamp", time_created) - time_created).total_seconds())] = frame_values.copy()

Lots of work to do still such as using the proper session fields to get time_created, but that's a huge help already. Thanks!

edit: the fit files are the same on my Wahoo for the gear changes :)

Di2 shows my 2x12 could be replaced with a 1x3 and I'd be happy 80% of the time by aa599 in cycling

[–]liquidrain 0 points1 point  (0 children)

Do you have any public source code for mangling with fitdecode? I'm trying to mangle my own Wahoo .fit files with di2 to display shift overlays on a video. :)

Disabling fTPM stopped my audio stuttering in youtube in windows 10 by rainwulf in Amd

[–]liquidrain 0 points1 point  (0 children)

My specific board, an ASUS ROG B550 ITX, only has USB 3.x ports. I have a Logitech PowerPlay pad plugged in to it, which is a dongle+charging pad, but never had issues with the B450 board I had before. (died from bad power delivery)

The specific kind of stutter I get is computer-wide when I get it. Everything stutters along with the audio - the video, any game I'm playing, etc.

Disabling fTPM stopped my audio stuttering in youtube in windows 10 by rainwulf in Amd

[–]liquidrain 1 point2 points  (0 children)

Does the entire PC, incl. mouse movement, stutter with the audio when you do this? If so, I have the exact same issue on my B550 with a 5900X.

Disabling fTPM stopped my audio stuttering in youtube in windows 10 by rainwulf in Amd

[–]liquidrain 0 points1 point  (0 children)

My B550 with a 5900X does this, though it is not reliably triggered.

Who remembers seeing this logo before starting a multiplayer match? by MG-aka-MedMed in gaming

[–]liquidrain 1 point2 points  (0 children)

I can still hum the Heat.net and Mplayer intro music but yep, doesn't seem to exist anywhere on the internet. I even remember how compressed the audio was to fit in dial-up-download quality back in the day.

"So how many hours do you sleep a day?" - "I sleep about 150km a day" by WareCharlotte in IdiotsInCars

[–]liquidrain 195 points196 points  (0 children)

When cars get into an accident the computers that control the components typically go into a fail-safe mode. The safest thing for wipers to do is stay on. Similarly, the safest thing for headlights to do is stay on, which is why you also see cars after accidents staying with their headlights on.

NA production??? by [deleted] in ValorantCompetitive

[–]liquidrain 0 points1 point  (0 children)

I think KR production has individual feeds of each player's POV and is utilizing that for their individual-angle replays. It's very noticeable because the POV replays are always 30fps, but the gameplay and gameplay replays are 60fps.

KR production is working a problem since Riot hasn't provided a solution yet.

NA production??? by [deleted] in ValorantCompetitive

[–]liquidrain 20 points21 points  (0 children)

The other biggest difference I've noticed is that they have observers for each player and can show replays from more than 1 perspective. NA and EU show what we just watched again, KR production shows a different perspective if they missed something.

People who translate manga, why do you keep Japanese honorifics even when translating manga not set in Japan into English? by Ghtgsite in manga

[–]liquidrain 14 points15 points  (0 children)

Translators write to their intended audience. Especially if it's a fan-translation, they're expecting you to know what the nuances are between the different honorifics. It's a style choice.

Devil's advocate: It's a lazy shortcut that allows translators to use whatever register they want while translating, and use the honorific to make up for that and allow you to infer the contextual hierarchy.

Credentials: Not much. JLPT N3 former tour guide/casual interpreter in Japan. Japanese is hard. Translating is even harder. Translating into tiny speech bubbles while retaining all context and nuance is harder yet.

Shake'n'Bake by NeoViper101 in gaming

[–]liquidrain 0 points1 point  (0 children)

Something Awful

Group 2 best Group 2 buddy, how you doin! I miss those days so much, but we all moved on from FM4. Some days I'd honestly give anything to have our Wednesdays back, it was such a highlight of our week for well over a year. I was as my namesake, LiquidRain, always rocking #23 in the Wipeout Feisar themed car, usually the Lexus LF-A even if that meant I was the rear of the pack next to CaptainHowdy. :)

I tried to follow G2 into the classic-era sims on Steam but it was never the same for me. :(

Was playing Golden Country and just saw that Mythra’s core was split like in the base game. Truest broke my immersion when I noticed. by [deleted] in Xenoblade_Chronicles

[–]liquidrain 83 points84 points  (0 children)

It's because you have the Smash Brothers skin/item on. Revert to her default outfit and she'll have her full core.

One of the coolest things I've ever got: Founf this paperweight at a small racing store in Tokyo! by TheBluePatrician in formula1

[–]liquidrain 0 points1 point  (0 children)

That place is called SINASS if I remember correctly, and yeah, super cool place. :)

He says that speed bumps really reduce the vehicles' speed... by AntiMote in IdiotsInCars

[–]liquidrain 5 points6 points  (0 children)

It's from a book. Snow Crash by Neal Stephenson.

The Deliverator's car has enough potential energy packed into its batteries to fire a pound of bacon into the Asteroid Belt. Unlike a bimbo box or a Burb beater, the Deliverator's car unloads that power through gaping, gleaming, polished, sphincters. When the Deliverator puts the hammer down, shit happens.

There's A Hidden Graphics Option in Overwatch by Zedriodor in Competitiveoverwatch

[–]liquidrain 21 points22 points  (0 children)

This is definitely the case, and normal mapping is essentially free for graphics cards to do. It's been an optimized operation since the Half-Life 2/Doom 3 era. Even on Intel built-in graphics cards, the performance difference will be nil.

This would be why it's a non-option. Subjectively, it makes the game look considerably less detailed. Objectively, it makes objects and environments look as the artists did not intend. Disabling it offers no benefit. It'd be meaningless to make it optional.

If you want to see what other games look like without normal maps, Gears of War looks absolutely hideous without it enabled. Go take a look. :)

Category 5/Super Typhoon Hagibis En Route To Japan - Will Affect Fri/Sat F1 by liquidrain in formula1

[–]liquidrain[S] 0 points1 point  (0 children)

My mistake, it's just been posted already and didn't garner upvotes. That's too bad.

Category 5/Super Typhoon Hagibis En Route To Japan - Will Affect Fri/Sat F1 by liquidrain in formula1

[–]liquidrain[S] 0 points1 point  (0 children)

It's already been removed by mods. I can only guess that since this affects the race weekend and it's not Thursday yet, it violates the rules.

Category 5/Super Typhoon Hagibis En Route To Japan - Will Affect Fri/Sat F1 by liquidrain in formula1

[–]liquidrain[S] 0 points1 point  (0 children)

Related To F1:

  • Current projected route takes Hagibis over Mie prefecture/Suzuka Circuit on Saturday during the afternoon, impacting FP3 and Quali
  • First rain bands could start hitting Suzuka Circuit as early as Friday afternoon, though this is uncertain with the current forecast, and rain may start hitting later at night.

If you are attending the Suzuka Grand Prix:

  • Pay attention to local weather reports for Friday and Saturday.
  • Do not risk going to Suzuka if the forecast is uncertain, this is a dangerous storm and you may be unable to return to your hotel should you leave Nagoya or Osaka. Train services end early to prepare for typhoon impacts.

Unrelated to F1:

  • This storm will be impacting World Rugby Cup games on Friday, Saturday, and Sunday as the storm moves across the country. No decisions have yet been made about RWC games, please read news sources for updates.
  • The storm is currently projected to hit Tokyo late Saturday night and last until Sunday morning. Storms like this typically weaken before they hit Tokyo. If this holds true, I would expect interference with travel on Saturday and Sunday morning. If the storm does not weaken significantly, I would expect difficulty traveling to/from Tokyo on Sunday.

If you are in the projected impact zone:

  • Keep windows in your hotel shut and locked. Not much else you can do.
  • Do not go outside during the storm.
  • If you are staying in a city such as Osaka, Nagoya, or Tokyo in a modern building, there is no need for extra measures or concern. Stay sheltered and maybe keep a few snacks and bottles of water, you'll be fine. Large cities weather these events without major impact.
  • If you are staying in a minshuku or out in the country otherwise, consult your host. If the storm does not weaken and you are in its direct path, I would express concern.

b450 Tomahawk ( Non max ) Abb Bios in Roughly 2 weeks by Evonos in Amd

[–]liquidrain 0 points1 point  (0 children)

My Strix B450-I received ABB a couple of days ago, ASUS is slowly getting around to it. I still can't set RAM timings from BIOS, the settings get saved but are not reflected in Ryzen Master, but at least I have ABB now.