She/They

  • 1 Post
  • 63 Comments
Joined 1 year ago
cake
Cake day: June 30th, 2023

help-circle
  • Thank you for answering the question! I am genuinely both trying to make a point and still be open to try new things. To me, there seems to be a real downward turn on UI/UX in a lot of applications these days, corporate included. When they mentioned the bit about supporting corporate, I have a hard time believing they will get very far with that customer group right now.

    I really wish software, especially FOSS, would stop making the UI the afterthought. I try to keep a holistic view when designing things and everyone has a seat at the table. I wonder if projects are boxing themselves in and making it harder for the UI teams to properly integrate, and vice versa? I will happily take criticism and ideas from pretty much anyone, especially outside my immediate teams.

    I am pretty out of the game on that as I spent quite a few years doing controls engineering instead. I am back in Software now and I feel old and a little lost. I graduated back in 2012 and we didn’t have all of these crazy developer roles and more specialized degrees. They were trying to get a Game Design program started when I graduated, and it was supposedly a mess for a few years.



  • All I read is Marketing Tech Speak that sounds no different than anything else that gets advertised in my face. At work, we use Teams. It is a pain sometimes when it gets a little buggy, but integrates into SharePoint/OneDrive and the noise suppression in meetings is pretty awesome. At home I use discord or GChat because that is where all my friends are. I don’t assume I have privacy on any of these platforms and they all work on my phone and computer.

    How is the user experience? Ultimately, give me privacy, but if the user experience and UI don’t give any improvements over the corporate ones, I will have to try it some other time.


  • Long tangent, but I got the Edge or whatever stupid expensive version they have for the extra triggers/levers underneath. I have really small/short palms and don’t have the reach to push all the buttons properly. I wouldn’t be able to play Elden Ring at all without them. I roll and use potions with the levers instead. Even then, it is still painful after a while and some of the contortions I have to do at times can be annoying.

    I have the issue of barely having enough “wrap” with my palm and pinky to grip around the hand things that are angled down a little too much. I absolutely despise that the dpad is one of those rocker pieces underneath instead of individual buttons. I will accidentally do a direction I didn’t intend because I rocked the down button too far to the right. It is because the controller still isn’t straight when I hold it. lt is partially rotated in my hand so I can get a little more reach upwards and it makes the dpad usable. Having to compensate the direction of joysticks is super fun. I basically have to death grip the controller with my right pinky and tightly squeezed palm to keep it stable.

    When that accessible controller came out for the Xbox I was super bummed it wasn’t for all platforms yet. Doesn’t help I would need to have 2 kits to be able to have separate sides like joycons. Joycons have been my favorite controller of all time as I can comfortably hold them. I tried making a proof of concept sort of gel/shredded memory foam cover, which did help, but it didn’t solve the severe pain in my palm, especially the area under my pinky that I use to death grip the controller. After seeing the glove Martina made after she cut off her pinky, I want to try and make a glove next to take the pressure off, improve grip, and sort of brace/support the part of my hand that I keep hurting.

    It sucks that accessories keep getting more expensive. I haven’t had any issues my my edge, but you bet I would be utterly infuriated if it didn’t last when it is almost half the price of the console itself. I have some mechanical keyboards and those things can really get up there in price too. Ergonomic mice are not exactly cheap either. I hate having to use a trackball but so far the only comfortable one is that Logitech one and I have to use the extra angled base it comes with. I game with it.



  • 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


  • You have to walk… barefoot. My feet are messed up and I have some impressive callouses on the balls of my feet. They are a little better after surgery, but recovery sucked. Ultimately, your feet build up protection. Caking on mud probably helped. Animal skins, rudimentary sandals from various plants, and other natural resources could provide extra protection. Unfortunately, we have built an environment made for shoes and evolution is doing the rest. Walking on pavement is not great without shoes. Especially when it bakes. Walking on soil and grass feels a lot better.











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




  • See, when I was in school, they didn’t teach fail fast and if anything they told you not to. Nowadays, we have moved past that nonsense. I gave it a shot about a year ago, and it has made me a better programmer. I am not going to sit there and count braces, but things are a lot easier when you get the error cases over with and out of the way.

    There are always going to be exceptions, but I have personally found a lot of value in using ‘fail fast’, and making more smaller methods that say what they do. I am not always great at that second part, but it is a process. As someone with severe ADHD, it has made it a lot easier to work through problems. Sure, you can end up with more lines of code, but who cares. Compiler should be optimizing most of that shit out anyway.