• 0 Posts
  • 251 Comments
Joined 2 years ago
cake
Cake day: July 3rd, 2023

help-circle
  • I forgot the Sidewalk is a thing. While that tech does kind of do what OP was saying, Sidewalk is limited to only Amazon Sidewalk compatible devices, like the echo line and ring. Just at a quick glance, there are no smart TVs that can connect to that network.

    That said, it is an opt out service, which it awful. No smart TVs will connect, but I’d recommend disabling for anyone that uses Amazon devices.


  • Yea, this paragraph feels like fear mongering. I’m not saying OP didn’t see that somewhere, but from a tech standpoint, the TV still has to authenticate with any device it’s trying to piggy back off the wifi for. Perhaps if there were any open network in range it could theoretically happen, but I’m guessing that it’s not.

    I do remember reading that some smart TV was able to use the speakers as a mic to record in room audio and pass that out if connected. It may have been a theoretical thing but it might have been a zero day I read about. It’s been some years now.



  • There are the obvious options that can’t work due to the general mode anti cheat software, but over the past 1.5 years, I’ve only had a couple of steam games where I had to tweak something because it didn’t work out the gate. Every major title I’ve played worked first try.

    I tried Linux a couple times over the bast 20+ years and it was still too raw for me. Now, it just works for me. I’m by no means a Linux guru but I am a computer smart guy. I setup a laptop with Mint for my brother who knows the bare minimum about computers, and he’s had no issues using it. The progress made over the past decade has been wildly positive.




  • Code readability is important, but in this case I find it less readable. In every language I’ve studied, it’s always taught to imply the previous condition, and often times I hear or read that explicitly stated. When someone writes code that does things differently than the expectation, it can make it more confusing to read. It took me longer to interpret what was happening because what is written breaks from the norm.

    Past readability, this code is now more difficult to maintain. If you want to change one of the age ranges, the code has to be updated in two places rather than one. The changes aren’t difficult, but it would be easy to miss since this isn’t how elif should be written.

    Lastly, this block of code is now half as efficient. It takes twice as many compares to evaluate the condition. This isn’t a complicated block of code, so it’s negligible, but if this same practice were used in something like a game engine where that block loops continuously, the small inefficiencies can compound.


  • BassTurd@lemmy.worldtoScience Memes@mander.xyzResources
    link
    fedilink
    English
    arrow-up
    13
    arrow-down
    2
    ·
    2 months ago

    That’s fair. My take was shallow and I was thinking more from personal experience. I’m ~200lbs and burn over 100 kcal every mile I run, and am a distance athlete. If I jog 6 miles or bike 20+, I have to replace that for proper recovery.

    I shouldn’t say most people, but a large amount of people need more than 2100 kcal if they are active.


  • BassTurd@lemmy.worldtoScience Memes@mander.xyzResources
    link
    fedilink
    English
    arrow-up
    22
    arrow-down
    7
    ·
    2 months ago

    I’d argue that’s a downgrade for most people. I personally exceed all of those bullet points and the idea of coming close to most of them sounds like Hell to me. If it meant 8.5 billion people met those standards, I could make the sacrifice, but it would be awful.

    Can you imagine if everyone you met was wearing a 3 days dirty shirt? Do other not sweat? And 2100 kcal per day is not safe or sustainable for almost anyone that exercises regularly.




  • Apart from the bias, that’s just bad code. Since else if executes in order and only continues if the previous block is false, the double compare on ages is unnecessary. If age <= 18 is false, then the next line can just be, elif age <= 30. No need to check if it’s also higher than 18.

    This is first semester of coding and any junior dev worth a damn would write this better.

    But also, it’s racist, which is more important, but I can’t pass up an opportunity to highlight how shitty AI is.






  • The first time I setup Arch from scratch (no archinstall) it took me about 7 hours to get a working desktop environment. A lot of that was figuring what specifics I wanted, like boot loader and desktop environment. If you aren’t already familiar with Linux architecture, the kernel, and basic terminal commands, you will be spending a lot of time on the Arch wiki. If you do already have a decent understanding of these concepts, then you will also spend a lot of time on Arch wiki.

    Honestly, based on this response from you, Arch isn’t this distro for you. It’s work to setup, it’s work to configure, and it’s work to maintain. I jumped straight in myself with basically no Linux experience but about a decade of experience as a sys admin and power user for Windows. It’s been a couple of years and I have no desire to even branch out because I enjoy the tinkering and resources.

    I have an Nvidia GPU and the first 6 months I had issues, but there have significant improvements and now I almost never have any GPU related.

    An example of needing to fiddle with things, I couldn’t get audio to pass through my HDMI the other day when hooking my laptop up to a TV. I had to install a couple missing packages and then I was able to see the HDMI option in my sound settings, so then I could sell that as my output. Arch won’t ever tell you what you need, it just won’t work, so you have to read and figure it out yourself. Fortunately, the community is huge and the Arch wiki is fantastic. There are some shitty neck beards that like to gate keep, but ignore them and your experience will be better.