My list:

  • A privacy respecting Dating platform.
  • A good 2D CAD program capable of dealing with DWG files.

Please don’t post a huge list of games. That would belong in another post. since there are many good ones already.

  • jsgohac
    link
    fedilink
    arrow-up
    3
    ·
    4 years ago

    An ultra-lightweight viewer for ods/xlsx and odt/docx? Maybe its there but couldn’t find one. Have used pandoc to pdf on docs and excel2table on spreadsheets.

    • wraptile
      link
      fedilink
      arrow-up
      5
      arrow-down
      1
      ·
      4 years ago

      Libre office is quite light-weight and I think it can be used as converted for anything as well. You can pipe docx > pdf > pdf viewer

      • jsgohac
        link
        fedilink
        arrow-up
        1
        ·
        4 years ago

        It would be great if there was an equivalent to mupdf/zathura, netsurf that flashs open and disappears with control-q etc.

        • wraptile
          link
          fedilink
          arrow-up
          2
          ·
          4 years ago

          I think you could actually write an extension for zathura that would convert docx to pdf on launch or just display docx. See this great stackoverflow answer; I’m not a C dev but it seems like Zathura could totally support that :)

          • jsgohac
            link
            fedilink
            arrow-up
            3
            ·
            4 years ago

            here is my quick and dirty working bash example. might try for a csv/ods solution which is a bigger need for me.

            #!/bin/sh
            
            pandoc -i $1 -o $1.pdf --pdf-engine=wkhtmltopdf
            mupdf $1.pdf
            rm $1.pdf
            
          • jsgohac
            link
            fedilink
            arrow-up
            1
            ·
            4 years ago

            Thanks for the link, actually come to think of it I could write a bash script with pandoc and pass the output to mu for the docx odt part.