TrasherDK
TrasherDK
@goldbergyoni At this point, they are getting pretty organized, moving very quickly, releasing often. They have completed a major refactor, so it's looking solid.
Not a bad idea.
Depends on how `db.query()` is called. `results = await db.query("DELETE FROM ...", blabla,(err) => {})` gives you what you want. and `await db.query("DELETE FROM ...", blabla,(err, result) => {})` gives...
Looks like you are missing utf-8 support.
The line `npm ERR! gyp ERR! stack Error: not found: make` tells you what's wrong. You need to install prerequisites required to compile and link programs, whatever those are on...
` ```html ` formated code ` ``` ` ```html Document Html5Qrcode.getCameras().then(devices => { if (devices && devices.length) { var cameraId = devices[0].id; const choosenCamera = { facingMode: {exact: "environment"} };...
@ZLY201 you got your definitions wrong  It's `stack` - first in last out, as in `push` `pop` and `queue` first in first out, as in `push` `shift`.
For the next guy passing by :laughing: ```svelte let SvelteGantt; let SvelteGanttTable; let MomentSvelteGanttDateAdapter; let data; onMount(async() => { SvelteGantt = (await import ('svelte-gantt')).SvelteGantt SvelteGanttTable = (await import ('svelte-gantt')).SvelteGanttTable MomentSvelteGanttDateAdapter...
I did the same ~fix~ *hack* in `Modal.svelte` to silence the `a11y` warning. It's more of an annoyance, than anything else. ```js on:keypress={()=>{}} ``` It's probably not the right way...