dubiousjim

Results 34 comments of dubiousjim

> I personally don't know much about cross compilation of C libraries. Just that with rust, it's usually easy, until C comes in :D > If you care to take...

Just in case this is relevant, note that [`TARGET` and `HOST` in their Rust usage != them in their GCC/autotools usages](https://github.com/lu-zero/autotools-rs/pull/19/files#diff-b4aea3e418ccdb71239b96952d9cddb6).

Hi, even having just a log of your build steps on Linux would be useful.

Came to make bug report about this and found this old issue. Clarification: the issue only happens for punctuation at the end of a line. Thus if you had: ```...

This is still an issue as of 2f57074. Looks like 2f7a82e from 2016 fixes a nearby issue (but not the same).

I like the proposal for the markup syntax. For the rendering, I think (i) either the HTML writer should special-case check for this attribute, and and convert it to `data-caption`....

For reference, here is a prettifying wrapper I use around `str(Board)`: ``` def diagram(b, *, flipped=False, labels=0, pretty=False): # pylint: disable=multiple-statements,consider-using-f-string assert isinstance(b, Board), f"Not a Board: {repr(b)}" string =...

Use `pretty=True` to get Unicode pieces. Use `flipped=True` to invert the perspective (putting black on bottom). Use `labels=1` to get row/column labels to the left and bottom of the board....

Flipped board just displays the 8 rank at the bottom, it doesn't change any piece positions. (White K still starts at e1, this is just now displayed at the top...