Simran
Simran
> IgnoreURLs - Array of regexs of URLs to ignore. Since it accepts regular expressions, this is already possible, e.g.: ```yaml IgnoreURLs: - ^https?://(www\.)?example\.org\b ``` The above regex should match...
Which version of the plugin do you try to install? The 0.5.2 release and the master branch are for Blender 2.78. There are branches for 2.8x and 2.9x, but I...
WebM supported an alpha channel mid 2013 already: https://developers.google.com/web/updates/2013/07/Alpha-transparency-in-Chrome-video
The server-side issue is fixed in 3.6.12 and 3.7.7, but it may still be desirable to have a driver-side workaround for earlier versions.
Done. Also added VPack to the table a little further down (a bit wonky): https://en.wikipedia.org/wiki/Comparison_of_data_serialization_formats#Comparison_of_binary_formats I believe small integers are not zero-copy, because they need to be loaded into a...
@jsteemann The Performance section in the docs is still _to be written_. Do we have some numbers, maybe on some 3rd party site? https://github.com/arangodb/velocypack/blob/master/Performance.md#performance
Thanks for the detailed reasoning! More types would mean more work indeed and I think pretty much everything can be modeled with already specified types (fuzzy dates being my personal...
Some additional data types available in CBOR (all UTF-8 strings): - URI - base64url - base64 - RegExp - MIME message Three more random thoughts: - VPack data split across...
FWIW: The last release with a *-storage.tgz asset was version 0.3.14
I guess this could also be handy in skip() to align e.g. to multiples of 8 bytes? Padding is quite common in data structures like you get from C++.