frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The time the x86 emulator team found code so bad they fixed it during emulation

https://devblogs.microsoft.com/oldnewthing/20260615-00/?p=112419
32•paulmooreparks•22m ago•0 comments

A backdoor in a LinkedIn job offer

https://roman.pt/posts/linkedin-backdoor/
893•lwhsiao•9h ago•171 comments

Banned Book Library in a Wi-Fi Smart Light Bulb

https://www.richardosgood.com/posts/banned-book-library/
255•sohkamyung•6h ago•121 comments

Iroh 1.0

https://www.iroh.computer/blog/v1
1043•chadfowler•13h ago•305 comments

TinyWind: A pixel pirate sailing game with real wind physics (380k+ kms sailed)

https://tinywind.io
686•tinywind•12h ago•144 comments

Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?

803•cloudking•14h ago•381 comments

I Hacked into the Worst E-Bike and Fixed It [video]

https://www.youtube.com/watch?v=hPrtVGimBYs
32•alexis-d•5d ago•9 comments

I Love the Computer

https://michaelenger.com/blog/i-love-the-computer/
183•speckx•8h ago•110 comments

The 90-year-old idea behind JEPA models: Canonical Correlation Analysis

https://shonczinner.github.io/posts/embedding-prediction/
28•Anon84•4d ago•6 comments

Why I email complete strangers

https://www.goodinternetmagazine.com/why-i-email-complete-strangers/
110•karakoram•7h ago•51 comments

Cohere's First Model for Developers

https://cohere.com/blog/north-mini-code
51•hmokiguess•4d ago•13 comments

Amazon Announces Multibillion-Dollar Data Center in Missouri

https://www.narracomm.com/amazon-announces-multibillion-dollar-data-center-in-missouri/
78•thelonelyborg•4h ago•62 comments

Microsoft turns to AWS as GitHub faces AI capacity crunch

https://runtimewire.com/article/microsoft-github-aws-ai-capacity-crunch
141•ilreb•2h ago•56 comments

My Homelab AI Dev Platform

https://rsgm.dev/post/ai-dev-platform/
275•rsgm•13h ago•52 comments

Show HN: Garden of Flowers – an archive of pictorial typography before ASCII art

https://garden-of-flowers.heikkilotvonen.com/
4•california-og•43m ago•1 comments

Peopleless economy? Not technically impossible

https://gmalandrakis.com/writings/ad-economicum.html
131•l0new0lf-G•7h ago•249 comments

Hetzner Price Adjustment

https://docs.hetzner.com/general/infrastructure-and-availability/price-adjustment/#cloud-servers
373•tuhtah•15h ago•528 comments

Fox to buy Roku

https://www.wsj.com/business/deals/fox-roku-deal-f6e564f9
302•thm•16h ago•384 comments

What every coder should know about Gamma Correction

https://blog.johnnovak.net/2016/09/21/what-every-coder-should-know-about-gamma/
83•sph•2d ago•24 comments

Launch HN: Drafted (YC P26) – Models for residential architecture

51•PrimalNick•12h ago•55 comments

Salesforce to Acquire Fin (formerly Intercom) for $3.6B

https://www.salesforce.com/news/press-releases/2026/06/15/salesforce-signs-definitive-agreement-t...
296•colesantiago•17h ago•218 comments

Copper transport drug restores memory and clears toxic Alzheimer's proteins

https://www.monash.edu/news/articles/copper-drug-restores-memory-and-clears-toxic-alzheimers-prot...
270•bookofjoe•14h ago•101 comments

Game Engine White Papers Commander Keen

https://forgottenbytes.net/commander_keen.html
179•mfiguiere•11h ago•58 comments

What job interviews taught me about Kubernetes

https://notnotp.com/notes/what-job-interviews-taught-me-about-kubernetes/
129•chmaynard•8h ago•98 comments

How TimescaleDB compresses time-series data

https://roszigit.com/en/blog/timescaledb-compression-hypercore
133•lkanwoqwp•11h ago•15 comments

US battery manufacturing output continues to break records

https://fred.stlouisfed.org/series/IPG33591S
187•epistasis•8h ago•157 comments

Reviews have become expensive, rewrites have become cheap

http://ishmeetbindra.com/posts/reviews-have-become-expensive-rewrites-have-become-cheap/
39•arzh2•4h ago•34 comments

Show HN: Veterinarian turned founder, AI lawn diagnosis

https://grassdx.com/
47•andrewbr•11h ago•49 comments

Claude Corps

https://www.anthropic.com/news/claude-corps
107•Mustan•11h ago•69 comments

Show HN: Fata – Spaced repetition to fight skill rot from AI coding

https://fata.dev
92•djoume•4d ago•49 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