Beni Cherniavsky-Paskin
Beni Cherniavsky-Paskin
- Tried `IPython.lib.deepreload.reload()`, it messed up the import machinery and I had to restart. Anyway that doesn't address (3). - The real magical one is https://ipython.org/ipython-doc/3/config/extensions/autoreload.html which does impressive stuff...
### caveat: Order matters with inheritance - [ ] If the list of reloaded files contains both some base.py and subclass.py, order matters. If you first execute subclass.py: ```py from...
I'm not sure I understand your question right, can you elaborate where/what exactly are you editing? tips if you tried my recipe above and newm/**py edits have no visible effects:...
if you are asking how it works without my kludge: ### newm's current config reload flow - The shortcut or `newm-cmd update-config` trigger this: https://github.com/jbuchermn/newm/blob/d5831bbca8815fa77c14616c778d3398116b0808/newm/layout.py#L1212-L1217 - Your config file is...
> This [using `$`] should work as of commit be057bde393a479acf343680b525a102a8eea633. Yep, here is current delimiters behavior (for "Mixed text" blocks):  The mode is auto-detected on each line: * if...
Prior art: gnu readline lib has `tilde-expand` command (bound to Alt+~ by default) that expands `~` and `~user` in-place. Also, if you add `set expand-tilde on` to ~/.inputrc, TAB completion...
duplicate of #306. @dependabot rebase (CI failed above but the run was too old to see details)
Ah I see: As https://github.com/idank/explainshell/issues/261#issuecomment-922116577 says, [nltk 3.4.5](https://pypi.org/project/nltk/3.4.5/) was last version to support python 2.7. [nltk 3.5](https://pypi.org/project/nltk/3.5/) already requires python 3.5–3.8 So a simple bump: ```diff -nltk==3.4.5 +nltk==3.6.6 ``` is...
It shouldn't matter whether you extract an object `...${attr}` or place it inline. I suspect the difference is that you forgot [url()](https://developer.mozilla.org/en-US/docs/Web/CSS/background-image) around it: ```diff -style="background-image: ${baseLayerThumb}; +style="background-image: url(${baseLayerThumb}); ```
/reopen - [ ] Documents are still confusing and at least one is wrong. Edited OP with a bit more details. To partially answer myself, /processedtemplates endpoint is a pseudo-collection...