Alan Johnson
Alan Johnson
With the default Next.js Babel settings, async functions are transpiled to generators, which are further translated to Regenerator. This makes debugging more awkward than it needs to be. I can't...
Not knowing this project existed, I created my own project that's very similar: https://github.com/acjay/taggy. A friend [clued me into Newtypes](https://www.reddit.com/r/scala/comments/6yivif/taggy_singleline_tagged_type_helper_for_better/dmog60o/) and looking into it, I realized that Shapeless's `tag` has...
Is there going to be a standard for documenting what's available here, with usage examples, etc?
Example -- https://staging.artsy.net/blahblah
When I load an artwork page as a registered bidder, as I'm trying to select my bid in the dropdown menu, the browser keeps dismissing the dropdown before I can...
[The BEM website defines](https://en.bem.info/method/naming-convention/#element-modifier) a form of modifier that has a key and a value, as opposed to just being present or absent. But the library appears to take the...
I'm not sure whether this is intentional or not, but `R.clone` does not copy symbol props from the source object. If it is intentional, I would think it should probably...
How are failed futures handled? Does the whole `async` block just fail? Is there a way to handle individual failed `await`s within one `async` block, or is the only solution...
> I have seen the future, and it looks a lot like GraphQL. Mark my words: in 5 years, newly minted full-stack app developers won’t be debating RESTfulness anymore, because...
I'm trying to capture the literal floating-point number that a person used in a data structure: ``` scala> trait Capture { def text: String } defined trait Capture scala> implicit...