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

help-circle
  • Is there any benefit at all

    Maybe! There’s at least some scientific evidence that chemical compounds in mushrooms can have medicinal effects.

    Bias disclaimer: I put a lion’s mane mushroom tincture in my morning tea because it may have a neuroprotective effect (source). My father’s father had dementia, my father is currently in a home with profound dementia, the chances it’s going to happen to me are very high. It’ll be years before I know whether lion’s mane mushroom will do anything for me (and even then you couldn’t claim anything from one data point), but I’m willing to try anything as long as it’s affordable and has at least some plausible evidence behind it. This isn’t the only thing I’m doing of course, I’ve also overhauled my diet (MIND diet) and lost 30 pounds (obesity is correlated with dementia).

    why can’t you make it your self by pulverizing dried mushrooms of the same variety they use into powder and making the coffee yourself?

    You absolutely could. Or, you know, just eat some of the same mushrooms. The benefit to dried products like Ryze, or tinctures like the one I use, are that they’re convenient, easily transportable and self-stable. I’ve cooked up fresh lion’s mane mushrooms several times, but not super often because they’re not in many stores in my area and tend to be pricey for the amount you get. I’ve also grown my own from a kit but that takes significant time and a little bit of daily attention to maintain optimal growing conditions. The tincture is convenient and relatively affordable as far as daily supplements go.




  • MinuteCast from AccuWeather does exactly this. It looks at your location, looks at radar data for storm systems approaching your location, and estimates when precipitation will start at your location and how intense it will be. It’s generally pretty accurate, with some limitations. It seems to be pretty good for consistent rainstorms but it can get tripped up by pop-up thunderstorms, where the radar track can go suddenly from no rain to downpour. It doesn’t make predictions more then 2-3 hours out because past that timeframe it’s not easy to predict if weather will continue on its current track or change direction. Even with the limitations, I use it all the time. Mostly to tell if I should take the dogs out right away, or if I should wait an hour or two.














  • There are some viruses that have targeted Linux, but they’re rare compared to other platforms and their ability to spread is relatively low. One of the main reasons is just down to how software tends to be installed on each platform. Viruses have an easier time spreading on Windows or OSX where users are more accustomed to downloading an executable and running it. Once there’s a malicious running process, it has a comparatively high chance to spread because it can attempt to escalate its privileges either by exploiting a bug or socially engineering the user to click through a privilege escalation prompt. That entire workflow is practically nonexistent on Linux, users just don’t tend to download and execute random binaries. Instead most Linux software gets delivered in one of these ways, each of which has impediments that reduce the chance a virus could spread:

    • through an OS repo; it would be difficult for a malicious actor to get a virus through the release process and into a trusted repo
    • through a public source like Github; again it would be difficult for a malicious actor to get a virus into public source code without someone noticing
    • through a container image from an image library like DockerHub; I believe a malicious container would be sandboxed, making it hard if not impossible for that container to take over the host system
    • through an application image like a snap, flatpak or appimage; again, I believe these run in their own sandbox from which they would have difficulty breaking out

    There are some exceptions, for example some companies like Hashicorp will distribute their stuff as precompiled binaries. Even in that case you’re probably fine as long as you don’t run the downloaded binary as root. Users in the habit of downloading strange binaries from sketchy places and running them as root just aren’t very common among the Linux userbase. I’m sure there are some (and they should really stop doing that), but there aren’t enough of them to allow a virus to spread unchecked.


  • I don’t think dedicated antivirus software is really required anymore. I haven’t run third-party AV software on any of my systems in the last decade.

    On Windows, the built-in Windows Defender is good enough for most use cases. When it first launched Defender had a pretty bad track record at stopping viruses, but now it routinely ranks at the top.

    On Linux, antivirus software has never really been required. One major exception I can think of would be if you’re running a file server or mail server that talks to OSX or Windows systems. Even then the AV software isn’t really there to protect the server, it’s there to make sure you don’t pass malware or viruses to those non-Linux clients.