Richard Schloss

Results 43 comments of Richard Schloss

Hi I appreciate the work you've done. This is my first Svelte project and I'm having issues with the extension and autocomplete. Does it matter what version of vs code...

Update. Ok...I figured out what my specific issue was.. the [svelte blog](https://svelte.dev/blog/setting-up-your-editor) says to have this in vscode settings: ``` "files.associations": { "*.svelte": "html" //

https://github.com/jonschlinkert/gray-matter/pull/132 seems to contain the pending fix.

Thanks for the analysis! I just updated PR #7 to pass the array values by reference. Test results are in this [JSFiddle](https://jsfiddle.net/e65zcqus/). Another good read might be this discussion on...

I like the updates and I like the "Simple English" points. I think you bring up good points.

Oh ok On Sun, Jan 5, 2020, 5:42 PM Steve Mao wrote: > You're sacrificing Correctness by construction and Ergonomics and > maintainability for Runtime performance. I think the list...

Perhaps. It's an interesting thought On Tue, Jan 7, 2020, 5:14 AM Steve Mao wrote: > A think a better solution might be to write a babel plugin. That way...

Updated my PR #7 taking into account @auterium 's analysis. The original code passed in the values by reference, and I didn't take into account the performance impact my array...

How about writing the unfold method as you have `unfoldAlt`, but slightly changing the ternary operation to: ``` const unfold = (f, seed) => { const go = (f, val,...

I like that idea, and I think the Array fill map idea (`rangeFillMap`) is pretty neat, perhaps belongs in it's own section.