Xavier Lange
Xavier Lange
I want to access a C++ from Rust, the library is called RDKit. I need to call the TautomerEnumerator method "enumerate": https://www.rdkit.org/docs/cppapi/classRDKit_1_1MolStandardize_1_1TautomerEnumerator.html#a9d6498bda978cf437f3b665a271fe5e7 My wrapper code looks like: ``` #include "rust/cxx.h"...
Is it possible to do quick-and-dirty string slices in a template? ```jinja2 {{ &t.token[0..10] }} ``` is giving me ```rust error: problems parsing template source at row 16, column 35...
RustDDS is current one BIG crate. This means that when projects rely on RustDDS they must build all the code in one big step. You can increase parallelism of cargo's...
Kubernetes StatefulSet support is easiest when pulling the broker id out of the hostname pattern $HOSTNAME="kafka-1" should be broker-id 1 So the start.sh script pulls that out of there with...
The NetflixOSS image is at least a year old  I've borrowed bits from https://github.com/dockerfile/java/tree/master/oracle-java8 and we're doing the java8 install ourselves. We could just ineherit from them but I...
If users write to their parquet files through an intermediate struct, we can help them out by generating the parquet schema from the struct. I like to model rows of...
I was trying to implement `ColumnWriter` variant-agnostic code for #197 and I could not close the column with `RowGroupWriter`. Looks like once you "upcast" the ColumnWriter -> ColumnWriterImpl you can't...
This issue has been mentioned in multiple tickets including #174. I'd like to have a tracking issue for design of a Record Writer. I was playing around with a procedural...
I'm learning parquet with this library and it there's a lot of room for messing up when it comes to closing various resources. It would be more rust-y (idiomatic) if...
I am loading numeric data from diesel with: ``` table! { currencies (id) { [[ SNIP ]]] conversion_rate -> Nullable, [[ SNIP ]]] } } ``` cast to a struct...