Live data from Hacker News

Viewing profile — Zirias

Zirias

HN member
Joined
Mon, Jun 12, 2023, 11:31 AM UTC
HN karma
97
Public activity
22 items

About Zirias

No profile information was provided.

Recent public activity

  1. comment
    Comment #44373769

    New release of my authentication service written in C. It now offers "multi-reactor" (multiple threads each running their own event loop). In my jmeter tests, it can now support 40…

  2. story
  3. comment
    Comment #44075292

    TBH, I've shown this before, but a LOT has changed since then, most notably: * Performance improvements by adding support for epoll() (with singalfd and timerfd), kqueue() and sola…

  4. story
  5. comment
    Comment #43795296

    BTW, it also offers authentication with PAM, password files similar to Apache's .htpasswd and by calling some external tool. And it compiles to a (currently) 176kiB binary, which h…

  6. story
  7. comment
    Comment #43595389

    swad is the "Simple Web Authentication Daemon". I just started it and crafted a first release that's still pretty limited in functionality, but does something (IMHO) useful, which …

  8. story
  9. comment
    Comment #41193089

    So, let's look at this group of people knowledgeable in programming et al, but not english. Sure, this group exists. It's relatively tiny though. English is the language in any (mo…

  10. comment
    Comment #41183390

    For Wayland, keyboard input is "out of scope". (edit: Not entirely, just verified it does forward very basic events, but it's a thing wayland doesn't want to handle, while X11 orig…

  11. comment
    Comment #41181746

    > The second worst part is the emoji combining sequences [...] That was the main reason for me to pull in harfbuzz. At least it "just resolves" those sequences to glyph indices.

  12. comment
    Comment #41181630

    Thanks for the pointer, this made me have another closer look at xkbcommon's API. Probably not too relevent for the tool I'm currently writing, but I'll keep that in mind: Instead …

  13. comment
    Comment #41181163

    Note input is "out of scope" for wayland and XKB is used there for keyboard input as well. I just had a quick glance at "wtype" source and indeed, it fiddles with the keymap, using…

  14. comment
    Comment #41180499

    Using input methods is the "technically best" solution of course, but it needs configuration and some application support, therefore I wanted something working with "plain X" :) Se…

  15. comment
    Comment #41158892

    Xcompose only offers sequences started with the "compose" key (whatever it is mapped to) and resulting in a single X key-symbol, so to type an emoji needing multiple uniciode codep…

  16. comment
    Comment #41147811

    Not sure you really mean the compose mechanism provided by Xlib (and xkbcommon etc ...)? If so, this wouldn't work for all these emojis that are represented by grapheme clusters, Z…

  17. comment
    Comment #41145740

    In case someone wonders what's "special" about it: user perspective: As far as I know, it's the only tool offering somewhat reliable emoji input using faked X11 keyboard events. "x…

  18. comment
  19. story
  20. comment
    Comment #36294926

    Thanks! If your goal is learning yourself, I guess you should really implement your stuff down on the system API level (using sockets and so on) ;) If, OTOH, you want to get up som…

  21. comment
    Comment #36294832

    A "service" certainly doesn't mean SOA (using SOAP), it doesn't even mean any specific form of communication (there might be cases not needing any communication), it basically just…

  22. comment
    Comment #36292038

    It certainly is not. Libuv (and friends) abstract platform-specific APIs like epoll (Linux), kqueue (FreeBSD), IOCP (Windows) etc, allowing to scale up to lots of concurrent client…