Eugene Crosser
Eugene Crosser
I am having hard time debugging _why_ calls are unavailable between me and a friend (while they work between test accounts on the same server). It would be very useful...
This version runs is in production on thousands of servers for maybe a year(?), and I see this exception for the first time, so this probably can be safely written...
My concrete task is to set interface-specific sysctl variable (`arp_ignore`) for an interface inside netns. It is as easy as opening a `/proc/sys/net/.../arp_ignore` file and writing a character there. But...
I suddenly found myself writing code like this: ``` vrflist = [( l.get('index'), dict(l.get('attrs', {})).get('IFLA_IFNAME'), dict( dict( dict( l.get('attrs', {}) ).get('IFLA_LINKINFO', {}).get('attrs', {}) ).get('IFLA_INFO_DATA', {}).get('attrs', {}) ).get('IFLA_VRF_TABLE'), ) for l...
On my two fresh pods, I observe this: all posts made on the pod (from local account) have "Comments disabled", *until* they are "liked". Once the post is "liked", it...
OMEMO protocol relies on PEP to publish user's public keys. `mod_pep` exists in jabberd2, but it does not implement any functionality and simply unconditionally returns `mod_PASS`. This makes OMEMO largely...
This only happened once by now, and may be a freak accident, feel free to close if not interested. This morning, I found my clients not able to connect to...
Commit a04d7cc: Fix several memory leaks and mishandling of the privilege status where a function returned failure indication, and previously allocated memory was not freed (and the referece was lost),...
Of three events that require "trivial" response, `Request`, `CloseConnection`, and `Ping`, two implement `response()`, but one, `Request`, does not. If it did had `response()` method that returns `AcceptConnection()`, event processing...
When you make a "name_show" request for a name that does not exist: ``` curl --basic --user : --data-ascii '{"method":"name_show","params":["nonexistent"],"id":1}:' --url http://localhost:8336/ -v ``` the result is ``` < HTTP/1.1...