Andy Gee
Andy Gee
I had a similar issue. Initially I went to the setup page which loaded ok. I decided to change an email address in the config and reloaded the page which...
How about save external images until say 10 seconds has expired, then add a single cron job to trigger the save post image handler `save`. Untested edit ``` public function...
`=if(OR(RIGHT(A2,2)="00",RIGHT(A2,2)="01",RIGHT(A2,2)="02",RIGHT(A2,2)="03",RIGHT(A2,2)="04",RIGHT(A2,2)="16",RIGHT(A2,2)="17",RIGHT(A2,2)="18",RIGHT(A2,2)="19",RIGHT(A2,2)="31",RIGHT(A2,2)="32",RIGHT(A2,2)="33",RIGHT(A2,2)="34",RIGHT(A2,2)="46",RIGHT(A2,2)="47",RIGHT(A2,2)="48",RIGHT(A2,2)="49"),ROUNDDOWN(A2*96,0)/96,ROUNDUP(A2*96,0)/96)` > > See > https://docs.google.com/spreadsheets/d/1T6HmZvLXQhSKCmhaNXTKBnyT02LHz94c7cDn8r71PeU/edit# This might be more manageable for your spreadsheet at least. `=(ROUNDDOWN(MAX(0,(A2*1440)+10)/150,1)*150)/1440`
Well, at least your computer has a sense of humor.
> Are there any plans to support bootstrap5? It works with a template directive Vanilla ```javascript document.addEventListener('DOMContentLoaded', function() { var checkboxes = document.getElementById('multiple-checkboxes'); $(checkboxes).multiselect({ templates: { button: '', } });...
I have a GeForce GTX 1060 3GB under Win10 and I'm able to reliably run SD with only the `Low VRAM (medram)` option.  However I am limited to a...
> > I have a GeForce GTX 1060 3GB under Win10 and I'm able to reliably run SD with only the `Low VRAM (medram)` option. > >  > >...
```ts function get_closest(hex) { let color = hex.toUpperCase(); let minDistance = Number.MAX_SAFE_INTEGER; let closestColorName = ''; for (let c in colors) { let distance = getDistance(color, c); if (distance <...
> Because there's 16 million possible colors to name. Even if you count the fact that some of them have the same color, you still have to build through a...
> > How about save external images until say 10 seconds has expired, then add a single cron job to trigger the save post image handler `save`. > > hello...