Jerry.Wang
Jerry.Wang
Thanks, `cargo expand` helps me to improve my code. ```rust impl prost::Message for BitSet { fn encoded_len(&self) -> usize { let bit_vec = &self.bit_vec; let vector : Vec = bit_vec.to_bytes();...
I have worked around this issue, the basic idea is to build jemalloc manually ``` ./configure --host=x86_64-w64-mingw32 --build=x86_64-unknown_linux-gnu --disable-cxx --disable-initial-exec-tls --with-private-namespace=_rjem_ --with-jemalloc-prefix=; make; ``` Then create the static library manually....
Did you figure out how to do this ?
Thanks @dlgoodchild , I am using this amazing library now, can you please give me some tip how to do that? by recreating the chart everytime the data is changed?...
Just my 5 cents: The procedure is something like `DATA =====encoding=====> BUFFER =====hashing=====> RESULT ` If considering performance, then we should avoid any heap allocation during this procedure. `DATA =====encoding...
After some research, here is my idea. If [this proposal](https://github.com/rchain/rchain/issues/3399) is accepted, the serialization performance is not so important any more. Because writing into LMDB can be offloaded to background...
I am overcoming this issue by using following code. The actual distinct segment number is just `size*size`, but I have to supply a larger buffer to solve it. ```javascript const...
Thanks @gaikwadrahul8 , please find Pen.io here: https://codepen.io/wangjia184/pen/NWJoXdq and watch console output ```html function init() { // Set the backend to WebGPU and wait for the module to be ready...
+1 for the same question, how to specify file upload via multipart form
The bug is from these lines: https://github.com/wangjia184/nokhwa/blob/8890670bf107fe7252d416a480dbe696de4211a8/nokhwa-bindings-linux/src/lib.rs#L200-L207 A fix is here : https://github.com/kendfrey/nokhwa/compare/0.10...wangjia184:nokhwa:0.10 you may try it ``` # https://github.com/l1npengtul/nokhwa/issues/177 # https://github.com/l1npengtul/nokhwa/issues/164 nokhwa = { version = "0.10.4", features =...