Simonas Kazlauskas
Simonas Kazlauskas
We have been thinking, that the focus will soon shift back to the quality of the codegen, especially once memtries are enabled and the performance improvement of doing so is...
libstd recently stabilized a number of types that mirror what `once_cell` crate has been doing. We could replace this crate now with the libstd implementation, thus reducing our direct dependencies...
When creating an OCPP server node, specifying the same port as the node-red itself will lead to node-red itself crashing. In principle this issue could be viewed as two distinct...
With projects like crates.fyi coming out it is becoming a desirable service to have a capability to receive some notification about new crate uploads. It could be either implemented as...
The new release of tracy now supports setting colours when allocating srcloc for span. We should too at least in `tracy-client`.
Once in a while our test that tests MSRV breaks, usually due to dependency changes, and currently the best action to resolve this is to test a higher version. We...
Still testing locally, hence a draft (I usually am able to reproduce the problem once every week or so...) I have chosen to go with a minimally intrusive solution here....
After 2 weeks-ish of runtime with a real CB I have noticed that at some point I would no longer be able to send any messages to the CB via...
When "Delay connection on startup" is NOT checked, the node will not attempt to auto-connect at all. If it IS checked, then the node will auto-connect. https://github.com/Argonne-National-Laboratory/node-red-contrib-ocpp/blob/f42d4c5a2793105cf807906556186dd67282efd2/ocpp/ocpp-cp-json.js#L52 However, even if...
To rotate by 180 degrees while also converting BGR to RGB, the most efficient implementation is to invert the memory buffer by e.g. a backward memcpy. I *think* optimizer should...