Pascal Hertleif
Pascal Hertleif
I just came across the unic crate and it's many sub-crates that all seem to be called `unic-(\w+)`. Now, I can't _not_ open an issue about one glaring omission: There...
While version numbers like `1.17.4` are nice for machines, humans sometimes need things that are easy to remember. It would be pretty cool to automatically suggest names for versions, e.g....
Is there an option, or the plan to add an option, to skip invalid records in a file? Let's say I want to pipe the output of `cargo rustc --quiet...
While `infer_schema!` and friends support postgres schemas, they only do so statically; i.e., you specify that for database `foo` you want the tables from schema `bar` using `infer_schema!("postgres://foo", "bar")`. Another...
If you supply pre-built binaries (maybe also make them available via homebrew), I think this will quickly become *the* way to answer "code, y u so slow". Especially interesting once...
Very nice, I really like your style of writing! It's a bit more _sudden_ in introducing new things, and mentions a lot of nice details on the side. I only...
Under "Features", the Readme [says](https://github.com/silvia-odwyer/photon/tree/06d14eec21716f46626143cb7ca63acba835e05f#features): > Unlike other libraries, this 100% of the library's codebase is written in Rust, so security and safety is guaranteed. This is great as marketing,...
I'm a big fan on inferring documentation properties from code: I'm using _documentation.js_ mainly because it allows me to omit the ‘boring’ parts of doc comments by using Flow types....
Hi, I've recently been using rusoto to upload/download some larger files. I wanted to let the user know how the task is processing, so I tried to hook into some...
Almost all Mongoose methods return promises (using the `mpromise`module), but the methods added by this module don't. E.g.: `User.findOne({name: me}).exec()` vs. `User.findByUsername(name, callback)` It's not a big deal, just something...