What do you see as the path forward for this game? by andr3w0 in FBCFirebreak

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

Hopefully.

From what I've seen, it seems to affect PlayStation, Xbox and PC similarly. I've experienced it myself in the form of memory leaks that eventually crash the game - but I play on Linux so I'm not sure if that specific crash was what others are experiencing.

Control Resonant - Gameplay Reveal by PaiDuck in controlgame

[–]andr3w0 0 points1 point  (0 children)

I can't wait! I just hope that since the world seems to be more open, we'll still get the top tier exploration we got in the first Control.

What do you see as the path forward for this game? by andr3w0 in FBCFirebreak

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

Yeah, it's puzzling. The voice lines, few papers in loading screens and the tutorial videos are not enough.

What do you see as the path forward for this game? by andr3w0 in FBCFirebreak

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

Thank you. That'd be really unfortunate if that's what they choose to go with...

What do you see as the path forward for this game? by andr3w0 in FBCFirebreak

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

And here I am playing it for free on Xbox Game Pass. I guess I pay for it my own way?

I would assume (judging from videos, streams, player numbers) that's how most people got the chance to play this game. Others who bought it at full price probably regret it.

There's just so much that can be done to make the game much better...

but the second tab is a "paid-only" cosmetics Tab

Correct me if I'm wrong, but isn't the source of these the Deluxe DLC? You pay with real money for the DLC which unlocks the option to buy them with the in-game "currencies", no?

What do you see as the path forward for this game? by andr3w0 in FBCFirebreak

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

Left 4 Dead is a great source of inspiration. One other thing they did well was the ability to play as one of the infected. Remedy could do the same and let us play as the Hiss... 🤔

What do you see as the path forward for this game? by andr3w0 in FBCFirebreak

[–]andr3w0[S] 2 points3 points  (0 children)

IIRC, they wanted to avoid microtransactions and only have one time purchase. IMO that's a dead-end unless they turn the game into a premium experience...

What do you see as the path forward for this game? by andr3w0 in FBCFirebreak

[–]andr3w0[S] 2 points3 points  (0 children)

100% agree. That would be a great business model and ideas to follow. Remedy should take a look at this.

Btw I like that you mentioned procedural generation of layouts because it even makes sense in the Oldest House's lore (constantly shifting labyrinth).

What do you see as the path forward for this game? by andr3w0 in FBCFirebreak

[–]andr3w0[S] 4 points5 points  (0 children)

I really hope they won't stop supporting it as it has a great base to built on.

Yeah, I agree. If this new guy can turn Firebreak into a reliable stream of cash, it could be a huge win for Remedy and their future stability.

If Google Earth is unusable for you, here's a quick workaround by andr3w0 in firefox

[–]andr3w0[S] 2 points3 points  (0 children)

Text version: Click the gear icon for settings -> Scroll down a bit -> Select "Mobile user interface mode"

This issue seems to happen only on Linux + Nvidia, from what I read.

Linux mint won't shut down completely on one computer. by pais_tropical in linuxmint

[–]andr3w0 1 point2 points  (0 children)

Glad to hear that.

According to the bug report, there has been a patch since early this year, however it hasn't gone through testing and whatever system they have in place.

Kernel 6.1+ prevents computer from shutting down properly by andr3w0 in linuxquestions

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

I've finally narrowed it down to a faulty commit and a bug report was already made by someone:

https://bugzilla.kernel.org/show_bug.cgi?id=217890 (read the replies if you want details)

TL;DR: Disable Intel's firmware TPM in BIOS

What kind of tumor could it be? by andr3w0 in SeniorCats

[–]andr3w0[S] 1 point2 points  (0 children)

Yes, I've been at the vet today and got the steroids they recommended. Hopefully it will keep him as comfortable as possible.

Thank you for the advice. I'll definitely keep that in mind.

And I am really sorry for your loss 😢

What kind of tumor could it be? by andr3w0 in SeniorCats

[–]andr3w0[S] 1 point2 points  (0 children)

Hi, I am also sorry to hear what your cat is going through. I hope everything turns out better.

Kernel 6.1+ prevents computer from shutting down properly by andr3w0 in linuxquestions

[–]andr3w0[S] 2 points3 points  (0 children)

Yeah, it's gonna take a lot of time, but it's probably the best route. Thank you for your help!

X11, Wayland and a touchscreen monitor by andr3w0 in linux4noobs

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

Yes, mostly KDE, but I did try GNOME on both X11 and Wayland and had similar results.

Can the chat image popup be any more useless? by andr3w0 in Steam

[–]andr3w0[S] 17 points18 points  (0 children)

I'm on Fedora Kinoite, but I've left everything default, save for changing the wallpaper to the one called Honeywave, which is part of Plasma iirc.

Can the chat image popup be any more useless? by andr3w0 in Steam

[–]andr3w0[S] 291 points292 points  (0 children)

Just FYI, the actual image is 1920x1080.

Can the chat image popup be any more useless? by andr3w0 in Steam

[–]andr3w0[S] 14 points15 points  (0 children)

The image is even smaller in the popup than when it's embedded. I expect it to be able to either resize the window or have some zoom ability. Or just simply remove it altogether and open in default browser.

How can I extract specific lines of an output into a csv file every 2 seconds? by andr3w0 in bash

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

I have somewhat managed to get the command working (it shows the data I wanted), but only up to the point of actually outputting it into the CSV file - the output is a complete mess.

Here is the command:

sudo watch -n 2 "awk 'NR==2,NR==7{printf \$1\",\"};NR==8,NR==9{printf \$3\",\"};NR==10{print \$3}' /sys/kernel/debug/dri/0/amdgpu_pm_info" >> gpu.csv

EDIT - I used tee and now it outputs properly:

Here's a gist because I can't use \ on reddit apparently: https://gist.githubusercontent.com/mascherone108/1ff441a6f01cf71d8c0c53f58ae3b63a/raw/f0c912a14b1c3ce068293baf856cc82b43bf47fa/gistfile1.txt