For me, it’s CAD software. FreeCAD is trash (sorry, lovers). Fusion360 is honestly the best out there for free. The “almost there” app is Shapr3D, but fuck $40/m.

And yes I’ve tried all the others not listed here.

  • ohlaph@lemmy.world
    link
    fedilink
    arrow-up
    26
    ·
    4 hours ago

    Excel. There are other options, sure, but excel is really hard to beat.

    Email. Gmail really does it well. However, I have switched mostly to Proton, so maybe that’ll stick.

    • sloppy_diffuser@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      5
      ·
      2 hours ago

      Pandas/Polars is all I need in a Jupyter notebook to replace Excel. Its not even a contest if you know some python for doing any real work.

      I concede Excel has a lower bearer to entry for teams composed of mixed technical abilities.

      • fartsparkles@lemmy.world
        link
        fedilink
        arrow-up
        6
        ·
        2 hours ago

        So much this. If you find yourself writing nested formulas e.g.

        =IF(A1>=90, "A", IF(A1>=80, "B", IF(A1>=70, "C", "F")))
        

        Do yourself a favour and switch to Python and Pandas. You can do so much more, so much faster, and so much simpler. And at the end of an your code, you can pd.to_excel() to spit out your dataframe as an xlsx.