Live data from Hacker News

Viewing profile — Tronic2

Tronic2

HN member
Joined
Tue, Apr 14, 2020, 2:01 PM UTC
HN karma
9
Public activity
6 items

About Tronic2

No profile information was provided.

Recent public activity

  1. comment
    Comment #23516692

    Plain sanic runs much faster than the uvicorn-ASGI-sanic stack used in the benchmark, and the ASGI API in the middle is probably degrading other async frameworks' performance too. …

  2. comment
    Comment #22868200

    The decoding phase will do that, if needed. Also note that in many cases you must process it as opaque binary, even though it should be valid UTF-8. This is in particular with file…

  3. comment
    Comment #22866846

    Ignore all character support in the standard library and handle UTF-8 as opaque binary buffers. If you need complex string algorithms, decode into UCS-4 (UTF-32). You'll find short…

  4. comment
    Comment #22866505

    Syntax of pointers. Easy to use high level languages make extensive use of pointers (i.e. all their variables are actually pointers) but beginners cope with them because no stars o…

  5. comment
    Comment #22866270

    char effectively behaves as a signed type, making it unsuitable for binary operations (e.g. UTF-8 manipulation). I/O functions deal with char pointers, so using unsigned type like …

  6. comment
    Comment #22866125

    Why is the struct tm* returned by localtime() not thread-local like errno and other similar variables are (at least in implementations)? Do you have any plans to improve calendar s…