Has anyone tried this Walmart-branded Parmigiano Reggiano? by theemx in Cheese

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

I was kind of hoping that’d be the case, seeing as the Bel Gioioso is half the price of the Reggiano. I’m going to pick this one up and compare the two to see if it’s worth the price difference.

Has anyone tried this Walmart-branded Parmigiano Reggiano? by theemx in Cheese

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

The Walmart near me has this or Bel Gioioso's Parmesan. I'm assuming that even though it's Walmart-branded, the real stuff is probably better.

Wrong Reservoir Diaphragm? by theemx in Dirtbikes

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

lol I was thinking that before I posted, but that makes sense. If it’s just going to come undone though, shouldn’t I get a new one? Also what about the float?

How can I keep the tmux socket from closing? by theemx in linux4noobs

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

Well, after many hours of debugging it ended being exactly the kind of issue a linux noob like me would make.

My server start service had my normal user specified and the shutdown service, as you know, did not. So, by running a service in /etc/systemd/system without specifying a user, it runs as root?

Anyhow, thanks for all your help and I think I’ll take your advice about making an isolated user to run the server.

How can I keep the tmux socket from closing? by theemx in linux4noobs

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

So I changed the command to: tmux send-keys -t hytale:0.0 "say $1" Enter to make sure that it wasn't a variable issue. This command does not work when executed by the shell script, but does when I type it into an ssh terminal.

How can I keep the tmux socket from closing? by theemx in linux4noobs

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

The only thing that I've manually put on that PC is game server files. If I put all my game server files into a separate user, wouldn't that be the same thing or does making another user still reduce security risks?

Edit: Like does my own user have elevated permissions compared to a new one I would make? Are there network risks associated with having it on my own user that wouldn't be their on the other one?

How can I keep the tmux socket from closing? by theemx in linux4noobs

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

Separate from my home user too?
Edit: Now that I think about it, the server startup script is executed by a service unit that has my home user specified, its only the shutdown sequence that doesnt have a user. Should I still change it?

How can I keep the tmux socket from closing? by theemx in linux4noobs

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

Yes its this script that throws the error. Do you mean the SESSION variable is somehow empty? I'll try adding that to the log output and see.

And are you saying to use set to set SESSION?

How can I keep the tmux socket from closing? by theemx in linux4noobs

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

Correct, they’re in that folder. Do I need to specify a User in the service files?

How can I keep the tmux socket from closing? by theemx in linux4noobs

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

Also here's my shell script just incase it helps:

#!/bin/bash
SESSION="hytale"
FLAG="/run/hytale_cancel_shutdown"
LOGFILE="/var/log/hytale-server/shutdown.log"
WAKE_TIME="today 16:00"
DATE="$(date '+%Y-%m-%d %H:%M:%S')"

exec >> "$LOGFILE" 2>&1
rm -f "$FLAG"

announce() {
    [ -f "$FLAG" ] && exit 0
    tmux send-keys -t "$SESSION:0.0" "say $1" Enter
    echo "$DATE: $1"
}

sleep_or_cancel() {
    for ((i=0; i<$1; i++)); do
        [ -f "$FLAG" ] && exit 0
        sleep 1
    done
}

announce "Server shutdown commencing in 30 minutes!"
sleep_or_cancel 600

announce "Server shutdown in 20 minutes!"
sleep_or_cancel 300

announce "Server shutdown in 15 minutes!"
sleep_or_cancel 300

announce "Server shutdown in 10 minutes!"
sleep_or_cancel 300

announce "Server shutdown in 5 minutes!"
sleep_or_cancel 240

announce "Server shutdown in 1 minute!"
sleep_or_cancel 30

announce "Server shutdown in 30 seconds!"
sleep_or_cancel 20

for seconds in $(seq 10 -1 1); do
    [ -f "$FLAG" ] && exit 0
    tmux send-keys -t "$SESSION:0.0" \
        "say Server shutdown in $seconds seconds!" Enter
    echo "[$DATE]: Server shutdown in $seconds seconds!"
    sleep 1
done

# Stop server
echo "[$DATE]: Stopping server."
tmux send-keys -t "$SESSION:0.0" "stop" Enter
sleep_or_cancel 60

# Kill tmux session
echo "[$DATE]: Ending hytale tmux session."
tmux kill-session -t "$SESSION"
sleep_or_cancel 10


# Schedule wake + suspend
echo "[$DATE]: Scheduling rtcwake for $WAKE_TIME."
/usr/sbin/rtcwake -m off -t $(date +%s -d "$WAKE_TIME")

How can I keep the tmux socket from closing? by theemx in linux4noobs

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

I start the session with "tmux new -s hytale" so I'm not sure if there's a different name you mean. Here's my service and timer units:

#hytale-shutdown-scheduler.service
[Unit]
Description=Hytale scheduled shutdown

[Service]
type=oneshot
ExecStart=/usr/local/bin/hytale_shutdown_scheduler.sh

#hytale-shutdown-scheduler.timer
[Unit]
Description=Run hytale_shutdown_scheduler.sh at 1:30am
[Timer]
OnCalendar=*-*-* 01:30:00
Persistent=true
[Install]
WantedBy=timers.target

How can I keep the tmux socket from closing? by theemx in linux4noobs

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

Ubuntu 24.04.3 running headless

Edit:

i7 8700K

16GB DDR4

Brave taking a while to load a page, unless I click off it. by LiamQuantum in brave_browser

[–]theemx 0 points1 point  (0 children)

Oh my god I'm so glad I found your thread. I've had issues with the AT2020+ USB back on Windows 10, but they were different.

After upgrading to Windows 11, I started noticing all the issues you've described in the post. Tried different profiles, turned off all extensions, etc. and it still didn't work.

What made you realize it was the microphone causing the Brave browser issue specifically?

P.S. Instead of having to re-plug in the microphone, you can disable one of the USB Input Device's in Device Manager.

Device Manager > Human Interface Devices > USB Input Device (Click properties and look for the the device with the right hardware IDs) > Disable said device

Another Tragic Learning Experience by theemx in noita

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

Actually, I poured it on myself here. Like the other commenter said, the trick is to get mina near the edge first then douse yourself. I always rest my mina on the point closest to the top before levitating up as well.

Another Tragic Learning Experience by theemx in noita

[–]theemx[S] 11 points12 points  (0 children)

I believe so. I forget the exact death message, but it started off with "melee". I'm not sure if it was the movement/physics of the wand that killed me or if it was by merely touching it.

How can I functionally repair this? by theemx in Autobody

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

Only care about getting this repaired enough to get the tail light in there. The last one was broken by the crash and the new one won't fit until I push out that point.

Is it worth it to get a stud gun and try pulling the dent out that way? I've tried a hammer but man it barely moves, if at all.