Sebastian Messmer
Sebastian Messmer
If I use the following set up to set `compiler.libcxx=libstdc++11`, then it works correctly: ``` set(_GLIBCXX_USE_CXX11_ABI 1) conan_cmake_run( CONANFILE conanfile.py BUILD all) ``` Partial output: ``` -- Conan: Automatic detection...
Looking at the source code, it seems this crate always uses a sequential algorithm and only one core, even when the scrypt parameter p is larger than 1. For p>1,...
I'm storing the object ids of a `Source` into the `screep.memory` and load it later to try and get the `Source` object back. This works great if the object id...
I use this code to find my structures that can be a delivery destination for energy: ``` fn structure_has_space_for_more_energy(structure: &OwnedStructure) -> bool { if let Some(structure) = structure.as_has_store() { structure.store_free_capacity(Some(ResourceType::Energy))...
I'd like to set up my S3 cache so that CI runs on pull requests can read from the cache, but for security reasons they shouldn't be able to write...
https://github.com/actions/cache allows giving it multiple `restore-keys` and it'll try to prefix-match them in order against existing cache entries. This allows useful setups like having a cache per repository branch, with...
Trying to run "cargo screeps build", I'm getting: ``` ~/screeps (master) [1]> cargo screeps build cargo_screeps::run: compiling... error: usage of `--profile` requires `-Z unstable-options` error: cargo-web build failed: build failed...
Thanks for adding `CxxVector::push/pop` in https://github.com/dtolnay/cxx/issues/778. To remove the other most common kind of manual binding work when working with `CxxVector`, a `CxxVector::new` and a `CxxVector::with_capacity` function would be great....
I checked the calls I'm getting in `mkdir` and `create`, and it seems that the calling process's `umask` is already automatically applied to the `mode` argument and the additional `umask`...