Dmitry Vasilev

Results 26 comments of Dmitry Vasilev

Got it, thank you:) Celery lacks good monitoring so badly.

Same here. I just terminate them manually now. ``` import signal, psutil, os def kill_child_processes(parent_pid, sig=signal.SIGTERM): try: parent = psutil.Process(parent_pid) except psutil.NoSuchProcess: return children = parent.children(recursive=True) print(children) for process in...

@csugzq Hey, can you try this please - `resp.html.session.browser.close()`. I investigated it here - https://github.com/kennethreitz/requests-html/issues/165

same here. damned flask and his not supported batteries

Eventually what worked for me: just clone it form github, install all the deps via poetry for correct python version (3.9.1) and viola!

Same here:( **UPD:** Hmm, seems to be working with `"styled-jsx": "latest"` in the package.json. **UPD2:** nope it freaking doesn't. Screw NPM.

@xucheng2008 nope, I believe I gave up on this

@thedrew12 It turned out we need to define a schema for the editor to make this work. https://stackoverflow.com/questions/52575301/image-insertion-at-cursor-in-editor-using-slatejs my schema - https://pastebin.com/HjzFcNq8

@thedrew12 What happens if you comment out the `onPaste`attribute? I've disabled it for me now because there was a conflict with the url pasting example and I haven't adapted it...