She/They

  • 0 Posts
  • 48 Comments
Joined 1 year ago
cake
Cake day: June 30th, 2023

help-circle

  • I miss HEB sometimes back from when I was a kid. They were trained to bag things “correctly” and was one of the few places that didn’t drive my dad insane. They banned plastic bags here shortly before Covid and I have used self checkout since with the nice big reusable ones that I can fill how I want. They would barely fill one bag and then demand another or start pulling out flimsy paper bags that will tear while trying to get my groceries up the stairs. I would bring 3 and it still ended up with me re-bagging it all and dealing with them saying I didn’t have enough bags.




  • It works amazing if your throat or sinuses are infected. I have taken 800mg of pills and barely take the edge off. 100-200mg of children’s liquid ibuprofen is complete relief and it tastes good. Once in a while I will get a bad sinus infection that ends up in the back of my throat and the pain is so bad I can’t swallow water. I got the trifecta once that included my ears and I had to get some drops from the doctor.






  • 🐍🩶🐢@lemmy.worldtoMemes@lemmy.ml2 life pro tips in one meme!
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    2 months ago

    Ok. Let’s do this! If you have a 4 cup pyrex/microwavable measuring cup, it is much easier.

    • Sauce pan with a lid. Nonstick is fine.
    • 2 cups of rice using dry measuring cup
    • 3 cups of water
    • Salt if using unsalted butter
    • 2 tablespoons of butter
    1. Put empty pan on stove and set heat to medium-high. If these are steel pans, stick to medium. Go towards high if nonstick as it takes a bit to heat up.
    2. Put water and butter in microwavable cup and throw it in the microwave until it starts to simmer, maybe 3 minutes? Depends on microwave and dish.
    3. While you are waiting on microwave, put dry rice in pan and gently stir/fold. They will start to turn white, but don’t let them burn. If you need to take the pan off and turn the heat down, do it. We are just preheating the rice and pan up. Add salt if needed.
    4. Get ready. As soon as that water is hot enough to boil or close to, take it out, pour it in the pan. It will be violent.
    5. Do a quick stir, throw the lid on, and turn the heat down to the lowest setting. The water should fully cover the rice.
    6. Walk away. The bottom might toast a little, but that is fine as long as it doesn’t full on burn.

    After 20 minutes or so, you can do a real quick check and if it looks kind of wet, throw the lid back on and wait.

    At this point, you should have perfectly acceptable rice. Take the lid off, stir the rice with a more folding motion to let it steam any additional moisture out.






  • Yeah, on the rpi thing. I know someone who uses something like that for EverQuest. The gist is it looks for monster spawns and can display them on a map instead of camping a spot for over an hour, sometimes more, to get an item you need. The amount of people who use it on some of these servers is supposedly pretty high and it is just looking at network packets I believe. This is a case where I can find it acceptable, especially for an old game that is mostly played by people who have jobs.

    I can’t fathom cheating though in online games and as a woman I have zero desire to play FPS games with a bunch of immature assholes that will torture me if they find out my gender. The only online FPS I played as a kid that was a positive experience was Serious Sam 1 & 2. A lot of German players I remember. Only other online PVP I liked was in Guild Wars 1.


  • That was the best day ever when it went down a few years ago while I was doing an install of an Amazon site. They have some “test” software that we have to run to validate the system and it was completely down. Still got some things done that day, but it was utterly hilarious to watch all of the Amazon personnel run around in a panic for a few hours. Fucking Prime trucks stuck on the side of the road with no instructions on what to do next. Utterly precious.





  • Sorry, didn’t make it home until today and not sure if you get notifications on edits. You will need a monitor and keyboard hooked up to your server as you will not have ssh access until the network config is “fixed”. I would do the below with the GPU removed, so you know 100% that your networking config is correct before mucking about further.

    Step 1 - Create 99-default.link file

    Add a /etc/systemd/network/99-default.link with the below contents.

    # SPDX-License-Identifier: MIT-0
     #
     # This config file is installed as part of systemd.
     # It may be freely copied and edited (following the MIT No Attribution license).
     #
     # To make local modifications, one of the following methods may be used:
     # 1. add a drop-in file that extends this file by creating the
     #    /etc/systemd/network/99-default.link.d/ directory and creating a
     #    new .conf file there.
     # 2. copy this file into /etc/systemd/network or one of the other paths checked
     #    by systemd-udevd and edit it there.
     # This file should not be edited in place, because it'll be overwritten on upgrades.
    
     [Match]
     OriginalName=*
    
     [Link]
     NamePolicy=mac
     MACAddressPolicy=persistent
    

    Step 2 - Reboot and find new name of NIC that will be based on MAC

    I forget if you have to reboot, but I am going to assume so. At this point, you can get the new name of your nic card and fix your network config.

    1. ip link should list all of your nic devices, both real and virtual. Here is how mine looks like for reference, with the MAC obfuscated:
    1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
        link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    2: enxAABBCCDDEEFF: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq master vmbr0 state UP mode DEFAULT group default qlen 1000
        link/ether AA:BB:CC:DD:EE:FF brd ff:ff:ff:ff:ff:ff
    3: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
        link/ether AA:BB:CC:DD:EE:FF brd ff:ff:ff:ff:ff:ff
    

    Step 3 - Fix your network config and restart network manager

    You will need to edit your /etc/network/interfaces file so the correct card is used.

    1. Make a copy of /etc/network/interfaces, just in case you mess something up.
    2. sudo vim /etc/network/interfaces (or whatever text editor makes you happy) It will need to look something like below. I have to have DHCP turned on for mine, so your config likely uses static. Really all you need to do is change wherever it says enp yada yada to the enxAABBCCDDEEFF you identified above.
     source /etc/network/interfaces.d/*
    
     auto lo
     iface lo inet loopback
    
     iface enxAABBCCDDEEFF inet manual
    
     auto vmbr0
     iface vmbr0 inet dhcp
     #iface vmbr0 inet static
     #address 192.168.5.100/20
     #gateway 192.168.0.1
         bridge-ports enxAABBCCDDEEFF
         bridge-stp off
         bridge-fd 0
    
    1. Restart your networking service. You shouldn’t need to reboot. sudo systemctl restart networking.service

    Step 4 - Profit?

    Hopefully at this point you have nework access again. Check the below, do some ping tests, and if it doesn’t work, double check that you edited the interfaces file correctly.

    1. sudo systemctl status networking.service will show you if anything went wrong and hopefully show that everything is working correctly
    2. ip -br addr show should show that the interface is up now.
    lo               UNKNOWN        127.0.0.1/8 ::1/128
    enxAABBCCDDEEFF  UP
    vmbr0            UP             192.168.5.100/20 
    

    At this point, if all is well, I would reboot anyways, just to make sure. If you add any GPUs, sata drives, other PCI device, disable/enable wifi/bt in the BIOS, or anything else that changes the PCI numbering, you don’t have to worry about your NIC changing.