static09

joined 2 years ago
[–] static09 3 points 1 week ago* (last edited 1 week ago)

Some context from the article was left out of OP's summary:

The department said inmates would work cutting fire lines and removing fuel from behind structures to help slow the spread of the blazes - as well as serving in wider support roles at the camps, including cooking, laundry and water treatment plant operation.

Some further, even more important context from the original CBS article mentioned in OP's article can be found here:

https://www.msn.com/en-us/news/us/prison-inmates-among-those-fighting-the-los-angeles-wildfires/ar-BB1rbARo

[–] static09 8 points 2 weeks ago (2 children)

Warframe has gotten so much better since 2020. I highly recommend coming back for a bit just to do the new quests. All your stuff will still work great in the new content. In fact, it'll work better now that other damage types are way more viable. No longer have to mod everything viral/slash/heat.

[–] static09 1 points 3 weeks ago (1 children)

You're free to be overwhelmed, whelmed, or underwhelmed in any country! It's just uncommon to remove any prefix from whelm.

[–] static09 1 points 3 weeks ago

There's also overwhelm as well! Cool thing about most prefixes in English is that they can be changed out for other prefixes or completely removed. Though, one wouldn't quite hear somebody say antiwhelmed there's still nothing against it.

[–] static09 5 points 3 weeks ago

Looks like they've linked a source to a website called statcounter. The graph appears to be smoothed or normalized, but is effectively the same data for the purpose.

[–] static09 24 points 1 month ago (9 children)

In Balatro, the Ante is the boss's health and chips are the amount of damage done to a boss. The poker hands are just attacks done to the boss's health. They use poker terms because it's inspired by card games, not because there's gambling.

[–] static09 5 points 2 months ago

This has been my experience too. The community moderation tools on top of the tools available to moderate my own feed are leagues ahead of other platforms. Being able to temporarily block keywords feels really awesome in avoiding dumb shit that can blast through social media.

[–] static09 3 points 3 months ago

The github repo mentioned this wiki article for multiplayer performance tweaks. Did you run through this list and make the recommended changes?

https://satisfactory.wiki.gg/wiki/Multiplayer#Engine.ini

[–] static09 7 points 3 months ago

They aren't a junior dev yet. They're looking for a job as a junior dev and have been unsuccessful at finding a job as a junior dev.

[–] static09 4 points 3 months ago

SeaTools is a long-standing, trusted tool for HDD testing. I always have a bootable drive with the SeaTools bootable image on me for diagnosing hard drives.

https://www.seagate.com/support/downloads/seatools/seatools-legacy-support/

Keep in mind that testing a failing drive will likely make a failing drive worse. For your use-case this is fine, but for anyone else looking to test drives, please create a backup image of the drive prior to testing.

[–] static09 2 points 3 months ago* (last edited 3 months ago) (1 children)

To do some further testing, I added a mariadb container to the pod, added mycli to the alpine container, and was able to connect to the mariadb database from the alpine container.

podman run -dt --pod testpod --restart unless-stopped --name testdb --env MARIADB_ROOT_PASSWORD=a_secret_pass \
--volume:/fake/path/databases:z docker.io/library/mariadb:11.2

This command is all one-line, but I added a line break for readability. I used MariaDB 11.2 because that's what I had on-hand from another project. Note the ":z" in the volume -- this is due to SELinux needing to give podman access to that directory.

podman exec -it alpine apk add mycli

podman exec -it alpine mycli -u root -p a_secret_pass

This connects to the database successfully and, as you can see, looks as if the database is running right within Alpine; however, the database is not accessible outside of the pod.

It's also worth noting that I had some trouble initially accessing a webapp from outside of my VM which was hosting the container. This was due to firewalld blocking the connection. Since I'm using AlmaLinux with SELinux, I had to add a firewalld rule to allow traffic on port 8080.

edit: 1) a capital was missed | 2) added info about firewalld

view more: next ›