• 0 Posts
  • 51 Comments
Joined 1 year ago
cake
Cake day: June 10th, 2024

help-circle
  • Eh, probably if Guix becomes significantly better I’ll switch to it (from NixOS). I really like how seriously they take user freedom, bootstrapping (only 357 bytes of binary to bootstrap everything else from source!) and consistent user interfaces (scheme everywhere). But unfortunately the package repo is just not big and mature enough yet, and declarative configuration options are not as good as they are with NixOS. My job is also Nix-related, and that’s another major reason I’m staying for now.


  • No, it’s not. It’s a word predictor trained on most of the web. On its own it’s a pretty bad search engine because it can’t reliably produce the training data (that would be overfitting). What it’s kind of good at is predicting what the result would look like if someone asked a somewhat novel question. But then it’s not that good at producing the actual answer to that question, only imitating what the answer would look like.


  • I’m surprised it took this long. The world is crazy over AI, meaning everyone and their grandma is likely trying to do something like this right now. The fact it took like 3 years for an actual vulnerability “discovered by AI” (actually it seems it was discovered by the researcher filtering out hundreds of false positives?) tells me it sucks ass at this particular task (it also seems to be getting worse, judging by the benchmarks?)


  • Not least because there’s no such thing as a “compiled” or “interpreted” language.

    I’d say there is (but the line is a bit blurry). IMHO the main distinction is the presence (and prevalence) of eval semantics in the language; if it is present, then any “compiler” would have to embed itself into the generated code, thus de-facto turning it into a bundled interpreter.

    That said, the argument that interpreted languages are somehow not programming languages is stupid.


  • a mobile OS that basically eschews backwards compatibility

    I have an app built for Android 4 running on my Android 15 device. It looks ugly but it works. Of course other apps will not be so lucky, but some backwards compat is absolutely there.

    a desktop OS that can still run 30 year old applications

    Not really, Microsoft is steadily breaking old stuff. For example lot of 10-15 year old software that was doing something hardware-related would be broken now due to driver signing changes/restrictions (e.g. WinRing0 things).



  • Touchscreen (and 2-in-1) support in general is quite good, both Gnome and Plasma (two most popular “desktop environments”) support it well. It should be about as responsive as it is on Windows, because the response time generally comes from hardware and not software. However, I must warn you that I’ve had a similar HP 2-in-1 (although a different model) and there simply wasn’t a Linux driver for the touchscreen so it didn’t work at all; all the other tablet-like features worked fine. I would first check on a liveUSB - the touchscreen should work there the same as it will on the installed distro. If it doesn’t work, well, there’s your answer.



  • Good for the environment? I recycle everything I can. I don’t use plastic bags or single-use cups. I avoid using heating in the winter to save on CO2 emissions (used it for 2 days this winter when my gf was sick). I stave off aircon in the summer for as long as I can to save electricity. I’m vegan (mostly because of ethical concerns but also because meat is awful for the planet in general). I avoid using my car when there’s an alternative (cycling/public transit).

    Good for me? I do at least some exercise (stretching, workout, jogging, cycling) every workday and hike on the weekend. I brush my teeth twice a day, floss weekly, and get a full dental cleaning annually, and because of this (and genetic luck I suppose) I never had any issues with my teeth (don’t have even a single filling). I don’t drink alcohol or smoke at all. I avoid caffeine and sugars when possible.

    I feel privileged to be able to form those habits, and also often blame myself that I don’t do better. I’m addicted to fat and carbohydrate-heavy foods, can’t bring myself to clean the apartment with any regularity beyond the most necessary, and can’t form a habit of regularly reading books. Sometimes I wonder how other adults manage when they have a 9-5 office job with commute times, kids, etc.




  • balsoft@lemmy.mltoLinux@lemmy.mlSelfhost offline software
    link
    fedilink
    arrow-up
    7
    ·
    edit-2
    1 month ago

    AppImage suffers from the same problem that Flatpak does, the tool do work offline aren’t really good/solid and won’t save you for sure

    I’ve been using my laptop in areas without internet for days. It works fine.

    It also requires a bunch of very small details to all align and be correct for things to work out.

    I have appimage-run from nixpkgs installed, which handles all those details. They are also not too hard to figure out manually should you need to.

    Imagine the post-apocalyptic scenario, if you’re missing a dependency to get something running, or a driver, or something specific of your architecture that wasn’t deployed by the friend alongside the AppImage / Flatpak (ie. GPU driver) you’re cooked.

    GPU drivers are emphatically not part of the AppImage. They are provided by Mesa, which is almost guaranteed to be installed.

    Meanwhile on Windows it has basic GPU drivers for the entire OS bakes in, or you can probably fish around for an installer as fix the problem

    It’s actually the other way around - if you want your GPU to work properly on a new Windows install, you have to fish around for AMD/NVidia drivers. On Linux Mesa is pretty much pre-installed on all distros.

    It is way more likely that you’ll find machines with Windows and windows drivers / installer than Linux ones with your very specific hardware configuration.

    LMAO, try moving a windows installation from Ryzen+AMD GPU to Intel+NVidia GPU and let me know how it goes (hint: you will have to manually uninstall, and then install a shit ton of drivers, for which you will need internet).

    Meanwhile I’m typing this from a (Ryzen+AMD GPU) desktop which has an SSD from my (Intel+integrated graphics) laptop. When I plugged it in, it booted into sway just fine, with complete GPU support and all, and the only reason I had to update my config is to make it more convenient to use on the desktop.

    Linux is not the best “apocalypse” OS, but it sure is better than Windows.


  • balsoft@lemmy.mltoLinux@lemmy.mlSelfhost offline software
    link
    fedilink
    arrow-up
    18
    arrow-down
    1
    ·
    1 month ago

    There are ways to deal with this. There’s AppImage for GUI apps (that replicates the “just get an exe from a friend on a flash drive”) and lots of bundling programs for non-GUI apps (I use nix-bundle because I use Nix, but there are other options too).

    Lots of distro installers work offline too, by just bringing all the stuff you need as part of the installer.

    And one major benefit of Linux is that when stuff does inevitably go wrong, it’s infinitely easier to fix than proprietary garbage.




  • I think the main premise is that every version of every software has its own installation prefix. This allows you to mix&match different versions, perform atomic upgrades, etc. You can think of it as a proto-Nix. TBH I don’t see much point in it now that Nix(OS) and Guix exist, or, if you don’t like their purity, stal/IX.