Our News Team @ 11 with host Snot Flickerman


Yes, I can hear you, Clem Fandango!

  • 39 Posts
  • 1.99K Comments
Joined 2 年前
cake
Cake day: 2023年10月24日

help-circle
  • Snot Flickerman@lemmy.blahaj.zonetoTechnology@beehaw.orgNeedy Programs
    link
    fedilink
    English
    arrow-up
    15
    arrow-down
    1
    ·
    3 天前

    All of this is so on the nose except the updates bit.

    Sorry, mate, but if you skip an update because you don’t feel like keeping up and it’s because there’s a massive security flaw that leaves your PC up to easy compromise, that’s genuinely a bad thing.

    Yeah, most times updates are just new features but if you’re not paying attention you have no idea if it’s a feature update or a security update, do you?

    If only you have physical access to your computers and they’re firewalled properly sure, maybe it’s safe enough, but the vast majority of people don’t have things firewalled properly at the very least.

    I don’t know, that’s the only bit that seems a bit short-sighted to me, especially when it comes to more casual users.


  • Snot Flickerman@lemmy.blahaj.zonetoSelfhosted@lemmy.world!@$& Homelab Networking
    link
    fedilink
    English
    arrow-up
    16
    arrow-down
    1
    ·
    edit-2
    3 天前

    When you do it for work, you log what you have changed each time you make a change to try to fix it, and you log what you revert, so you can keep track of what you have tried, what worked, and what didn’t and have a clearer idea of what the solution was.

    Sometimes it really does take a while to nail down though, and sometimes it isn’t entirely clear why what worked worked. Especially if you’re a junior network engineer without as much experience.















  • It’s quite true, for example, they were one of the first companies to make successful inroads in selling video games in Russia back in the day. Other companies avoided it due to rampant piracy of games in Russia, but Valve successfully (at the time) provided a service and price point that made it more attractive to many Russians than piracy. Being decent to customers is indeed a viable business strategy, and up until the 1970’s was sort of the norm for business (not entirely, but far more than now). It wasn’t until then that businesses became far more extractive from their customer base than trying to build better products for customers.

    However, they were also pioneers in certain aspects of gaming that have become detrimental to consumers, such as loot boxes and digital marketplaces. They have done their best to manage and regulate those within their own walled garden, but they have taken a hands-off approach to gambling on Steam marketplace items that takes place on websites outside of Steam (which to an extent is fair since many of them exist in countries where Valve would have very little success in taking them down in any way).


  • While all that is indeed good, we shouldn’t have to rely on the benevolence of the wealthy to be able to have a better world. No offense, but that kind of stuff should be paid for by taxation. He is doing some good here, but it’s also his pet project, his choice where the money goes, no one else, no input from society at large. It’s still overall not a real great thing, because it means that we have to just hope that billionaires have pet projects that help society and the earth at large. The majority of them don’t. Hell, Peter Thiel and Elon Musk think the future is for digital-post-humans and the things they are trying to do “for the future” are revolving around a plan where humans as we know them effectively become an extinct species, which is inherently elitist and definitely not beneficial to overall society since it means they effectively don’t care if any of us die to achieve it. Just because Newell has better values than the rest doesn’t mean the situation doesn’t still suck ass.




  • There’s a few different ways for you to probe for info on your USB devices:

    lsusb - lists pretty much everything usb related, including root hubs on your motherboard

    For a more readable lsusb output you can lsusb -v | grep -E '\<(Bus|iProduct|bDeviceClass|bDeviceProtocol)' 2>/dev/null in my experience it can be helpful to slap a sudo on the beginning as well because sometimes certain devices can’t be polled without root privileges.

    usb-devices - similar to lsusb but produces much more detailed (but less human readable) information

    find /sys/bus/usb/devices/usb*/ -name dev - produces a list of where the system saves information on usb devices. Each of the listed folders will hold a lot of files with a wealth of information on each usb device, but be very careful and do not edit these files.

    You can also do this to see what the system is doing in the background and then try plugging and unplugging devices from the offending usb ports:

    watch "dmesg | tail -20"

    You’ll at least be able to see if the system is registering anything at all when trying to use those ports, or if it’s as though the system doesn’t see them at all.

    I have a similar issue on my Lenovo ThinkBook but the ports don’t work in any OS despite being enabled in the UEFI. I still haven’t figured out what is wrong with them, but it seems they may just be toast. Thankfully the USB-C ports still work and I can just connect a hub to one of those.