Hello, tone-policing genocide-defender and/or carnist 👋

Instead of being mad about words, maybe you should think about why the words bother you more than the injustice they describe.

Have a day!

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

help-circle
  • Yes. The US is also authoritarian. Yes, there is a clear media bias when it comes to the headlines that western media outlets are willing to run. In particular, paining non-western countries as more authoritarian than the US (which is sometimes true).

    It’s valuable to point this out. Dog knows the removedty media bias bots used in other communities won’t.

    However, the overall tone of your comment seems to suggest that it’s okay for non-western governments to do authoritarian bullremoved, just because the US does. I trust that wasn’t the point of your comment, but I assume that’s why some may not take kindly to it.

    For what it’s worth: my instance disables down votes, so I literally can’t down vote posts I disagree with.


  • Why Haptic

    We built Haptic to make markdown writing simpler and more accessible. We believe that many existing editors are too complex for simple use cases and day-to-day note writing, so we decided to fix that.

    What Makes Haptic Special

    1. Ready to Use: Open Haptic and start writing. No setup needed.

    2. Simple Design: Clean interface so you can focus on your writing.

    3. Write Anywhere: Use Haptic on any computer with internet. Great for public or work computers where you can’t download software.

    4. Made for Everyone: If other editors feel overwhelming, you’ll like Haptic.

    5. Open Source: Self-host your own instance, giving you full control over your setup.


    Haptic is all about making writing easier. We’ve left out extra features to keep things simple and help you get your ideas down without fuss.

    Note: If you’re looking for a markdown editor with plugin systems, complex setups, or feature-packed interfaces, Haptic might not be for you. But if you want something straightforward that just works, give Haptic a try!









  • Using containers on Linux has basically no performance loss compared to running on the host. They share a kernel and nothing needs to be virtualized (unlike containers on macOS and Windows), so anything you run in a container is basically the same performance as running it on the host.

    I still agree though: using Nix is better than using Distrobox for many other reasons.


  • Nix has more packages , by far. Nix also automatically handles the dependent libraries for each package, which is something you can’t do with brew on immutable systems. This means that Nix can install software like espanso, which wouldn’t work on uBlue derivatives otherwise.

    I really wish the uBlue maintainers would have opted for Nix over brew for that reason. It’s not much more difficult to do nix profile install nixpkgs#package-name over brew install package-name. They could have even aliased it to make it easier.






  • trevor@lemmy.blahaj.zonetoLinux@lemmy.mlZed Decoded: Linux when? - Zed Blog
    link
    fedilink
    English
    arrow-up
    17
    arrow-down
    2
    ·
    edit-2
    5 months ago

    While I generally agree with your skeptical attitude toward this, I think the fact that they were targeting Apple’s Metal graphics API to built the most performant possible IDE makes sense. You can’t just snap your fingers and have a Linux graphical stack start working with your software.

    I think the reason they targeted macOS first is probably because many of the dev team uses Macs.

    As a Linux user, I’ll happily wait for software like this to get ported to native Linux APIs so we get performant text editors instead of more Electron crap.





  • Here’s what I do in my docker images:

    mkdir -p /lib-your-executable
    ldd ./your-executable | tr -s '[:blank:]' '\n' | grep '^/' | xargs -I % cp % /lib-your-executable
    

    Essentially, it’s the same thing that you’re doing, just automating getting the dependencies, and then copying everything in the lib-your-executable dir to your LD_LIBRARY_PATH. I don’t know of a better way, other than statically-linking the binaries.

    EDIT: fix typo in commands.