Viewing profile — Zirias
Zirias
HN member- Joined
- Mon, Jun 12, 2023, 11:31 AM UTC
- HN karma
- 97
- Public activity
- 22 items
- HN profile
- View on Hacker News ↗
About Zirias
No profile information was provided.
Recent public activity
-
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…
- story
-
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…
- story
-
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…
- story
-
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 …
- story
-
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…
-
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…
-
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.
-
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 …
-
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…
-
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…
-
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…
-
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…
-
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…
- comment
- story
-
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…
-
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…
-
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…