Valentin Lab
Valentin Lab
I can confirm this issue, this seems to depend on the image Fails with `Debian 8 64 bits (HVM)`: ``` gandi vm create --hostname test1 --image "Debian 8 64 bits...
@akanouras Thanks for your help on this. On my try (Docker using ``debian:stretch`` image...) ``caldavd`` still tries to compile things on its own when executed and thus required ``build-essential``, ``python-dev``......
Just seen in the code that ``Inkstone`` is using [createjs](https://www.createjs.com/) which uses canvas and enable all WebGL niceties and use the GPU mostly.
setting ``usePolygonMasks`` to ``true`` didn't change anything on my test mobile phone.
A valuable comparison on SVG vs Canvas: https://www.sitepoint.com/canvas-vs-svg-choosing-the-right-tool-for-the-job/
I wouldn't be surprised if we could have most of both world by off-loading a lot to CSS animation that will be able to use hardware acceleration and keep SVG...
The [SVGs from makemeahanzi](https://github.com/skishore/makemeahanzi/tree/master/svgs) are not animated at all. I guess these CSS animation are not supported. I'll tinker a little more, but this is very possible that only a...
I'm inclined to go towards these changements:: shyaml KEY [--get-keys | --get-values | --get-key-values | --get-type] [-0] [--default DEFAULT] With these rules: - all the `--get-*` are mutually exclusive and...
Hi, my first go was to avoid making argument parsing complicated. I wanted to avoid all the hassle. I know that there are marvelous library existing to parse the command...
I would suggest using: ``` find . -iname \*.yaml | while read file; do cat "$file" | shyaml get-value foo.bar; done ``` Anyway, I'm still in favor to add a...