Devin J. Pohly
Devin J. Pohly
Well... after learning a bit more about Sphinx today, I might feel a little sheepish. I think a lot of the "creative" approach here might have been avoided just by...
I wasn't planning to show too much more than the required constructor arguments, lest it become unreadable too quickly. (The `eval` line above was meant only as a cute illustration,...
PR is up, with a couple of questions: 1. `_PendingSkip` makes perfect sense in an `And` context, but I don't understand what it means to create one with the match-first...
The repr for `printables` is ``` !"#$%&'()*+,-./0123456789:;?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ ``` so the repr for `Word(printables)` is nothing unexpected: ``` Word('!"#$%&\'()*+,-./0123456789:;?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~') ``` Using `srange` sounds reasonable anywhere we are dealing with a set...
With the latest commit in the PR, the repr() for elements which are based on sets of characters now determines whether the character string or an `srange` call will take...
Looks like railroad diagrams must use `str()` - the ones generated by the tests, at least, were identical before and after the changes. IIRC everything worked fine with `tox -e...
The PR in the mention above would make `Empty()`, `Literal()`, and `Literal("")` all return equivalent objects, prevent the "empty string" error from ever being reached, and as a bonus, handle...
Edit: you can probably disregard this; I think I was conflating two different issues. ---- In `src/libc_installation.zig` the `findNativeCrtDirPosix()` function looks for crt1.o with the command ``` cc -print-file-name=crt1.o ```...
See module here: https://github.com/djpohly/magisk-bbs-hidden-apis.
I remember those days! You're welcome to adapt whatever you want of the module into the BBS repo if you'd like to make it an official feature. I don't know...