frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Lumabri – What if LLMs worked like Napster?

https://github.com/JustVugg/lumabri
5•vforno•32m ago•0 comments

Show HN: Alphabet Soup, a multiplayer game, build the longest word to win

https://alphabetsoup.club
17•johnchinjew•2h ago•10 comments

Show HN: A Project Oberon System version running on RISC-V instead of RISC-5

https://github.com/rochus-keller/OberonSystem/tree/op2-rv32
99•Rochus•10h ago•16 comments

Show HN: 35k+ paper psychedelic library that knows LSD from Lumpy Skin Disease

https://consciousnesslibrary.org/
7•elliotec•2h ago•4 comments

Show HN: A replayable A2A jury for tracing how agents influence decisions

https://github.com/nMaroulis/protolink/tree/main/examples/ai_courtroom
12•nmaroulis21•5h ago•0 comments

Show HN: Pacific Slate: a self-hosted, model-agnostic multi-agent AI assistant

https://pacslate.com/
5•badwx•1h ago•0 comments

Show HN: Wardline, a Go proxy that auto-blocks compromised AI agents

https://github.com/kabirnarang39/wardline
2•kabirnarang39•1h ago•0 comments

Show HN: Form cohorts in your city for study and business

https://chimera.university/event/
2•celestiallylvd1•1h ago•0 comments

Show HN: Today's cities on a globe of Earth's tectonic past and future

https://douwe.com/projects/tectonic_globe
25•dosinga•8h ago•5 comments

Show HN: Mandible TUI – rust based CLI manual viewer

https://github.com/sadigaxund/mandible
3•sakhund•2h ago•0 comments

Show HN: Airy – Free, fast, and simple voice content creation

https://airy.so
33•login588•13h ago•15 comments

Show HN: Whetstone – 20 Claude Code skills, each distilled from one real failure

https://whetstone.akbarsha.dev/
3•iamakbarsha1•2h ago•0 comments

Show HN: Run your GitHub Actions locally or self-hosted in isolated microvms

https://preloop.dev
3•Bnjoroge•3h ago•0 comments

Show HN: See how long it takes ChatGPT Sol 5.6 to send a byte across the LAN

https://robss2020.github.io/sol-vnc-elapsed/
3•logicallee•3h ago•0 comments

Show HN: Open-source playground to red-team AI agents against public prompts

https://playground.fabraix.com/
12•zachdotai•5h ago•3 comments

Show HN: A time zone converter where the URL encodes the whole comparison

https://acrosszones.com
3•nomadrat•5h ago•1 comments

Show HN: Ember – Redshift safe color palettes

https://github.com/carpdiem/ember
4•carpdiem•6h ago•0 comments

Show HN: TokenSpend, the AI ROI Solution

https://tokenspend.dev/
3•haseebejaz•7h ago•0 comments

Show HN: Repro, disposable Docker env for GitHub issues(pip install repro-cli)

https://github.com/SukhdevThukral/repro
3•sukhdevth_•7h ago•0 comments

Show HN: Sufleur - npm-style prompt registry with typed code-generation

https://github.com/sufleur/cli
3•wtomas•7h ago•0 comments

Show HN: An enjoyable and efficient way for product teams to communicate

https://fosbury.ai/
3•YarivAshk•7h ago•3 comments

Show HN: Cash-o-mat - Find your favorite new Euro Bill Design

https://cash-o-mat.eu
3•zinngr•7h ago•1 comments

Show HN: StoneBuild – a build tool in Go for your projects in any languages

https://github.com/tigerlang/stonebuild
3•tiger-langer•7h ago•0 comments

Show HN: Make a Fake MySpace Profile

https://allthedamn.tools/myspace-profile-generator/
2•kilroy123•8h ago•0 comments

Show HN: A tool to auto-generate .vscode/settings.json and extensions.json

https://github.com/RKasai127/vscode-autoconfig
3•rkasai•8h ago•0 comments

Show HN: Augmented Violin Finger Choice Recommendation

https://violin-fingering.unstacked.cc
4•lennart-rth•9h ago•2 comments

Show HN: textlog – A quiet, text-only microblogging platform, open-source, no JS

https://textlog.cc/about
199•stagas•2d ago•75 comments

Show HN: Sift – Fast local file organizer CLI with 1-click transaction undo

https://github.com/taevel02/Sift
3•taevel02•9h ago•0 comments

Show HN: Job Seeker – AI agent skills for job searching

https://github.com/galiprandi/job-seeker
5•galiprandi•9h ago•0 comments

Show HN: FAIth – a syntax-free JVM language, compiled by an LLM front-end

https://github.com/krossovochkin/faith
3•krossovochkin•10h ago•0 comments
Open in hackernews

Show HN: Run your GitHub Actions locally or self-hosted in isolated microvms

https://preloop.dev
3•Bnjoroge•3h ago
Hey HN. I've been frustrated with Github Actions' reliability, and inability to run workflows locally. Preloop is a Rust reimplementation of the GitHub Actions, both the runner(tracking the latest version) and the control plane that runs in hardware-isolated microvms on MacOS/Linux/Windows(we use smolvm project that uses the libkrun vmm).The microvms starts in <400ms from a packed artifact, and cow-clones for each job are instant. The control plane speaks the exact official runner protocol, so the unmodified actions/runner binary can register, poll, execute, and report against it. Your existing workflow files run unchanged, but on your own hardware with zero GitHub-hosted minutes. Locally, you can also run uncomitted changes so you dont have to create a commit to run ci. If you are working solo or in a small team and have fast local hardware, you can use something like DHH's gh-signoff extension and merge directly so long as certain checks pass. We also support features such as pause-on-failure where upon failure, the vm is paused, opens up a shell, and allows you to fix the errors, then you can retry without rerunning all the jobs that worked(new step/job runs in a new fresh microvm to verify the changes) or you can attach directly to a running vm and see what steps each jobs are doing in real-time. Preloop also implements the Debug Adapter Protocol so you or your agent can drive your CI locally(with the built-in client) or you can use a DAP client like Vscode. You can also submit your changes to the server for CI to run and then after it can open a draft PR for you, with the updated checks, so we dont only rely on Webhooks from Github. I've invested heavily in ensuring conformance with the official runner protocol so I do different kinds of mitm proxying to make sure not only the request/response bodies match but also down to the job/step level conclusions/logs/annotations etc. Effectively, the official runner should work with our control plane.

Act, Forgejo are all great, but they dont faithfully implement the official runner protocol so in practice some workflows dont quite work out of the box, and they also run the jobs in docker containers. Forgejo has the closest compatibility and is probably still a good option if you are fully migrating off github. With Act, there's a few mostly server-side features it doesnt implement(concurrency, some matrix features, oidc etc). forgejo has the closest compatibility, and is a good option if you are fully migrating off Github. Agent-ci is also a great option that uses the official runner image and implements the official protocol, but it is designed to run locally, runs in containers, and doesnt support some features we do(concurrency, newer V2 cache, Github token etc). Preloop is designed to also be run as a peristent server so we implement more submit updates to the checks api.

Lot more stuff coming, but i figured this is a good point to share with the community incase it might be interesting to some folks. Feel free to try it out.

Website: https://preloop.dev Github: https://github.com/preloopdev/preloop