• 1 Post
  • 23 Comments
Joined 1 year ago
cake
Cake day: October 2nd, 2023

help-circle


  • Unless the oven auto starts on close I don’t see how this could have happened with the victim alone. I think ours would idle when closed but they would be already on (warm enough to alert/stop someone walking inside). Like it’d have to be a shit design if an employee could just close themselves inside one and the oven starts some sort of program or turns on due to a schedule. Very interested to hear what the investigation turns up. Feels very much like someone might be up for manslaughter/ neg homicide.

    Ex: She was inside cleaning and an employee wearing ANC headphones closed it and hit it the on. Or someone closing her in there as a “prank” not realising the danger.




  • I have seen Nix come up quite a bit and have been tempted to try it. I’ve rolled with Arch before so I was considering going back to it but maybe something new be go.

    The OS itself I don’t back up outside of mirroring. I run an immutable OS (every reboot is like a fresh install). I can redeploy from git so no need to backup. I have some persistent BTRFS volumes mounted where logs, caches, and state go. Don’t backup, but I swap the volume every boot and keep the last 30 days of volumes or a min of at least 10 for debugging.

    Something like this has always interested me. I remember reading about doing similar with Windows. Not so much it being immutable so much as having a decent starting image that you load on any device you want with all your programs ready to go.

    Runs Arrs, Jellyfin, Monero node, Tor entry node, wireguard VPN (to get into network from remote), I2C, Mullvad VPN (default), Proton VPN (torrents with port forwarding use this), DNS (forced over VPN using DoT), PiHole in front of that, three of my WiFi vlans route through either Mulvad, I2C, or Tor. I’ll use TailsOS for anything sensitive. WiFi is just to get to I2C or Onion sites where I’m not worried about my device possibly leaking identity.

    Do you have a guide or ten you used for all this perchance? Unraid has stuff like trashguides and space invader one. Especially the DNS part onwards? If not it’s cool I have Mullvad set up and Pihole with my current setup so I’ll be able to work it out. This is all very compelling for me to try out (I should really have learned about wireguard by now). Thanks a lot for such an interesting and informative write up!



  • For entry homelab stuff I still think it’s great. Literally just smacked it into an old HP server (now my cannibalised gaming builds) and it was good to go. However I was pretty inexperienced then (hence why I think I may have borked something fundamentally). Now days I’m more comfortable which getting under the hood hence looking for alternative. Definitely would still suggest Unraid to some though.

    I was tempted to do something like an Ubuntu server. I figured all my NAS stuff is run through docker anyway. Cheers I’ll check out dockge





  • CTDummy@lemm.eetoJokes and Humor@beehaw.orgBBQ
    link
    fedilink
    arrow-up
    12
    ·
    3 months ago

    I’ve dated people who don’t eat meat. I feel like by and large they understand what a BBQ is. As others have mentioned I always do some sort of salad or vegetable based dish just because it’s good to have some greenery in general. Failing that surely there’s decent vegan mayo by now. You show me someone that says they don’t like potato “salad” and I’ll show you a damn liar.

    I’ve had plenty of vego/vegan mates be cool at these sort of events. Yet to see the hoard of gate crashing vegans turn up to a BBQ demanding specially catered food that they could probably guess won’t be present.


  • Lemmy just allows random bot that are 7 days old to start auto posting on political post as a self declared fact checker?? I’m probably missing a community announcement but what’s to stop me writing a “fact checker” and loading it up with my biases on particular outlets.

    Got it the mod rammed it through despite the announcement thread being full of pushback about MBFC. Good stuff.

    Bonus galaxy brained mod reply to pushback:

    Overwhelmingly negative? Those are the 24/7 negative users. We do anything: Those guys: THIS IS IS A THREAT TO DEMOCRACY So you stand alone in that statement. See the post vote score.


  • Honestly, expect shit to go wrong. Sounds like you’ve gotten all the important shit done. You’ve got a plan, you’ve been working towards it for a while and seems like your partner is into it as well.

    We had a similar trip a few years back, first time overseas for some of us. Lots of planning and preparation went into it. Then our trip planner fucked up one of our bookings in Paris. Meaning we almost missed out on doing some tour that ended on the Eiffel Tower. A couple of times trains were missed/delayed.

    The only times the trip strayed away from being the fantastic trip it was is because people let small (and sometime not so small, to be fair) disappointments or missed expectations turn into high stress/anxiety events. You’re going overseas, shit may go wrong; be ready for it and be cool with it (while also making sure you have travel insurance). Also take time away to do shit yourselves that the other may not want to do and always have set meeting times and locations to check in if you do.







  • Docker is great because you can install something and all the shit it needs is installed and runs in that container. It’s good for a multitude of reasons mine are:

    1. No more installing a dependency, tool or library alongside a program that fucks up something else. No more shit breaking because you installed the latest python but some other program breaks if you move beyond 3.10 (and you forgot to use venv I guess).
    2. Somewhat a follow on from 1 but this makes for great functionality with self hosting. I can run a couple docker compose/build command and build/rebuild the containers anywhere I need them. I can test a container on a windows computer to see if it does what I want and works as intended and then spin the some container up on my media server, even if it’s a different OS. I have a bunch of them on my home server and it and it’s great being able to just plug in the port number of the other containers they need to talk to, if any, and that’s all. One container breaking doesn’t break everything else.