Henry Schreiner

Results 2505 comments of Henry Schreiner

Here's the report so you can see all changed files and why they were changed: ``` check for added large files..............................................Passed check for case conflicts.................................................Passed check for merge conflicts................................................Passed check...

Also, if you rebase-and-merge or classic merge, then you can add the second commit's sha to your .git-ignore-revs file and GitHub will ignore that commit in history (blame) view (recent...

I would at least like to see the contents of common.lark in the cheat sheet...

I'm looking into it. Ah, "nil" is not a dedicated true/false value in YAML, so it't the string nil. That's easy to fix. Will look into the loading next.

Fixed the handling of nil. Firefox is odd - it seems to be trying to show a partially loaded page for some reason (the flashed page is not complete). Chrome...

Looks like Firefox is rather known for the white flash when loading. https://www.reddit.com/r/firefox/comments/8yqhu8/how_to_change_white_flash_when_loading_webpage/ https://support.mozilla.org/en-US/questions/1269392

For me, navigating the pages of https://scikit-hep.org on Firefox, the only flashing I get is for the initial page. After that, it is stable. I think firefox is doing some...

This trick actually works pretty well on the current version: ```bash cat _includes/js/custom.js ``` ```js window.matchMedia('(prefers-color-scheme: dark)') .addEventListener('change', event => { if (event.matches) { jtd.setTheme('dark'); } else { jtd.setTheme('light'); }...

Note that https://docs.python.org/3/whatsnew/3.8.html#inspect allows `__slots__` to now have documentation in Python 3.8 (you make it a dict). This might be quite useful for a `doc=` on an attribute of a...

### Example: ```python class A: __slots__ = {"one": "one doc"} help(A.one) ``` #### Python 3.7: ``` Help on member descriptor __main__.A.one: one ``` #### Python 3.8: ``` Help on member...