Devin McCabe

Results 20 comments of Devin McCabe

No worries, it's FOSS after all. Thanks again for making this library. Being able to import/export an existing SQLite database would basically make irrelevant the one thing PouchDB still has...

Thanks for the fix. I was able to get that code to work with `absurd-example-project`, although only if I used 0.0.49 of absurd-sql or earlier. Starting with 0.0.50, I get...

Hmm, never mind. When I copied a fresh copy of `sql-wasm.wasm` from `@urdeveloper/sql.js/dist/` it worked this time. Feel free to close this issue.

I played around with various HAML helpers to try to get it to preserve the whitespace properly, but gave up and started to see this issue as a sign that...

First pass at a Zappa callback function to set the provisioned concurrency: https://gist.github.com/dpmccabe/1e935626e7efd759d55bd2f44ba07439

Here's a simple solution to increment a counter every 10 seconds. *JS* ```javascript var socket_timeout_interval; var n = 0; $(document).on('shiny:connected', function(event) { socket_timeout_interval = setInterval(function() { Shiny.onInputChange('alive_count', n++) }, 10000);...

How did you find the wheel cache? I'm experiencing this problem now with the pandas package.

Just run this non-exported function before `spacy_install`: ```r spacyr:::install_miniconda() spacyr::spacy_install(conda = "auto", ...) ```

Yes, I suppose it could be a variant of the derived store that waits for the next tick. Alternatively, there could be an explicit `batch` function like in the linked...

Wow, thanks @divdavem. I've been looking for something exactly like this for a while!