Sean McCarthy
Sean McCarthy
I actually was wondering this same thing. Here's how I made it work. The following modifies the "index_string" per this article. https://dash.plot.ly/external-resources `from flask import Flask, render_template_string` ``` def _get_index_string(template):...
I think it just can't find your templates folder. Just a file path issue. I think you need to specify it when creating the Dash app. Cheers ________________________________ From: Wanwu...
I'd bring them back, warn users, and document it as well. Software should have good defaults, but allow users the freedom to do what they want if they understand the...
> pixel = 50 + round(name_length*PIXEL_FOR_CHAR) What's PIXEL_FOR_CHAR?
I've experienced this problem as well, and had to use cx_Oracle for certain tables, instead of my preferred (much faster) turbodbc.
Why not just create a standalone Docker image for the time being? That way people who use Docker can at least have it installed properly. I've created one [here](https://github.com/mccarthysean/TimescaleDB-Backup-S3) on...
FYI, I've updated my Dockerfile so that instead of trying to `go get...` then `go build...` ts-dump, I'm now downloading the Linux x86-64 binaries and renaming them, and this seems...
Here's a "Dockerfile" for creating a Docker container/image that has ts-dump and ts-restore installed. Note how it runs `go mod tidy` and `go build` after downloading with `go get`. I'm...
FYI, I've updated my Dockerfile so that instead of trying to `go get...` then `go build...` ts-dump, I'm now downloading the Linux x86-64 binaries and renaming them, and this seems...
I'd love if Odoo could fix this. Our organization has disabled basic auth in Office 365 "Security Defaults", so we have to use modern authentication (i.e. OAuth 2.0) now. Thus,...