frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: Who is hiring? (May 2026)

72•whoishiring•1h ago•73 comments

whohas – Command-line utility for cross-distro, cross-repository package search

https://github.com/whohas/whohas
39•peter_d_sherman•1h ago•8 comments

Uber Torches 2026 AI Budget on Claude Code in Four Months

https://www.briefs.co/news/uber-torches-entire-2026-ai-budget-on-claude-code-in-four-months/
13•lwhsiao•27m ago•4 comments

Ask HN: Who wants to be hired? (May 2026)

37•whoishiring•1h ago•72 comments

Sally McKee, who coined the term "the memory wall", has died

https://www.online-tribute.com/SallyMcKee
34•deater•1h ago•4 comments

Your Website Is Not for You

https://websmith.studio/blog/your-website-is-not-for-you/
196•pumbaa•5h ago•132 comments

Running Adobe's 1991 PostScript Interpreter in the Browser

https://www.pagetable.com/?p=1854
77•ingve•4h ago•15 comments

I'm Peter Roberts, immigration attorney who does work for YC and startups. AMA

47•proberts•1h ago•52 comments

Police Have Used License Plate Readers at Least 14x to Stalk Romantic Interests

https://ij.org/police-have-reportedly-used-license-plate-readers-to-stalk-romantic-interests-at-l...
24•loteck•18m ago•5 comments

An open letter asking NHS England to keep its code open

https://keepthingsopen.com
50•tvararu•1h ago•4 comments

New copy of earliest poem in English, written 1,3k years ago, discovered in Rome

https://www.tcd.ie/news_events/articles/2026/caedmons-hymn-discovery/
162•giuliomagnifico•2d ago•97 comments

Advanced Quantization Algorithm for LLMs

https://github.com/intel/auto-round
62•lastdong•7h ago•12 comments

Apple accidentally left Claude.md files Apple Support app

https://x.com/aaronp613/status/2049986504617820551
308•andruby•5h ago•222 comments

Show HN: Loopsy, a way for terminals and AI agents on different machines to talk

https://github.com/leox255/loopsy
12•todience•6h ago•1 comments

Show HN: Perfect Bluetooth MIDI for Windows

78•mayerwin•6h ago•19 comments

Grok 4.3

https://docs.x.ai/developers/models/grok-4.3
288•simianwords•8h ago•385 comments

Shai-Hulud Themed Malware Found in the PyTorch Lightning AI Training Library

https://semgrep.dev/blog/2026/malicious-dependency-in-pytorch-lightning-used-for-ai-training/
442•j12y•1d ago•161 comments

OpenWarp

https://openwarp.zerx.dev
155•zero-lab•14h ago•119 comments

Pro-Iran crew turns DDoS into shakedown as Ubuntu.com stays down

https://www.theregister.com/2026/05/01/canonical_confirms_ubuntu_infrastructure_under/
23•ndsipa_pomu•1h ago•21 comments

Opus 4.7 knows the real Kelsey

https://www.theargumentmag.com/p/i-can-never-talk-to-an-ai-anonymously
414•ilamont•1d ago•230 comments

If I could make my own GitHub

https://matduggan.com/if-i-could-make-my-own-github/
98•matricaria•1d ago•123 comments

Show HN: WhatCable, a tiny menu bar app for inspecting USB-C cables

https://github.com/darrylmorley/whatcable
275•sleepingNomad•7h ago•104 comments

Softmax, can you derive the Jacobian? And should you care?

https://idlemachines.co.uk/essays/softmax
92•smaddrellmander•3d ago•37 comments

Maladaptive Frugality

https://herbertlui.net/maladaptive-frugality/
166•herbertl•2d ago•182 comments

How an oil refinery works

https://www.construction-physics.com/p/how-an-oil-refinery-works
495•chmaynard•1d ago•168 comments

Claude Code refuses requests or charges extra if your commits mention "OpenClaw"

https://twitter.com/theo/status/2049645973350363168
1261•elmean•1d ago•689 comments

I built a Game Boy emulator in F#

https://nickkossolapov.github.io/fame-boy/building-a-game-boy-emulator-in-fsharp/
318•elvis70•23h ago•72 comments

A Letter from Dijkstra on APL (1982)

https://www.jsoftware.com/papers/Dijkstra_Letter.htm
25•tosh•4h ago•21 comments

Our agent found a bug with WireGuard in Google Kubernetes Engine

https://lovable.dev/blog/hunting-networking-bugs-in-kubernetes
55•vikeri•8h ago•29 comments

CPanel and WHM Authentication Bypass – CVE-2026-41940

https://labs.watchtowr.com/the-internet-is-falling-down-falling-down-falling-down-cpanel-whm-auth...
136•zikani_03•17h ago•51 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•11mo ago

Comments

Callicles•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo ago
For everyone else confused too…think moose in this context is probably this:

https://mooseframework.inl.gov/

oatsandsugar•11mo ago
Actually, this https://github.com/514-labs/moose
LargoLasskhyfv•11mo ago
I thought of https://moosetechnology.org/ and wondered why I'd need all that fancy other stuff?
Twirrim•11mo 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•11mo ago
hehehehe At least I'm not alone...
ajtaylor•11mo ago
Clearly I'm showing my age here too
nivertech•11mo 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•11mo 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•11mo 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•11mo 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