I just released the first version of https://clojars.org/org.tcrawley/datastar-pedestal-adapter, that only uses Pedestal's SSE abstractions, and not the SSE abstractions from the underlying webserver. The motivation was wanting to use Datastar in an existing Pedestal/Jetty service.
Clojure CLI 1.12.4.1602 is now available • TDEPS-275 Use sha256sum in linux-installer instead of shasum
I went through this once with bb.
# macOS only have shasum available by default
# Some Linux distros (RHEL-like) only have sha256sum available by default (others have both)
if has sha256sum; then
sha256sum_cmd="sha256sum"
elif has shasum; then
sha256sum_cmd="shasum -a 256"
else
>&2 echo "Either 'sha256sum' or 'shasum' needs to be on PATH for '--checksum' flag!"
>&2 echo "Exiting..."
exit 1
fisurely one could vibe-code a Bash-native impl. 😉
yeah, I'm going to wait for feedback and see if I need to sniff it in the posix-installer
I'm sure Rich would approve... https://chatgpt.com/share/6978df4e-0628-8012-9607-d50195928b98
oh i wonder where it copied the program from... surely at least https://gist.github.com/Qix-/affef08b50686e54e1f2ca18f97a6ff7
(but still... it's wild that "just some matmul" can map squishy english strings to anything comprehensible at all, let alone a plausibly-working program... blows my mind every single time... even though I don't use LLMs)
Released Agent-o-rama 0.8.0. This release enables structured and unstructured https://github.com/redplanetlabs/agent-o-rama/wiki/Human-feedback on agent runs, with time-series charts automatically created for all human feedback. Runs can be manually or automatically added to "human feedback queues" to organize review across your team. This addition combined with the existing features for dataset management, experiments, and automatic evaluation provides everything needed to systematically track agent performance and improve them over time. Discuss in #rama. https://github.com/redplanetlabs/agent-o-rama/releases/tag/release%2F0.8.0