69 points by thunderbong 3 hours ago | 51 comments
Show HN: ZQDGR a Script Runner for Golang(github.com/juls0730) ZQDGR is Zoe's Quick and Dirty Golang Runner. This is a simple tool that lets you run a go project in a similar way to how you would use npm. ZQDGR lets you watch files and rebuild your project as you make changes. ZQDGR also includes an optional websocket server that will notify listeners that a rebuild has occurred, this is very useful for live reloading when doing web development with Go.
21 points by kermerlerper 18 days ago | 8 comments
Switching to 5Ghz WiFi made the Raspberry Pi fly again(moritzhamann.com) For the last few months my Raspberry Pi 4 was happily running on my desk, tucked away next to the monitor. It's serving a small web app in golang on the internal network and tailscale. I've never noticed any latency problems with it, so it took me by surprise when I deployed some OCaml experiments on the Pi and observed a lot of HTTP connection timeouts and name resolution errors while fetching some URLs concurrently.
Prep: Golang Comptime(github.com/pijng) prep is a small Go tool that enables compile-time function evaluation. By using prep.Comptime, you can evaluate functions at build time, replacing them with their computed results. Just like comptime from Zig. Except it's not.
Goja: A Golang JavaScript Runtime(jtarchie.com) This post explores [Goja](https://github.com/dop251/goja), a JavaScript runtime library in the Golang ecosystem. Goja stands out as a powerful tool for embedding JavaScript within Go applications, offering unique advantages when manipulating data and exposing an SDK that doesn’t require a `go build` step.