Boscop

Results 547 comments of Boscop

The first thing I did when using this crate is write a function that takes a &'static str, constructs a selector and unwraps the Result. I would like if this...

It would probably also be faster to use a different hasher for the HashSet. Here are some benchmarks: https://github.com/shepmaster/twox-hash#benchmarks Or getting `O(1)` lookup through perfect hashing with https://crates.io/crates/phf Or using...

Note: You can just write `use fnv::{FnvHashMap as HashMap, FnvHashSet as HashSet};` as a drop-in replacement causing a minimal diff.

It seems this repo is not maintained anymore. Is there an active fork? We can't let cargo-script die.

Ah, this seems to be the successor: https://github.com/reitermarkus/cargo-eval (https://crates.io/crates/cargo-eval). Maybe you could open your PR at that repo?

Yes, I also refuse to upgrade to Win 10, I'm still using 8.1 (without Metro UI). I'm curious, why do you think that Win 7 is better than 8.1? Does...

Any update on this? I only have a 4k screen and I wrote an imgui based app. How can I upscale it? This is very important for me, the small...

@ocornut Thanks! I would already be happy to only support one DPI (not multiple monitors with different DPIs for the same window). I'm using the Rust bindings, loading my font...

Yes, I'd gladly accept PRs :) Yes, any types that correspond to postgis types or are useful in conjunction with them are in the scope of this crate.

@mirosval Hm, not sure, I just bind the longitude and latitude like this: ```rust sql_query(" ... ST_SetSRID(ST_MakePoint($1, $2), 4326)::geography` ... ") .bind::(lon) .bind::(lat) ``` (Note: longitude is the first arg.)...