frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Tailwind Labs is joining Shopify

https://tailwindcss.com/blog/tailwind-is-joining-shopify
409•EdwinHoksberg•2h ago•155 comments

Desert Ant Labs: local, fast models that run on device

https://desertant.com/blog/introducing-desert-ant-labs/
231•willwhitedc•4h ago•62 comments

Claude, change the "Add to Cart" button to blue

https://opusfived.dev/
524•matthieu_bl•6h ago•205 comments

Investing in Mothers? The Long-Run Impact of a Universal Child Care

https://www.nber.org/papers/w35514
23•throw0101d•1h ago•15 comments

Show HN: Geiger – See every AI agent on your machine and what it can touch

https://github.com/Atomburstofficial/geiger
23•atomburst•1h ago•12 comments

No Man's Sky Cosmos

https://www.nomanssky.com/cosmos-update/
7•Limb•13m ago•2 comments

Planet Labs' Open Satellite Feed

https://tech.marksblogg.com/planet-labs-open-satellite-feed.html
6•marklit•16m ago•0 comments

I advertise malicious software on Google Ads

https://xlii.space/eng/malicious-software-on-google-ads/
229•xlii•4h ago•135 comments

DeepSeek launching v4.1 flash cheaper and more capable than v4 pro

292•nickweb•4h ago•150 comments

Playing whack-a-mole is losing

https://dadrian.io/blog/posts/whack-a-mole-is-losing/
29•surprisetalk•2h ago•6 comments

Muse – Meta’s personal AI agent

https://ai.meta.com/muse/
595•yks•20h ago•650 comments

Better AI code comment detector

https://entropicthoughts.com/better-ai-comment-classifier
4•ibobev•15m ago•0 comments

Coyote v. Acme (1990)

https://www.newyorker.com/magazine/1990/02/26/coyote-v-acme
108•ChrisArchitect•3d ago•45 comments

Roame (YC S23) Is Hiring Viral Content Editor

https://www.ycombinator.com/companies/roame/jobs/KuVVqSh-content-systems-builder-editor
1•zman0225•3h ago

Bomb Sense

https://danboland.net/2021/07/15/bomb-sense.html
3•surprisetalk•20m ago•0 comments

We Accidentally Built a Synthetic Cell Factory

https://bnext.bio/post/we-accidentally-built-a-synthetic-cell-factory
3•rajivm•26m ago•0 comments

Navier-Stokes – Tristan Buckmaster [pdf]

https://cims.nyu.edu/~tristanb/statement.pdf
1911•procedurecall•1d ago•783 comments

GPT-6 Astra, Looped Transformers, and Hidden Reasoning

https://magazine.sebastianraschka.com/p/gpt-6-astra-looped-transformers-and
6•ModelForge•1h ago•0 comments

Building a Wall Lamp from Scratch

https://mbugert.de/posts/2026-09-09-bedroom-lamp-build/
58•jcklie•5h ago•20 comments

Searching for the best silicone USB cable

https://www.frankchiarulli.com/blog/best-silicone-usb-cable/
51•evakhoury•4d ago•27 comments

Open-source 3D anatomy explorer: 2,234 selectable BodyParts3D meshes

https://github.com/ashemag/human-atlas
54•metrofun•1d ago•20 comments

Smolts: A pedagogical IDE for a teaching language

https://eighty-twenty.org/2026/09/04/smolts
29•tonyg•5d ago•2 comments

Lotus Notes and the dangers of starting from scratch

https://buttondown.com/blog/lotus-notes-email
126•maguay•5h ago•80 comments

How GPT‑5.6 Sol helps run quantum computing experiments

https://openai.com/index/codex-quantum-computing-experiments/
128•theanonymousone•8h ago•98 comments

Tension wood: A 'muscle' that can both bend and straighten plants

https://phys.org/news/2026-09-trees-muscle-posture-newly-role.html
148•mdp2021•6d ago•36 comments

How to build a printer

https://nishantjosh.dev/blogs/how-to-build-a-fking-printer/
417•cat-whisperer•18h ago•92 comments

AlphaGenome Atlas: a high-resolution map of human DNA

https://blog.google/innovation-and-ai/models-and-research/google-deepmind/alphagenome-atlas/
586•utiiiD•1d ago•126 comments

Researchers Spot Fake Ancient Pottery Using the Earth's Magnetic Field

https://www.smithsonianmag.com/smart-news/researchers-determine-how-to-spot-fake-ancient-pottery-...
76•cisc•3d ago•30 comments

How An AI math breakthrough ignited a controversy

https://www.science.org/content/article/how-ai-math-breakthrough-ignited-controversy
195•pseudolus•5h ago•202 comments

The Ancient Greek Water Clock That Kept the Most Accurate Time for 1,800 Years

https://www.openculture.com/2026/09/the-ancient-greek-water-clock-that-kept-the-most-accurate-tim...
22•Brajeshwar•2h ago•7 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