Serhii Potapov
Serhii Potapov
Here are my benchmarks for Python 3.5, done on my laptop (debian). [master.txt](https://github.com/mre/hyperjson/files/2407852/master.txt) [fnv-hasher.txt](https://github.com/mre/hyperjson/files/2407853/fnv-hasher.txt) [fnv-hasher-with-default-capacity.txt](https://github.com/mre/hyperjson/files/2407854/fnv-hasher-with-default-capacity.txt) Here the result aggregated in one spreadsheet: https://docs.google.com/spreadsheets/d/1vrERpk-QLZYLQOHu8nh6fIAeTdEbNxp5bJEIPc-N-MM/edit?usp=sharing However, if I run the benchmark multiple...
Ok, running the following command: ``` time pipenv run pytest benchmarks --benchmark-warmup-iterations=100000 --benchmark-min-rounds=100000 ``` Shows to me a more or less reproducible result (I've tried 2 times). `fnv-hasher` branch slightly...
@mre Haha, you mentioned this PR today, but it never got merged :)
@fschutt Hi, thanks for the PR! Just out of curiosity: is there any real use case whatlang and no_std?
@fschutt Did you I get it right: you consider using whatlang to identify only script (writing system like Cyrillic, Latin, Arabic, etc) but not really languages? If so, would it...
@thed0ct0r Hi, I see what you mean. I had this in mind from day 0 of the project, but I was not issue about making this part of the API...
Hi @abhishekkr , thank you for the report! Right now whatlang is under heavy refactoring and improvements. The old version is based on trigrams only. The new one will also...
Hi. Thanks for the report. I do not mind adding this change. But you could you please provide ann example to illustrate how the difference between `env::var` and `env::var_os` matters?...
@corhere Thanks for the example. @Nokel81 I was not able to figure out how to do it gracefully yet.. If you have any ideas, they're welcome :)
@Keksoj This seems to be a very exotic use case! What do you think about this? ```rust #[derive(Envconfig)] struct Config { #[envconfig(from = ["POSTGRESQL_URL", "POSTGRES_URL"])] pub postgresql_url: String, } ```