Jean-Marc Le Roux

Results 212 comments of Jean-Marc Le Roux

That is correct. Somehow I got two versions of release-notes-generator installed. And I ran the wrong/old one. This is indeed fixed when using the latest version of all packages.

@jnioche I am running scaphandre on a K8S cluster following this documentation: https://hubblo-org.github.io/scaphandre-documentation/tutorials/kubernetes.html I have followed this workaround: https://github.com/mlco2/codecarbon/issues/244 Yet, even if my user can now read the file: ```...

``` ✅ Admin UI ready wait - compiling /api/__keystone_api_build... error - ../../../../usr/local/lib/node_modules/smartshape_license_nodejs/smartshape_license_nodejs.linux-x64-gnu.node Module parse failed: Unexpected character '' (1:0) You may need an appropriate loader to handle this file type,...

Since Webpack will hijack *any* call to `require()`, here is the workaround I found: ```javascript const { myNativeFunction } = eval('require')('/path/to/native/module'); ``` Then the `require()` in `/path/to/native/module/index.js` work as expected.

Might be related to: - #2202 - #1980 Might already be fixed by: - #1881

> Currently the id field in SurrealDB can only be a surrealdb::sql::Thing. They serialise and deserialise as such. @rushmorem so it means I have to duplicate my entire structs if...

Here is the workaround I have found to handle the `id` field separately: ```rust #[derive(Debug, Serialize)] pub struct Document where T: DeserializeOwned, { #[serde(flatten)] pub inner: T, pub id: Thing,...

We already use react for our 2D HTML5 UIs. We've developped a plugin for our 3D engine (https://github.com/aerys/minko) to have a cross-platform HTML5 DOM overlay on top of "native" 3D....

Definitely a must! I'd like to have this installable directly from a web page that distributes VR 3D content. Packaged Firefox and Chrome plugins would be awesome. Even better if...

Hi, we have to do those little changes first: - #26 - #27 - #28 In the meantime, you can start by translating the content of [intl.js](https://github.com/yahoo/react-intl).