frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Running local models is good now

https://vickiboykis.com/2026/06/15/running-local-models-is-good-now/
490•jfb•3h ago•241 comments

Claude: Elevated errors across many models

https://status.claude.com/incidents/xmhsglsz3h3w
67•forks•28m ago•33 comments

SpaceX to buy Cursor for $60B

https://www.reuters.com/legal/transactional/spacex-buy-anysphere-60-billion-2026-06-16/
466•itsmarcelg•7h ago•807 comments

Mechanical Watch (2022)

https://ciechanow.ski/mechanical-watch/
501•razin•6h ago•93 comments

TIL: You can make HTTP requests without curl using Bash /dev/TCP

https://mareksuppa.com/til/bash-dev-tcp-http-without-curl/
45•mrshu•1h ago•23 comments

Gamers beware: malicious wallpapers on Steam found stealing accounts

https://securelist.com/dozens-of-malicious-wallpapers-found-on-steam-workshop/120186/
23•speckx•44m ago•6 comments

Making ast.walk 220x Faster

https://reflex.dev/blog/why-ast-walk-when-you-can-ast-sprint/
35•palashawas•1h ago•7 comments

SubQ 1.1 Small

https://subq.ai/subq-1-1-small-technical-report
66•EDM115•3h ago•31 comments

But yak shaving is fun

https://parksb.github.io/en/article/32.html
77•parksb•3h ago•20 comments

After AI Takes Everything

https://ursb.me/en/posts/after-ai-takes-everything/
41•speckx•2h ago•11 comments

Apple's weird anti-nausea dots cured my car sickness

https://www.theverge.com/tech/942854/apple-vehicle-motion-cues-review-really-work
157•neilfrndes•1h ago•55 comments

Correlated randomness in Slay the Spire 2

https://tck.mn/blog/correlated-randomness-sts2/
218•rdmuser•8h ago•65 comments

I admire Fabrice Bellard. He is almost certainly a better overall programmer

https://twitter.com/ID_AA_Carmack/status/2064095424420487226
739•apitman•13h ago•357 comments

Formal Methods and the Future of Programming

https://blog.janestreet.com/formal-methods-at-jane-street-index/
15•nextos•4d ago•1 comments

The octopus architecture for AI agents

https://blog.goodman.dev/blog/octopus-agent-architecture/
6•joshbetz•34m ago•1 comments

Why is Meta destroying its engineering organization?

https://newsletter.pragmaticengineer.com/p/why-is-meta-destroying-its-engineering
62•throwarayes•1h ago•20 comments

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

https://devblogs.microsoft.com/oldnewthing/20260615-00/?p=112419
445•paulmooreparks•13h ago•140 comments

Qwen-Robot Suite: A Foundation Model Suite for Physical World Intelligence

https://qwen.ai/blog?id=qwen-robotsuite
40•ilreb•4h ago•1 comments

An interview with an Apple emoji designer

https://shadycharacters.co.uk/2026/06/ollie-wagner/
69•nate•3d ago•35 comments

Specs Augmented Reality Glasses

https://newsroom.snap.com/introducing-specs-augmented-reality-glasses
15•haberdasher•58m ago•3 comments

Unicorn – The Ultimate CPU Emulator

https://www.unicorn-engine.org/
65•tosh•6h ago•19 comments

'Ghost jobs' could soon be illegal in New York

https://www.fastcompany.com/91558427/ghost-jobs-could-soon-be-illegal-in-new-york
30•toomuchtodo•58m ago•7 comments

Getting Creative with Perlin Noise Fields

https://sighack.com/post/getting-creative-with-perlin-noise-fields
127•0x000xca0xfe•2d ago•20 comments

Banned book library in a wi-fi smart light bulb

https://www.richardosgood.com/posts/banned-book-library/
544•sohkamyung•19h ago•321 comments

Feds freaked over Fable 5 after 'fix this code', not jailbreak, say researchers

https://www.theregister.com/security/2026/06/15/feds-freaked-over-fable-5-after-simple-fix-this-c...
472•_tk_•8h ago•286 comments

The Manhoff Archives: Color photos of Stalin-era USSR taken by a US diplomat

https://www.rferl.org/a/the-manhoff-archive/28359558.html
146•Cider9986•2d ago•49 comments

GateGPT: 56k tokens per second Transformer (KV cache) on FPGA at 80 MHz

https://twitter.com/fguzmanai/status/2065832668172845209
26•laxmena•1h ago•8 comments

I hacked into the worst e-bike and fixed it [video]

https://www.youtube.com/watch?v=hPrtVGimBYs
160•alexis-d•6d ago•80 comments

Making espresso with ultrasound

https://www.unsw.edu.au/newsroom/news/2026/06/New-way-making-espresso
57•darktoto•9h ago•59 comments

A backdoor in a LinkedIn job offer

https://roman.pt/posts/linkedin-backdoor/
1500•lwhsiao•21h ago•282 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