HackerTrans
TopNewTrendsCommentsPastAskShowJobs

cloudkj

no profile record

Submissions

Show HN: Bash is All You Need for a language model REPL

github.com
1 points·by cloudkj·il y a 11 jours·0 comments

Show HN: AI Agents the Unix Way – built with bash, curl, and jq

github.com
2 points·by cloudkj·il y a 18 jours·0 comments

Show HN: REST API for Gymnasium (fka OpenAI Gym) reinforcement learning library

github.com
1 points·by cloudkj·il y a 3 mois·1 comments

Show HN: Map of California SNO-Parks with current snow depth data

cloudkj.github.io
1 points·by cloudkj·il y a 6 mois·0 comments

comments

cloudkj
·il y a 11 jours·discuss
Heh, I just wrote something very similar - bash, curl, and jq scripts that wrap local Ollama calls to produce a REPL/agent: https://github.com/cloudkj/llayer

Seems like the core idea is the same, but I took it farther down the Unix philosophy line of thinking and tried to make the individual components small and composable.

Feel free to check it out and compare!
cloudkj
·il y a 16 jours·discuss
This is great, I was just hoping to find a tool like this and specifically scoped to "Show HN" posts? Is there a way to do that?
cloudkj
·il y a 3 mois·discuss
Some of my recent projects in case anyone finds them useful and/or interesting:

Automatic differentiation library in Clojure (https://github.com/cloudkj/lambda-autodiff) - inspired by Karpathy's `micrograd` from a few years ago; dusted it off recently, fixed a few issues, and was able to use it to implement a version of `microgpt` - https://cloudkj.github.io/lambda-autodiff/doc/examples/gpt/

PG&E "Share My Data" self-access library (https://github.com/cloudkj/pgesmd_self_access) - been tinkering with various home automation and monitoring ideas, and was able to get an end-to-end prototype for ingesting and visualizing PG&E meter data using a combination of the (forked) aforementioned library, an old circa 2015 Raspberry Pi, and a handful of dollars spent on AWS services (certificate manager, load balancer) to get the full mTLS PG&E integration working. Probably deserves a blog post to document all the gory details.

Geo data mashups (https://github.com/cloudkj/snowpack) - small frontend utilities to overlay custom data on top of each other; was able to satisfy two recent personal use cases: (1) visualize snow depth across California ski destinations and (2) heat map of national park traffic by entrance. Previously posted at https://news.ycombinator.com/item?id=46649103

REST interface for Gymnasium reinforcement learning (fka OpenAI Gym) (https://github.com/cloudkj/gymnasium-http-api) - simple wrapper around the forked version of OpenAI Gym to allow for language-agnostic development of RL algorithms.