Results 70 comments of Nick Hu

I believe this is fixed in this branch: https://github.com/yusdacra/crate2nix/tree/feat/builtinfetchgit @yusdacra, would you be willing to upstream your changes?

I'm writing a Google calendar plugin, and I'd really like some way to hook into how the agenda view is built and maybe also some way to override what happens...

I had a bit of a think about this and I think the best approach would be to support 'Special Properties' first: https://orgmode.org/manual/Special-Properties.html#Special-Properties, and then utilise the BLOCKED property to...

@IvanMalison Ah indeed that was probably it! Documenting the fix here for posterity: I set ``` gtk = { enable = true; iconTheme = { name = "Numix"; package =...

I suppose that makes sense. I'll try to submit a PR later to add some more documentation at the very least - I'm wondering if you have any suggestions for...

I have a couple of observations to make. I think lots of the potential of h264 lie in the colourspace, and also having specialised instructions to get hardware acceleration. Seeing...

If you link against https://github.com/thoughtpolice/minibsdiff, you can change the compressor that bsdiff uses. XOR is an interesting idea too - I would guess it also has less complexity, seeing as...

@levincoolxyz I coded up a similar experiment, using a double buffer for input, xor'ing it together, and then compressing the result with lz4 - unfortunately, it doesn't seem any faster....

Another thing I wanted to mention is that the CPU inside the remarkable is the Freescale i.MX 6 SoloLite, which has NEON, so in principle the XOR loop can utilise...