Alixinne

Results 12 issues of Alixinne

### Description On Cygwin, when zsh is used with prezto, exiting the shell (via exit or Ctrl+D) hangs the shell, and the process has to be terminated. At least `sorin`...

I realized some parsers expect `\n` as the single char for a line ending, which isn't the case on Windows with its notorious `\r\n`. This PR replaces occurrences of `\n`...

The main target for this PR is issue #74. By using [nom_locate](https://github.com/fflorent/nom_locate) we can rewrite the parsing functions to operate on input with span information added in. I'll post an...

PR to discuss the implementation of a solution for #34 The parser from piglit seems to be more strict than just basic syntax checking, so a lot of the tests...

After working with the Arduino Nano 33 BLE, I discovered that calling `analogWrite` on more than 4 pins will lock up the board. This is confirmed by https://forum.arduino.cc/t/arduino-nano-33-ble-damaged/639669/2. I think...

bug

I am encountering an issue with trouble.nvim in the following situation: - One instance of nvim has an open file, `plugins.lua` and has created a swapfile for it - Another...

This fixes the smart HTTP transport implementation receive pack service to send requests to `/git-receive-pack` instead of `/info/Refs?service=git-upload-pack`. This issue seems to stem from a bad copy-paste, because this was...

The current test harness doesn't cover much of the possible code paths, which would be too dangerous to test on bare metal anyways. We should add a way to test...

Given the following shader files: ```glsl /// toto.glsl #include "shared.glsl" void main() { gl_FragColor = f(); } /// shared.glsl vec4 f() { return vec4(1.0, 0.0, 0.0, 1.0); } ``` And...

`#define` statements are not propagated to included files, so this will fail at runtime (`g` not defined): ```glsl // a.glsl #ifdef X vec2 g() { return vec2(1.0, 2.0); } #endif...