frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

SpaceX Showed Investors Prototype of Elon Musk's New AI Device

https://www.wsj.com/tech/ai/spacex-showed-investors-prototype-of-elon-musks-new-ai-device-b445c57b
1•jaredwiener•43s ago•0 comments

Show HN: LIBR tracing with source ledger rows and byte-exact PDF verification

https://exitprotocols.com/engineering/libr-state-machine/
2•cd_mkdir•7m ago•0 comments

What to Learn to Be a Graphics Programmer

https://blog.demofox.org/2026/07/01/what-to-learn-to-be-a-graphics-programmer/
2•atan2•8m ago•0 comments

PlayStation step-by-step guide on how to lend games to your friends (2013)

https://www.youtube.com/watch?v=kWSIFh8ICaA
2•bundie•10m ago•0 comments

My OSCP Pentesting Cheatsheet

https://hackerask.com/posts/pentesting-cheatsheet/
6•HackerAsk•11m ago•0 comments

About the Digital Art

https://www.tricivenola.com/about-the-digital-art/
2•NaOH•14m ago•0 comments

Building Gin: Simple over Easy

https://manualmeida.dev/articles/gin-simple-over-easy/
2•manucorporat•16m ago•1 comments

Nintendo patents rejected on monster-capturing mechanics amid Palworld

https://technology.inquirer.net/145959/20-nintendo-patents-rejected
2•mushstory•17m ago•0 comments

We Need a Way to Prove Online Personhood

https://www.noemamag.com/we-need-a-way-to-prove-personhood-online/
2•arthurofbabylon•18m ago•1 comments

Hanami 3.0: In Full Bloom

https://hanakai.org/blog/2026/06/30/hanami-3-0-in-full-bloom
2•PuercoPop•21m ago•0 comments

BioShocking: New attack method tricks AI Browsers into leaking user data

https://layerxsecurity.com/blog/bioshocking-ai-gaming-the-ai-browser-and-escaping-its-guardrails/
2•newscombinatorY•24m ago•0 comments

Exploiting Root Execution in Claude Cowork's Sandbox

https://www.armadin.com/blog-posts/exploiting-root-execution-in-claude-coworks-sandbox
2•calmseawhale•24m ago•0 comments

Maker Built a Voice Opening Door to Moria (His Garage)

https://www.youtube.com/watch?v=woyvLnyTx0g
2•stephenhumphrey•26m ago•1 comments

Show HN: Open-source sandbox for your product team

9•spacspade•27m ago•6 comments

Fable 5 will default to Opus 4.8 for coding tasks

https://xcancel.com/AnthropicAI/status/2072163884430229756
10•babelfish•27m ago•3 comments

Chasing the OPNsense RCE: The Story Behind My First CVEs

https://hackerask.com/posts/opnsense/
6•HackerAsk•30m ago•0 comments

Show HN: Open-Source Interview Platform

https://github.com/CoderScreen/coderscreen
2•rogutkuba•30m ago•0 comments

Meta's Un-Stable Signature

https://hackerfactor.com/blog/index.php?/archives/1098-Metas-Un-Stable-Signature.html
2•ementally•31m ago•0 comments

Show HN: Trigora – A hosted runtime for event-driven TypeScript workflows

https://trigora.dev
2•hypervs•31m ago•0 comments

Pieces: Social Network for People

https://try.piecesof.me/
2•domo__knows•31m ago•1 comments

Fable Jailbroken Hours After Anthropic Lifted Restrictions

https://twitter.com/elder_plinius/status/2064776322979676227
3•hspeiser•31m ago•1 comments

Animagraffs – How Nuclear Power Works [video]

https://www.youtube.com/watch?v=PRWwXeRIvoI
2•pangratz•31m ago•0 comments

Mortality associated with non-optimal ambient temperatures from 2000 to 2019

https://www.researchgate.net/publication/353058947_Global_regional_and_national_burden_of_mortali...
2•simonebrunozzi•33m ago•0 comments

Show HN: AnalystAIPack – 118 runnable agent skills for malware analysis and RE

https://meltedinhex.com/posts/analyst-ai-pack/
3•sdkhere•35m ago•0 comments

Google Must Pay Nearly $2B to Klarna in Antitrust Case

https://www.wsj.com/tech/google-must-pay-nearly-2-billion-to-klarna-in-antitrust-case-f398d46f
3•fortran77•35m ago•1 comments

Hey GLM 5.2, build me a hypervisor

https://technotes.substack.com/p/hey-glm-52-build-me-a-hypervisor
4•mkagenius•36m ago•0 comments

Show HN: AnalystAIPack – 118 runnable agent skills for malware analysis and RE

https://github.com/meltedinhex/analyst-ai-pack
2•sdkhere•36m ago•0 comments

The Worst Caldecott Winning Books

https://andrewjudson.com/worst-caldecott
2•ajudson•37m ago•0 comments

Why Gemini 3.1 Pro lost money running Andon Café

https://andonlabs.com/blog/why-gemini-lost-money-andon-cafe
2•lukaspetersson•37m ago•1 comments

The Doomsday Organism

https://www.noemamag.com/the-doomsday-organism/
2•johanam•38m ago•0 comments
Open in hackernews

Self-Hosted GitHub Actions Runners on Lambda MicroVMs

https://github.com/mkdev-me/terraform-aws-github-runner-lambda-microvms/tree/main
3•fodoj•1h ago

Comments

fodoj•1h ago
I was curious if I can use new Lambda MicroVMs as self-hosted GitHub Runners. On paper, they are super nice:

It's cheaper: GHA-hosted is $0.005 / min (2 vCPU), MicroVMs ~$0.0042 / min, and no minimum 60-second commitment as with GHA-hosted.

It can run longer: GHA-hosted max 6 hours, MicroVMs max 8 hours

It starts in a few seconds, compared to whichever other serverless solution built on top of ECS

It scales to 0, or rather, it only runs when jobs are running

They are VMs, so you can still run containers/docker/whatever else inside;

I got a bit too invested, and ended up building this Terraform module. You only need to create GitHub App manually, the rest is just a single "terraform apply" and your MicroVM Runners are ready to go. I've switched come of projects at my company to use, works great, same or better performance as GHA-provided runners. Natural limitation is that MicroVMs are only arm64, and in general they don't have much flexibility around the "hardware" setup - but hey, for most cases, it should work great, and it's just 1 webhook + GHA JIT Runners + 1 MicroVM Run per Job.

Imustaskforhelp•1h ago
I had the same idea when it was launched so I am glad that you made it, starred the repo!, another plus point is that you can now easily use it with forejo instance or gitdot.io (which is another open source forje) or even tangled.org I suppose as well which allows for much more freedom/customization overall