Niklas Hambüchen

Results 209 issues of Niklas Hambüchen

I tried to make an IPv6 security group entry with `::/0`: ```nix resources.ec2SecurityGroups.mygroup = { accessKeyId = "myaccesskeyid"; region = "eu-central-1"; name = "mygroup"; description = "mygroup"; rules = [...

Right now we have: ``` deployment.ec2.securityGroups = mkOption { default = [ "default" ]; example = [ "my-group" "my-other-group" ]; type = types.listOf (types.either types.str (resource "ec2-security-group")); apply = map...

Some parts of rclone, such as the [SFTP checksum](https://rclone.org/sftp/#checksum), currently support only `md5sum` and `sha1sum`. These are both very slow, necessarily sequential hashes. [BLAKE3](https://github.com/BLAKE3-team/BLAKE3) with `b3sum` is a tree hash...

enhancement

Often, when I `rclone mount` the SFTP backend, write some file into the mount, and then Ctrl+C `rclone mount`, it fails with the below error: ``` rclone mount 'my-sftp-remote:/testdir' mymountdir...

Hi, a question: If I use this diff ``` diff diff --git a/try-out/eqno-latex.adoc b/try-out/eqno-latex.adoc index c98e741..207e51f 100644 --- a/try-out/eqno-latex.adoc +++ b/try-out/eqno-latex.adoc @@ -1,5 +1,6 @@ -== Numbered Equations += Numbered...

The `System Calls` view currently shows columns `CALLS/S`, `TOT TIME`, `AVG TIME` and `SYSCALL`. `AVG TIME` counts the CPU system time spent in that sycall (like `strace -c`), not the...

pinned
feature-request

Opus has an in-band FEC (Forward Error Correction) feature that helps with packet loss (at cost of of a bit more bandwidth). It works by "including a coarse encoding of...

code
feature-request
audio

If I compile with `-O0`, I get the following test failure: ``` *** Failed! Falsifiable (after 1 test): 0.0 0.0 (used seed -8074436915145524066) t_shortest: [Failed] *** Failed! Falsifiable (after 1...

I liked your explanation in https://github.com/timbrel/GitSavvy/releases/tag/2.23.0 suggesting `gs_inline_diff` and `gs_stage_hunk` as key entry points into the GitSavvy workflow. I propose: * to add those explanations to the README, not only...

E.g. `libui-simple-counter-example`, 100% CPU in htop In `strace` it's busy-looping around poll (because `poll()` is given a 0-timeout): ``` [pid 31736] recvmsg(11, 0x7ffe9da1db20, 0) = -1 EAGAIN (Resource temporarily unavailable)...