some1ataplace
some1ataplace
Did not test this but maybe it can help someone write a PR. Code for tinymce-setup.js with the necessary configuration to render Django template tags in the editor content: ```...
Just guessing here but maybe try making your own folder/files inside of these /static/tinymce/skins/ directories or override these directories yourself: https://github.com/jazzband/django-tinymce/tree/master/tinymce/static/tinymce/skins/ui https://github.com/jazzband/django-tinymce/tree/master/tinymce/static/tinymce/skins/content For example, inside TINYMCE_DEFAULT_CONFIG we can currently do...
To change Django-tinymce to use a custom skin you created, you can follow these steps: 1. Create a new skin directory in your static files directory, for example: static/tinymce/skins/my_skin/ 2....
Looks like it is a paid feature: https://www.tiny.cloud/docs/tinymce/6/pageembed/ https://www.tiny.cloud/pricing/ The question I have is if we pay for it, how do we implement this using django-tinymce? We most likely need...
Maybe try this. Modify the RedisBroker class in spinach to handle jobs without concurrency limits. Specifically, you can add a check in the _acquire_lock method to see if the job...
Maybe try this. Modify the Worker class in spinach to handle non-idempotent jobs that fail on a dead broker. Specifically, you can add a check in the process_job method to...
Getting this error on Debian. Not using a graphics card, only a CPU. Some models work and can be downloaded successfully, but others fail with this error. Commands: ``` ollama...
Interestingly enough, after restarting the ollama server it worked. `export OLLAMA_DEBUG="1"` ``` sudo systemctl stop ollama sudo service ollama restart sudo systemctl start ollama sudo service ollama status ``` ollama.service...
@dynobo Yes it still exists. ``` ./NormCap-0.6.0-beta1-x86_64.AppImage /tmp/.mount_NormCaonpaMh/AppRun: line 11: 2839522 Segmentation fault "${APPDIR}/usr/python/bin/python3" -u -s -X utf8 -c "import runpy, sys; sys.path.pop(0); runpy.run_module('${BRIEFCASE_MAIN_MODULE}', run_name='__main__', alter_sys=True)" "$@" ```
I thought the same thing, which is why I made this PR but it got rejected. But, you can try what Sergei mentions in his comment. Maybe it would be...