o11c
o11c
Steps (with ~/.local/bin/ in $PATH): 1. python2 setup.py install --user 2. supybot foo.conf (runs on python2) 3. python3 setup.py install --user 4. supybot foo.conf (runs on python3) 5. python2 setup.py...
In order to allow updates without user intervention, it is critical to allow `refresh` within a signal handler. It would also be quite beneficial to allow all operations from multiple...
Inheritance is often a code smell. Composition is usually cleaner. Porting the full code to a language without templates was painfully difficult. The least concern was that sometimes the names...
Things I noticed by hand: * `struct rxs_mixin` has its function called `output_rxs` rather than just plain `output`, which would prevent it from being used as an `output_mixin` if it...
If `seed` (or, for extended generators `data` - it's fine to omit `stream`) is omitted for any given constructor/seed call, the sanest default is to seed from `/dev/urandom` by default....
PHP can execute code directly from stdin, or even from a command-line argument, so the temporary file appears to be pointless.
One of the things I never got around to adding support for was xdg-user-dirs - things like `~/Documents`, `~/Music`, etc. This is more complicated because it involves reading the config...
Only `gcc_jit_rvalue_dereference_field` is wrapped, so it is impossible to access members of a struct/union except from a pointer. (lvalues can have their addresses taken to become a pointer, but rvalues...
The only way to create instances of those classes should be from the methods on the `Context` object.