Marco D'Agostini
Marco D'Agostini
cd into kaldi's folder and build gst-plugin, it should go something like this: ``` cd ~/kaldi/src/gst-plugin make depend; make ``` and don't forget to add `export GST_PLUGIN_PATH=~/kaldi/src/gst-plugin`
I agree with [HoldYourWaffle](#issuecomment-489305074), this could be partially solved along with #91 by implementing an opt-in [JSON data type](https://dev.mysql.com/doc/refman/8.0/en/json.html) for the `data` column. I say partially, because this still does...
To prevent a reactive assignment to climb up the dependency tree ```js $: data = obj.data ``` becomes ```js let data; const getData = obj => obj.data $: getData(obj) //...
Within my own ignorance, I feel like there should be 2 separate ways of "reactive declarations", depending on how the invalidate moves the dependency tree: 1. _one-way (downward)_ 2. _two-way...
I'm using version 3.6 and manifest v2 content-scripts are working fine, and firefox recognizes the `esm` format, but `executeScript(...)` fails if the script has `esm` format, so the workaround is...
Yeah, I thought this was just a bug of svelte. I didn't realized it was almost standard behaviour (in firefox `event.currentTarget` goes to `null` in a setTimeout)
For the record, these are the differences I have noticed about how and when `event.currentTarget` changes reference: ### Svelte 5 `onclick` - Changes after any `await`, `.then()`, or inside a...
Thank's for reviewing. Sorry I didn't notice that --addr-limit was being ignored, I can confirm, I'll check into that.
Done! I Screwed up with the 2nd commit, reverted it and problem solved.
I'm not sure what you are talking about, but probably this PR does not do what you want. I've tried to make this PR as good as I can, but...