Kyle Lacy
Kyle Lacy
Currently, `Ducc::new()` always creates a new Duktape heap for the context. However, this means values cannot be shared across contexts except through serialization. The Duktape guide has a section on...
Rust version: `rustc 1.62.0 (a8314ef7d 2022-06-27)` Godot version: `Godot Engine v3.4.4.stable.official.419e713a2` godot-rust version: `0.10.0` Platform: Windows 11 (`x86_64-pc-windows-msvc`) I ran into what looks like a segfault when interacting with a...
I started configuring `vite-plugin-checker` for one of my projects today, and I ran into the same issue described in #115. I'm not entirely clear why that issue was closed, as...
Consider the following struct and impl for 2D coordinates: ``` rust struct Point { x: f64, y: f64 } impl Point { pub fn x_mut(&mut self) -> &mut f64 {...
Anyone who uses the [msanders/cocoa.vim git](https://github.com/msanders/cocoa.vim) repo will note that the working directory is always dirty, unless manually adding a `.gitignore` file. This contains that file, which simply ignores `docs/tags`.
This PR updates the optimizedSD's DDIM sampler to support passing in callbacks via the `callback` and `img_callback` args, just like what the PLMS sampler supports. These arguments automatically get passed...
### Requirement As an application developer, I want to view all the deeply nested logs within a single trace so that I can quickly find issues or information from my...
Take the following (contrived) example of a type cast: ``` clj (c/cast Int64 (c/+ (c/const 1 -> Int32) (c/const 2 -> Int32))) ``` This code exemplifies an issue where trying...
When using the relatively recent ["Functions"](https://platform.openai.com/docs/guides/gpt/function-calling) feature of the ChatGPT API, it seems like `tiktoken-rs` underestimates the total number of tokens in the request. Here's a minimal example request: ```json...
Currently, trying to import `@mhsdesign/jit-browser/tailwindcss` from a NodeJS project using ES Modules leads to a pretty cryptic error: ``` node:internal/modules/esm/resolve:213 const resolvedOption = FSLegacyMainResolve(packageJsonUrlString, packageConfig.main, baseStringified); ^ Error: Cannot find...