Joshua Koudys

Results 11 comments of Joshua Koudys

Thanks Jean! This library has definitely always targeted the composition-based approach; while we do support extension (hence the heavy `return static` approach you've noted), I did consider declaring the `ImmArray`...

@abonander big agree on the 2nd point. Personally I strongly dislike that the query is formatted at all -- we're _losing_ valuable information in the logs! The original, unaltered string...

ODBC support would also help in calling snowflake without introducing proprietary licenced API support. From #116 , > * SQLx wants to remain as pure Rust as possible. There are...

@CrossEye Hey Scott, I'm very experienced and happy to help out with this. My main goal is to let me use Ramda to work with collections aside from arrays and...

That article's about the limits on the Twitter API usage. These are deleted tweets and therefore not accessed via the API.

Definitely not a problem in the original game. Spider cave is where I'd go to stock up on meat.

Here's the `cargo build -vv` output: ``` aused by: process didn't exit successfully: `CARGO=/home/jkoudys/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_BIN_NAME=clausehound-ml CARGO_CRATE_NAME=clausehound_ml CARGO_MANIFEST_DIR=/home/jkoudys/clausehound/clausehound-ml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=clausehound-ml CARGO_PKG_REPOSITORY='' CARGO_PKG_VERSION=0.1.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1...

Got it to build by manually deleting all those ASSERT macros throughout the headers. Sorta runs, but not great: ``` use tch::Tensor; fn main() { let t = Tensor::of_slice(&[3, 1,...

Okay looks like this is a build flag mismatch between the pytorch installed by pip (1.12.0 or 1.12.1), as per the pytorch site, and the build flags tch-rs expects built...

Probably. The free was likely because I was deleting hundreds of macro calls indiscriminately and with hasty abandon, so one probably slipped past without a matching malloc. If the correct...