Joachim Viide
Joachim Viide
Copy-pasting here from [the other issue](https://github.com/badrap/bar-of-progress/issues/20#issuecomment-1204717991), maybe it's useful in this case: One thing worth noting is the `delay` option described [here](https://github.com/badrap/bar-of-progress#customization). The option controls how many milliseconds the page...
Pull request #5164 attempts to remove the LoadingSpinner contents from the DOM after the spinner has faded out. It seems to lower the idle CPU usage considerably - at least...
The problem arises from the fact that `chain(a)` expects `a` to return a `Result`. In this case `async e => await bar(e)` returns a `Promise` (like async functions always do)....
This issue has not seen activity for a while, so I'll close this. Feel free to reopen it (or a new issue) if the need arises 🙂
That's a cool idea! We could embed `` tags containing JavaScript that sends a unique token to URI:teller. Maybe there's some more straightforward way that I'm missing, though :) Currently...
uriteller used `emoji-flags` earlier. The size was the reason why I removed it.
`emoji-flag` depends on [`punycode2`](https://www.npmjs.com/package/punycode2). In our usecase (browser rendering) we can use `String.fromCodePoint` instead?
In fact it seems that the part of `punycode2` that `emoji-flag` uses does its conversions with String.fromCodePoint.
Yup. Would it be a good idea to make trap URLs return 404 (Not Found) instead of 200 (OK)? I don't know if it's needed at all, but maybe that...
@raimue explained it well. I'm actually not too worried about JPEG, but some less battle-hardened parsers for more exotic formats might have problems. Other status code choices include 401 (Unauthorized)...