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

help-circle
  • aarroyoc@lemuria.estoLinux@lemmy.mlVLC Player
    link
    fedilink
    arrow-up
    3
    arrow-down
    1
    ·
    23 days ago

    VLC ships their own codecs which is great on Windows, but a bit suboptimal on a typical Linux desktop installation since you’re probably going to have GStreamer or ffmpeg available too for the rest of the software like video editors, web browsers, etc


  • aarroyoc@lemuria.estoLinux@lemmy.mlCool distros to try
    link
    fedilink
    arrow-up
    18
    arrow-down
    1
    ·
    1 month ago

    Alpine Linux, because it uses OpenRC and musl, it’s an interesting choice a little bit different but I really like it nyself for servers.

    Gentoo, the biggest source based distro, has Emerge, a very configurable package manager.

    NixOS, uses the Nix programming language to install packages and configuring the system. Very powerful and breaks many conventions about Linux systems


  • aarroyoc@lemuria.estoLinux@lemmy.mlStill...
    link
    fedilink
    arrow-up
    12
    ·
    edit-2
    2 months ago

    GNU Cobol is interesting, but note that most COBOL running in production is using other compilers and operating systems. MicroFocus and IBM COBOL are the most popular ones. They are usually executed on IBM operating systems like z/OS or IBM i, which have a hardware a bit different from a normal PC/server.



  • Yes. My apps are not static: one is a Django app (Python) using Postgres. I had to compile both Postgres and Python but that’s because I wanted to use them in Docker but there were no images available (maybe there are now, things change fast in this world).

    Other was a Rust app, also using Postgres. For this I had to wait until a cryptography library (ring) added support to RISC-V since they use some assembly to improve the performance. After that, it was fine.

    I’ve been experimenting with more stuff, in general almost all important languages work, but beware that even if it works, they might not be as performant as in ARM or x86. Java for example, worked but the JVM didn’t have a JIT so it was very slow (this is fixed now, but some distros still ship it without JIT AFAIK).