Chris Josten
Chris Josten
I have the same situation in my Sailfin application, where I needed to implement a login flow. What I do is when the user submits their login details, I push...
I don't have anything against a copyleft license, but using the Creative Commons Attribution-Sharealike 3.0 license (CC-BY-SA-3.0) makes the code hard to use the library code in other applications. CC-BY-SA-3.0...
Currently I'm writing a wrapper library for the D programming language, which I want to use with a simple monitoring daemon I'm planning to write on my Raspberry Pi for...
JSON object are an unordered set of name/value pairs, [according to the specification](https://www.json.org/json-en.html). It's MongoDB to blame here for relying on the order of name/value pairs in the object, this...
As an additional note: `std.json` does not preserve order either. Calling `toString(…)` calls [`toJSON(…)`](https://dlang.org/phobos/std_json.html#.toJSON) which happens to sort objects by keys. Since the object you posted in your example is...
I have made an attempt to add meson support in vibe-core, in the linked pull request above, but unit tests kept failing and I hadn't the time to fix it...
This may be related to #1647
It does not seem so. Scaling is correct in the normal and wireframe viewport shading, but when switching to any other viewport or if you try to render your model,...
I cannot get the unit tests to work on Meson for some reason, would anyone be able to help me out with that? Or would omitting the unit test be...
> @HenkKalkwater Hi! I am interested in Meson too > > Why we use `import('pkgconfig')` here? Very likely because I want to generate a pkgconfig file for this library (it...