She/They

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

help-circle

  • 🐍🩶🐢@lemmy.worldtoMemes@lemmy.ml2 life pro tips in one meme!
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    21 hours 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.





  • Since I refuse to have Teams and Outlook start on boot, I may have accidentally forgotten to open my email for 6 weeks… Most people just send me a message on Teams anyways.

    Also, spam from HR. I am sorry, but your bullshit emails on senseless activities is not being read and immediately binned. The amount of spam emails I get from people in the company is astounding. At my old job I may have taken great joy in reporting each one of them as spam out of spite.


  • No idea about which specific type of business it is, but keeping that history long term can have some benefits, especially to outside people. Some government agencies require companies to keep records for a certain number of years. It could also help out in legal investigations many years in the future and show any auditors you keep good records. From a historical perspective, it can be matched to census, birth, and death certificates. A lot of generational history gets lost.

    Companies also just hoard data. Never know what will be useful later. shrug


  • This reminds me a lot of AMRs (Autonomous Mobile Robot), except the Omron ones I have been working with are super dumb. I wish they would honk or give better indication that they are incapable of parking or going around each other. Those Waymo cars at least seem to be able to figure it out.

    Not to say all AMRs are that bad. I have seen some really good systems, but it all comes down to the software and configuration. I know this is Fuck Cars, but the technology that goes into those Waymo is an amazing feat of engineering. I am amused that they didn’t think too hard on the sound pollution and disturbances.



  • I think this view is a little short sighted. I am glad that you don’t seem picky about your peripherals, but they are very important to others. As someone with a disability, if my mouse didn’t work on Linux, I wouldn’t even bother trying. I have spent a lot of money on peripherals and them working in Mac and Windows, but not Linux would be utterly rage inducing. It is irritating enough that I can’t adjust the dpi in Linux, but it is at least usable. I am still salty that every single pair of headphones I own use proprietary codecs that are not supported.

    I absolutely do not blame anyone for not using Linux if their peripherals do not work. I get that it is the “fault” of proprietary drivers. Unfortunately, some devices are not popular enough or too difficult for someone in the Linux community to want to work on it. I don’t blame the community either. However, telling someone they can’t use their mouse or keyboard the way it was intended isn’t going to convince anyone to use Linux.

    My point is, hardware costs money, is a physical device that you touch for hours at a time, and is configured to make your life easier. Tactile and ergonomic comfort is important. Macros, lights, and dpi settings are important to some people. For me, it is just dpi and smooth scrolling. Not everyone is happy with a cheap mouse and keyboard or wants to throw perfectly functional electronics in the bin.








  • 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.




  • 🐍🩶🐢@lemmy.worldtoMemes@lemmy.mlJust use Firefox
    link
    fedilink
    English
    arrow-up
    8
    ·
    4 months ago

    Thank you. I admit I don’t use Firefox right now due to issues I ran in to during my trial run earlier this year. Once the battery drain issues are fixed on the Android client I can at least switch back to it on my phone.

    My company surprised me last week as we did an install and things didn’t work right in Firefox for the customer. My boss and the team are committed to fixing it and doing better on browser testing. There was not a moment of hesitation on this decision. We of course told them to use Edge, Safari, or Chrome in the meantime, but by no means are we throwing it on the bottom of the “fix” pile. Team is almost done and ready to send to QA. Super proud.