Larry Battle

Results 31 comments of Larry Battle

The MDN docs say that Firefox don't currently support `recognition.continuous`. However, they post a workaround. ```js recognition.onresult = function(event) { ... recognition.start(); } ``` So maybe.... putting `recognition.start();` at the...

Related: https://github.com/TalAter/annyang/issues/406

2.5 MB should be a good limit for localstorage. You could find the remaining storage amount with this [function](https://groups.google.com/a/chromium.org/forum/?fromgroups=#!topic/chromium-discuss/onq2Fz1XGy4) ``` function remainingLocalStorageSpace(){ return 25e5 - JSON.stringify(localStorage).length; } ```

@shealan Here's a fix for the error you posted above. https://github.com/aarondfrancis/vue-model/pull/21/files#diff-c77313286b99f6fd1fe95aea12730c16R191 I didn't create a demo. So I'm not sure if that fixes everything else.

Yes. Try it and let me know if it works.

Done

Output to a webm video format, then include it using the video HTML5 tag. More info: - https://github.com/charmbracelet/vhs#output - https://en.wikipedia.org/wiki/WebP - https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video

Hey trueadm, For minimization, I plan to convert the problem to the dual max, as this is the easiest solution. Expect an update later on this week. Resource for solving...

It's faster if you have javascript compute the value then send Ratio.js the result to form into a fraction. But I'll look into adding this in. ``` Ratio.parse( (0.1 +...

I'm not if reduce should be set to true as a default since there is a significant performance penalty... More testing will need to be done.