Felix Dietze

Results 138 comments of Felix Dietze

@armanbilge could you please review? I have this running in production for some time now.

> Thanks for the ping, glad it's working for you :) I'm not really a maintainer here. Thanks for your reply! Who is the maintainer then? There are many unreviewed...

For reference, we have a fairly minimal Outwatch template with hot reloading available: https://github.com/outwatch/seed.g8 There is also a scalajs full-stack template to deploy to AWS lambda: https://github.com/fun-stack/example Lots of experience...

Have a look at https://github.com/jlongster/absurd-sql, it uses indexedDb as a file system for sqlite

I'm also facing a `out of memory` error and have no idea what could be wrong. I'm trying to do: ``` const blob: Uint8Array = ... new SQL.Database(blob); ``` Any...

It's only 64K. It worked before. And out of a sudden I got this error. I even checked out an older revision on the same project where I knew it...

So I tried again. I successfully lodaed my database file in the online demo (https://sql.js.org/examples/GUI/) and everything is working well. Now, I'm using this code: ```typescript let blob = new...

I solved it. It seems like the hosted wasm binary has changed. This fixed my issue: ```diff const SQL = await initSqlJs({ - locateFile: (file) => `https://sql.js.org/dist/${file}`, + locateFile: (file)...

To disable dragging of a component, I dynamically remove the `draggable` class. This works well for me.

Nesting is already possible with the current `Sortable`: https://jsfiddle.net/zodqmx09/6/