Phil Schumann
Phil Schumann
I noticed your `ByteBuffer` [grows via `append`](https://github.com/valyala/bytebufferpool/blob/master/bytebuffer.go#L73), whereas we know the `bytes.Buffer` [grows by hand-coded](https://golang.org/src/bytes/buffer.go?s=5775:5826#L107) comparison of `cap`/`len` and enlarging/`copy`ing when needed. For this very small specific sub-aspect of your...
Scenario: editing a .go file that's hasn't been saved yet. (For example, for rapid greenfield prototyping of stuff via some sort of `go run`-based REPL-ish tool like `gore`.) The source...
See 2nd one in this screenshot:  Source located at https://github.com/metaleap/HaXtatic/blob/master/__tmp_nu_/Bloks.hs The issue isn't helped by adding a full signature-with-types declaration, but it **is** resolved by removing the apparently somehow...
Culprit: https://github.com/altairsix/eventsource/blob/7b6859b7a00908296beea99d5d2800b6c071c084/repository.go#L187 loadVersion can fail for reasons other than "not found", such as "store implementation has connectivity outage" etc. You do not want to discard such errs and fall back...
**Note: low-prio issue because the workaround is double-quoted instead of single-quoted JS strings =)** — but for the curious dev/maintainer... Check out the red ones in lines 9-10, in this...
(Since this happens only on-quit, I guess it isn't too critical/urgent... but for completeness' sake I'll file it here =) With a `libWickedEngine_Linux.so` Release-with-Debug-symbols build labelling itself on-window as v0.71.357...
Specifically I wanted to try streaming texture transfers as described here: http://ogltotd.blogspot.com/2006/12/streaming-texture-updates.html I don't get any GL errors with implementing that, but also no pixel transfer seems to happen (black...
Loving this, here's my _Vsxmd_-generated result `.md`: https://github.com/metaleap/vscode-appz/tree/master/libs/cs#readme **Wondering if I can pass through all backticks without them getting backslash-escaped as currently happens.** These are bindings being generated for various...
First, does `dead-code-detection` find stuff that GHC's `-Wall` (eg. `-Wunused-local-binds`, ...) doesn't? Secondly, this is the current `--help` text: dead-code-detection [OPTIONS] -i STRING (multiple possible) --source-dirs=STRING (multiple possible) -e STRING...
At least, that issue occurred at my end (this `bug` Issue Label I picked might be the wrong category actually). Luckily, the (*Time)-vs-Time being the likely cause was my first...