Kieran Siek
Kieran Siek
Hello, are there any documentation I can look at to see what options are available, what they do and what each format specifier mean? Thanks in advance.
Hi! I'm getting a panic similar to #20 and #47 with the following code on the latest master: ```rust use tiny_skia::*; fn main() { let mut pixmap = Pixmap::new(100, 100).unwrap();...
``` Error executing vim.schedule lua callback: ...are/nvim/lazy/nvim-lightbulb/lua/nvim-lightbulb/init.lua:405: attempt to concatenate field 'kind' (a nil value) stack traceback: ...are/nvim/lazy/nvim-lightbulb/lua/nvim-lightbulb/init.lua:405: in function 'callback' ...eovim-unwrapped-0.9.1/share/nvim/runtime/lua/vim/lsp.lua:2021: in function 'handler' ...eovim-unwrapped-0.9.1/share/nvim/runtime/lua/vim/lsp.lua:1394: in function '' vim/_editor.lua:...
Hello! This is my first PR to nix so I'd appreciate some guidance/patience. This PR adds support for `posix_spawn*` related functions. All functions are added with the exception of `posix_spawnattr_{get,...
My use-case for this is for testing a shell that uses the `rustyline` crate for line-editing. For long inputs (greater than the terminal width), `rustyline` inserts newlines into its output,...
## Rationale If the `!user` command targets a non-moderator in a moderation channel, make the infraction history directly accessible using a reaction. Currently, we almost always combine `!user ` with...
Hello! Tree-sitter v0.23.0 is out, which brings a change to the dependecy grammars depend on (from `tree-sitter` to `tree-sitter-language`. Would it be possible to create a new release with the...
## Description When `ConnectOptions` is converted to `sqlx::pool::PoolOptions`, the `max_lifetime` and `idle_timeout` fields are set only if the value provided is not `None`: https://github.com/SeaQL/sea-orm/blob/b68e770f973adea8651420c0865f697bca2f5b9b/src/driver/sqlx_common.rs#L54-L56 https://github.com/SeaQL/sea-orm/blob/b68e770f973adea8651420c0865f697bca2f5b9b/src/driver/sqlx_common.rs#L60-L62 However, `None` is a valid...
The posix_spawn functions do not use `-1` as the sentinel for errors, rather `0` is return on success and every other return value is an error. Adds a test case...