Inspired by tools like Grafana that I just discovered, what other cool open source tooling do you use?

  • it_a_me@literature.cafe
    link
    fedilink
    arrow-up
    6
    ·
    edit-2
    1 year ago

    Primary code editor: helix

    Graphical debugger and certain IDE features: vscodium

    Lots of open source language servers: clangd, rust-analyzer, perl-navigator, …

    Makefile to compile-comands.json: bear

    TUI file manager: yazi

    Better Grep:ripgrep

    Debugger: gdb(gnu debugger)

  • callyral [he/they]@pawb.social
    link
    fedilink
    English
    arrow-up
    5
    ·
    1 year ago

    editor · neovim configured with fennel

    shell · zshell

    • plugin management · antidote

    • plugins · belak/zsh-utils, olets/zsh-abbr, zsh-users/zsh-autosuggestions, etc.

    build system · gnu make

    os · voidlinux


    not programming related, but i though i’d mention

  • Aurenkin@sh.itjust.works
    link
    fedilink
    arrow-up
    5
    ·
    1 year ago

    Not exactly programming but recently discovered Logseq and I’m absolutely loving it. Been using it for work but I kinda want to start using it for personal stuff too.

    • worldofgeese@lemmy.world
      link
      fedilink
      arrow-up
      2
      ·
      1 year ago

      I use Logseq for everything. I’ve found the more you throw into it the more useful it becomes since your touch points are so frequent and that gets you thinking through and exploring your graph more. I’ve yet to use any of the data query features but I’ve heard they’re incredibly powerful.

      Whiteboards are just a fantastic way for modeling a topic or themes you know you want to turn into a deliverable when the how is uncertain.

  • worldofgeese@lemmy.world
    link
    fedilink
    arrow-up
    3
    ·
    edit-2
    1 year ago

    Now that I’ve finished the first draft of an article on setting up rootless Podman on Guix System, I’m using and building out a set of tools to support a new article covering an all Red Hat stack from inner loop to CI.

    So far, it’s

    • OpenShift for the platform services run on
    • Podman for my local container engine
    • Podman Compose for inner loop development
    • OpenShift Pipelines for CI
    • Shipwright for building container images locally with Buildah
    • Quay for image scanning and storage
    • OpenShift Serverless for scale-to-zero deployments
    • onlinepersona@programming.dev
      link
      fedilink
      English
      arrow-up
      1
      ·
      1 year ago

      I wish podman or docker had an IPFS registry. When dockerhub or quay decide to be slow for whatever reason, then all you can do is sit and wait. With IPFS it would be possible to pull from multiple hosts and even mirror images.

    • Pyro@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      ·
      1 year ago

      I really want to like Podman Compose but since the very beginning it’s been noticeably tougher to work with than Docker Compose. I get that it’s because it’s just an extra script rather than a first party tool, but still.

      • worldofgeese@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        1 year ago

        For something simple that just needs a bind mount like

        services:
          app:
            build:
              context: .
              target: base
            volumes:
              - ./debaser_studio:/opt/app-root/src/debaser_studio/debaser_studio
            ports:
              - "3000:3000"
              - "8000:8000"
            user: default
        

        I haven’t found any issues. Do you have more complex needs?