Adrian Hesketh

Results 48 issues of Adrian Hesketh

There's an extra newline if your log entries already end with a newline. I notice that if you're streaming logs, the newline gets stripped. https://github.com/TylerBrock/saw/blob/master/blade/blade.go#L146-L147 Easy fix though. https://github.com/a-h/saw/commit/21e6320f3620099f2fce2c72aedf86d3afbcb2bc Then...

I just spent a few minutes wondering why I wasn't seeing any log output. 😂 I was using `saw get /aws/lambda/` but forgot to add `--start -10m` to the end...

# Steps to reproduce * Schedule a few jobs, wait for them to be enqueued * Access dashboard at: http://localhost:5000/hangfire/jobs/enqueued # Environment * .NET Core 2.0 (OSX) * MySQL 5.6...

In the case of a `go.mod` file that has a Go version of `x.x.x` instead of `x.x`, Go parsing fails with: ``` (!) templ version check failed: failed to parse...

bug
cmd
NeedsFix

Since Goland now supports LSPs - it's possible to create a plugin for it. https://blog.jetbrains.com/platform/2023/07/lsp-for-plugin-developers/ It has to be written in Java, but it's potentially not many lines of code....

Some people have said that they forget to rebuild templates, or find the extra step of running `templ generate` before `go run` grating. If templ had a `templ run` command...

`templ generate` is pretty fast. It can generate code for 32 templates in 500ms or so. Would it be even faster if it only parsed and generated files that have...

Hi, I was trying to port an npmlock2nix project over to dream2nix, and I don't know where to start based on reading the repo examples etc. The documentation site seems...

### Description I'm creating a NixOS template for Lima. NixOS doesn't follow the Linux FHS, so it doesn't have `bash` available at `/bin/bash`. This is fine, because you can find...