• 0 Posts
  • 22 Comments
Joined 2 years ago
cake
Cake day: July 9th, 2023

help-circle


  • You are either naive or new to this planet. If you tell industry that this or that thing is voluntary, it will definitely not happen. There must be thousands of examples out there. “Voluntary” regulation never worked on this planet.

    If you want industry to do something, there is the stupid way of bribing them into it, and the smart way of simply forcing them to comply. If you do the latter, they will still squirm, complain, and demand money (loads of money!) to follow the law. If you forgot to define fines for non-compliance or made them too small, they won’t follow the law, either, of course, so the fines have to be painful enough so they can’t just file them away as “costs of doing business”.






  • Of course. Not a single quantum computer has done anything but test programs and quantum-specific benchmarks. Until a quantum computer finally does something a normal computer regularly does, but faster, we should simply ignore this area.

    EDIT: could the downvoters state a single occasion where a quantum computer outmatched a normal computer on a real problem. And with that I mean something more elaborate than winning naughts and crosses, or something like that.



  • wrecks the thing I care most about: copying and pasting details that I need to write articles. Instead, I often get garbled, shortened pieces of other parts of the document intermingled with the text I want—assuming I can even select it in the first place.

    There are two things doing this: PDF optimisation and document obfuscation.

    The Optimisation thing is something I’ve seen with many Asian PDFs. If they want to use a non-standard font, and want the document to actually use it, they have to embed it into the PDF, potentially blowing it up size-wise. In comes the optimiser: It looks which of the thousands of glyphs of that Asian language are actually used in that document, and creates a new font with only those glyphs. This font has a totally different numbering scheme from the original font, so it also replaces the numbers in the document that represent those glyphs. Result: A much smaller PDF. It looks the same, it prints the same. You can still “copy” the characters, but as their only meaning is related to the internal representation of the font, you cannot past them into e.g. Google Translate. It’s just gibberish.

    Example: The text is “Jack and Jill”, and the numbers in the document representing those characters would be ASCII/UNICODE: 74 97 99 107 32 97 110 100 32 74 105 108 108 (74 being ‘J’, 97 being ‘a’, etc.). This is standard and works basically everywhere. The optimizer sees the letters " Jacdikln" (sorted) and assigns them numbers starting with e.g. 0 for " " (space), 1 for “J”, etc. The images for all other characters are thrown away, as they are not needed. The internal numbers for the text are now 1 2 3 6 0 2 8 4 0 1 5 7 7, which are not standard ASCII/UNICODE, and copying them to another application would just result in problems.

    The Obfuscation is often done by putting additional text in the background color behind the main text. You cannot see it, it does not show up in prints, but when you select a piece of text, it gets copied along, if you like it or not.

    So you see “Jack and Jill” in black, but behind it is “went up the hill” in white, and you copy something like “Jacwentk upandth hiell”.