Christopher Head

Results 53 issues of Christopher Head

Prepare an AE2 network and hook up an OC computer to a relevant block with an adapter. Call `getCraftables`. Now break the OC cable between the computer and the AE2...

bug

According to `dev_zero_guides/managing_items_with_pipes.md`, there are four priorities of destinations: 1. passive suppliers 2. all itemsink modules plus basic pipes 3. terminus modules 4. default routes However, by experimentation, this does...

[The documentation for `glib::wrapper!`](https://gtk-rs.org/gtk-rs-core/stable/latest/docs/glib/macro.wrapper.html) contains the following sentence: > What follows is a description of each of the possible `$kind`: [Boxed](https://gtk-rs.org/gtk-rs-core/stable/latest/docs/glib/macro.wrapper.html#boxed), [Shared](https://gtk-rs.org/gtk-rs-core/stable/latest/docs/glib/macro.wrapper.html#shared), and [Object](https://gtk-rs.org/gtk-rs-core/stable/latest/docs/glib/macro.wrapper.html#object) However, what follows is actually a...

bug

### What feature do you want to see added? When using a UNIX-domain socket, it’s useful to be able to control access permissions. For example, I want Apache (running as...

enhancement

In standard Rust, without anything self-referential, [`struct` fields are dropped in order of declaration](https://doc.rust-lang.org/stable/reference/destructors.html): ```rust struct Foo; impl Drop for Foo { fn drop(&mut self) { println!("Drop Foo"); } }...

**Describe the issue** FreeRTOS mutexes do priority inheritance. However, they do only somewhat rough priority *disinheritance* when releasing. In particular, `xSemaphoreGive` is a macro which calls `xQueueGenericSend`, which calls `prvCopyDataToQueue`,...

documentation

Running `apt-get update` in the 1.77.1 tag on an ordinary amd64 system: ``` ---> Running in 6f5909e44f3c Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] Get:3...

**Describe the bug** Launch `nvim-gtk` with `NVIM_GTK_NO_HEADERBAR=1`. Type `:NGShowProjectView`. Nothing happens. I expected the popup to appear somewhere when requested by command, just that there would not be a button...

enhancement

Hello, As currently written, Digilines does not handle long wires. For one, if an intermediate mapblock is unloaded, messages will be lost, even if the effector on the far end...

The sign extension instructions (`i32.extend8_s`, `i32.extend16_s`, `i64.extend8_s`, `i64.extend16_s`, and `i64.extend32_s`) seem like they would map quite nicely onto efficient JVM code.