Phil Schumann
Phil Schumann
Oddly enough, just found that `guru` too gives a strikingly similarly worded message in such a scenario: `file Untitled-1 not found in loaded program` --- makes me wonder, why look...
Ever got the chance? ;D
Sorry folks, my mistake: I should have put the repo description in the readme, specifically this part: > NOT REALLY MAINTAINED FOR YEARS NOW: consider the various forks if running...
Regrettably I have really let this package "bit-rot" a bit over the years (thanks to not having had to work with any XMLs/XSDs for years), that is, I let all...
Seeing the same .. also functions with `|` guards instead of normal `=` get different highlighting. (Also multi-line strings with numerous `"++thing++"` show up _way_ whack with enough noise and...
The screenshot says it already really: "request duration 118ms, billed 200ms". Seems to have taken about 100x what you'd shoot for, for a server-side hello-world responder. Maybe that's just the...
> It is a compile error to use `@recursiveCall` when you could have used a normal function call, and it is a compile error to use a normal function call...
There's a lot of talk about custom `vet` etc. in this thread but I got here because the original __"some users might like to see diagnostics only when they save...
Just realized a subtlety with this, as it is it doesn't truly solve "diags-on-save-only" — when a change is fine for the `.go` file being saved but breaking other ones...
> 1.Somewhere you used 1-smoothstep(a,b) while you can use smoothstep(b,a). for example chapter 7 - Polar shapes - triangle: ` color = vec3(1.0-smoothstep(.4,.41,d));` => ` color = vec3(smoothstep(.41,.4,d));` How does...