Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

agnos.is Forums

  1. Home
  2. Open Source
  3. Favourite software that "sucks less"

Favourite software that "sucks less"

Scheduled Pinned Locked Moved Open Source
opensource
33 Posts 24 Posters 0 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R [email protected]

    kew. For local music playback. I might be biased though.

    obsolete@lemmy.dbzer0.comO This user is from outside of this forum
    obsolete@lemmy.dbzer0.comO This user is from outside of this forum
    [email protected]
    wrote last edited by
    #24

    I am surprised this player isn't getting the recognition it deserves.

    1 Reply Last reply
    0
    • bvoigtlaender@feddit.orgB [email protected]

      I really like simple software that is built for a specific task which it then does extraordinary with a simple to understand codebase. Similar to the philosophy of suckless.org.

      What are your favourite programs that "suck less"?

      T This user is from outside of this forum
      T This user is from outside of this forum
      [email protected]
      wrote last edited by
      #25

      Well, I personally have a soft spot for the gopher protocol and the community that formed around it... it's in a way the better internet

      1 Reply Last reply
      3
      • bvoigtlaender@feddit.orgB [email protected]

        I really like simple software that is built for a specific task which it then does extraordinary with a simple to understand codebase. Similar to the philosophy of suckless.org.

        What are your favourite programs that "suck less"?

        T This user is from outside of this forum
        T This user is from outside of this forum
        [email protected]
        wrote last edited by
        #26

        Speaking of suckless, does anyone know of a Wayland-compatible window manager, similar to DWM, preferably written in Rust or C (but not C++).

        Seems like a fun thing to tinker with to learn how window managers work.

        bvoigtlaender@feddit.orgB 2 Replies Last reply
        2
        • T [email protected]

          Speaking of suckless, does anyone know of a Wayland-compatible window manager, similar to DWM, preferably written in Rust or C (but not C++).

          Seems like a fun thing to tinker with to learn how window managers work.

          bvoigtlaender@feddit.orgB This user is from outside of this forum
          bvoigtlaender@feddit.orgB This user is from outside of this forum
          [email protected]
          wrote last edited by
          #27

          I've been eyeing dwl for quite some time which is like 3k lines of c excluding deps, but don't have the time to jump ship. So can't tell how stable it is.

          T 1 Reply Last reply
          1
          • T [email protected]

            Speaking of suckless, does anyone know of a Wayland-compatible window manager, similar to DWM, preferably written in Rust or C (but not C++).

            Seems like a fun thing to tinker with to learn how window managers work.

            bvoigtlaender@feddit.orgB This user is from outside of this forum
            bvoigtlaender@feddit.orgB This user is from outside of this forum
            [email protected]
            wrote last edited by
            #28

            By the way what do you dislike C++? I've been getting into lower levels of programming as of late and were unsure about the language to pick. Is it just the OOP stuff?

            T 1 Reply Last reply
            1
            • bvoigtlaender@feddit.orgB [email protected]

              By the way what do you dislike C++? I've been getting into lower levels of programming as of late and were unsure about the language to pick. Is it just the OOP stuff?

              T This user is from outside of this forum
              T This user is from outside of this forum
              [email protected]
              wrote last edited by
              #29

              Thanks for asking. It's partly OOP, but more than that, C++ is just rife with footguns and is basically unreadable for me.

              I think C is much more readable and I find imperative/procedural programming to be much more delightful and readable.

              Rust is my absolute favorite though, because it removes the footguns of most lower-level langs while being just as performant. The only trade-off is that you need to understand the borrow checker, but working with it becomes substantially easier over time and saves an ungodly amount of headaches. You can also write something that very closely approximates OOP, without the most of the footguns (like inheritance, until you get into more advanced stuff like trait objects, anyway).

              bvoigtlaender@feddit.orgB 1 Reply Last reply
              0
              • bvoigtlaender@feddit.orgB [email protected]

                I really like simple software that is built for a specific task which it then does extraordinary with a simple to understand codebase. Similar to the philosophy of suckless.org.

                What are your favourite programs that "suck less"?

                zykino@programming.devZ This user is from outside of this forum
                zykino@programming.devZ This user is from outside of this forum
                [email protected]
                wrote last edited by
                #30

                I just discovered lowfi. Does what it says, adding ambiant/lo-fi music to my work day.

                1 Reply Last reply
                1
                • bvoigtlaender@feddit.orgB [email protected]

                  I've been eyeing dwl for quite some time which is like 3k lines of c excluding deps, but don't have the time to jump ship. So can't tell how stable it is.

                  T This user is from outside of this forum
                  T This user is from outside of this forum
                  [email protected]
                  wrote last edited by
                  #31

                  This is perfect! Thanks!

                  1 Reply Last reply
                  0
                  • T [email protected]

                    Thanks for asking. It's partly OOP, but more than that, C++ is just rife with footguns and is basically unreadable for me.

                    I think C is much more readable and I find imperative/procedural programming to be much more delightful and readable.

                    Rust is my absolute favorite though, because it removes the footguns of most lower-level langs while being just as performant. The only trade-off is that you need to understand the borrow checker, but working with it becomes substantially easier over time and saves an ungodly amount of headaches. You can also write something that very closely approximates OOP, without the most of the footguns (like inheritance, until you get into more advanced stuff like trait objects, anyway).

                    bvoigtlaender@feddit.orgB This user is from outside of this forum
                    bvoigtlaender@feddit.orgB This user is from outside of this forum
                    [email protected]
                    wrote last edited by
                    #32

                    Trying things out with an ESP32 and i might opt for Rust after reading what you have wrote. There also seems to be enough resources to do that. I started using C++ as the Arduino IDE has decided that for me more or less. I suspect setting up a local development environment is also easier with Rust. (?!) I at least had problem Setting up C++ in VSCodium.

                    Don't like OOP as the next guy but sometimes its the right tool i feel like and i do have that case right now. So its great that Rust seems to have that as well to some extent. Actually as Rust is so much more readable i kinda expected to give up on some control but that doesn't seem to be the case. 🙂

                    1 Reply Last reply
                    0
                    • hiddenlayer555@lemmy.mlH [email protected]

                      KDE Plasma. IMO it looks and feels like how Windows should have progressed after 7 with none of the Microsoft bullshit.

                      S This user is from outside of this forum
                      S This user is from outside of this forum
                      [email protected]
                      wrote last edited by
                      #33

                      That is a pretty good way to put it actually

                      I am going to steal this

                      Been daily driving KDE on my work machine and for the most part (some issues with video playbavk in thr beginning that fixed themselfs) its been amazing

                      1 Reply Last reply
                      1
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups