Dave Brondsema

Results 30 comments of Dave Brondsema

The CSS workarounds don't work for a touch device, since that type of scrollbar cannot be hidden: https://stackoverflow.com/questions/40733385/hiding-webkit-scrollbar-when-overflow-scrolling-touch-is-enabled Setting `deviceMetrics` to `touch: false` seems like a way to deal with...

https://github.com/Ionaru/simplemde-markdown-editor was mentioned on a previous issue as a fork with some activity. Is that one we should rally behind, or are there other maintained forks?

Another thing to consider is escaping special characters when pasting - and this could apply to plain text, not just "formatted" text being pasted. E.g. escape \* and _ if...

`make` didn't like the `--trace` option: ``` /Library/Developer/CommandLineTools/usr/bin/make: unrecognized option `--trace' ``` So I did `brew install make` and ran with `MAKE=gmake` and then it worked without hanging. I also...

Ok here's the output of `env DISTUTILS_DEBUG=1 PYTHON_MAKE_OPTS="-d -p" PYENV_DEBUG=1 pyenv install -v 3.11-dev 2>&1 | tee trace.log` up until the point where it hung and I killed it: https://gist.github.com/brondsem/95ffab665d7c65406d5f1aa889baa61e...

Yes there is an active make process still, when its hung: ``` UID PID PPID C STIME TTY TIME CMD 502 64789 64745 0 5:05PM ttys006 0:00.06 bash /usr/local/Cellar/pyenv/2.3.3/plugins/python-build/bin/python-build -v...

I have a small proof-of-concept that shows the directory structure more visually. What do people think of this? ![screenshot 2018-02-22 22-25-05](https://user-images.githubusercontent.com/19553/36576533-3ef3b970-181f-11e8-8192-ffc4cfd93442.png) It is still all markdown/html (not a screenshot) so...

The code is at https://github.com/brondsem/djangogirls-tutorial/commit/e8fb212dee528ca80b9ec48c91fc6e4ad0376316 but as I said its pretty ugly. I would make it into a nunjucks macro I think, if folks are interested in this.

I think a GitBook plugin would be the best route. It would have to produce the JS/CSS necessary for this functionality. Generating several static output versions seems like it would...

Oh actually I forgot there is a better gitbook plugin to consider using and enhancing: [simpletabs](https://plugins.gitbook.com/plugin/simpletabs) And there's even a PR for adding it to the tutorial at #1173, although...