Nolan Lawson
Nolan Lawson
That's interesting, yeah. If you know what kind of data you're working with, then you can probably choose a reasonable batch size. But for a generic database like `absurd-sql` it's...
Yup, this app relies on reading the system log, which is no longer available in Jelly Bean: http://nolanlawson.com/2012/09/02/catlog-jives-with-jelly-bean-goes-open-source/
Whoops, actually I think that's just for Services. This seems to be the actual Activity call: 03-14 16:46:20.350 W/ActivityManager(2690): Trying to launch com.facelock4appspro/com.facedklib.PasswordActivity
What type is `response.data`? Do you have a test case to reproduce? Thanks!
Yep, this is true! I assumed base64 encoding for data URLs (for both input and output).
Would it be enough to URL-encode the type? I.e. ```js 'data:' + encodeURIComponent(blob.type) + ';base64,' + base64String ``` ? It seems to me that if a Blob (in this case...
OTOH if the `blob.url` already contains `;base64` in it, then I'm not sure there's much we can do except implement an entire mime parser, which I really don't think should...
This sounds like a tricky issue. I guess since blob-util is modular, it may be worth fixing. But your workaround also works fine and it seems like a bit of...
Hm, I didn't even realize you could fetch an object without waiting for `onsuccess`. :) So I guess this wouldn't be such a big deal for us; we can just...
@littledan Yep, the emoji data itself is the biggest chunk. Here's [emoji-mart's data](https://github.com/missive/emoji-mart/tree/master/data) – the `all.json` is over half a meg. I think including the names would very helpful, and...