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
    14 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
      24 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
        34 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
        14 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.