35 pointsby program3 hours ago5 comments
  • lifthrasiiran hour ago
    How does it compare with utf8proc [1]? I'm aware that Mojibake does a bit more than utf8proc (e.g. bi-di) but that seems marginal to me.

    [1] https://juliastrings.github.io/utf8proc/

  • CharlesW29 minutes ago
    Not to bikeshed, but isn't the word "mojibake" synonymous with "when character encoding breaks"?
  • digg992 hours ago
    Love the amalgamation approach—the C/C++ ecosystem desperately needs cleaner, lightweight Unicode support without pulling in massive dependencies... thanks for sharing
  • tjwebbnorfolk40 minutes ago
    what's performance like compared to python ftfy module?
  • avadodinan hour ago
    I have come to the conclusion that the only Unicode support needed in C is supporting pointers to char and arrays but lightweight C libraries are always welcome.
    • adrianN33 minutes ago
      I guess you never have to deal with text if you think that’s enough? What kind of software do you write in C?