Amit Rathi
Amit Rathi
He probably means, how to hook up Django session authentication with Vue so that HTTP calls made from vue include the session information? At least I would like to know...
I built [ReviewNB GitHub App](https://github.com/marketplace/review-notebook-app) for Jupyter notebook code reviews. More about it [here](https://towardsdatascience.com/introducing-reviewnb-visual-diff-for-jupyter-notebooks-6797e6dfa20c). It renders visual diffs for notebook commits and pull requests & lets you write comments to...
So the issue turned out to be broad regex for italics which I have [modified in my fork](https://github.com/amit1rrr/quill-markdown-shortcuts/commit/8c3e6849d3ce3d1017c841f65a44bab192371ef9). The problem with the previous regex is that it captures any 2...
@merrcury Thanks for helping on this. Here's my thought process, - There needs to be a front end Jupyter extension to capture which cells to ignore. This can be a...
@garrison thanks for reporting. So treon doesn't use asyncio (at least not directly), we use ThreadPool for parallelisation. Can we see a longer stack trace? I'm thinking the error might...
Yes, if it's possible to reproduce it consistently on some notebooks then it would be easier to dig deeper. > I typically invoke treon as treon . --threads 2. I...
I debated for a while between supporting unittest vs pytest at the beginning & mainly chose unittest because, - It's easier for non-developers to get started with (a lot of...
> There are also the ipytest and nbval projects which slightly overlap in functionality. I don't know if including either of these would make the integration of pytest into treon...
From what I understand, you can force mathjax to render everything with `MathJax.Hub.Queue(["Typeset",MathJax.Hub]);`. It adds a task to render all the math in MathJax's queue. Then you can add another...
> A global variable that gets set by the MathJax callback and checked by our pypetteer poll'er That's the simple/easy way to go about it. It's also the [suggested way](https://groups.google.com/g/mathjax-users/c/646OP9Y1yKE)...