frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

NoLongerEvil-Thermostat – Nest Generation 1 and 2 Firmware

https://github.com/codykociemba/NoLongerEvil-Thermostat
161•mukti•4h ago•40 comments

Pg_lake: Postgres with Iceberg and data lake access

https://github.com/Snowflake-Labs/pg_lake
218•plaur782•5h ago•64 comments

Codemaps: Understand Code, Before You Vibe It

https://cognition.ai/blog/codemaps
115•janpio•3h ago•27 comments

Show HN: A CSS-Only Terrain Generator

https://terra.layoutit.com
236•rofko•7h ago•71 comments

Whole Earth Index

https://wholeearth.info/
50•bookofjoe•1w ago•6 comments

By the Power of Grayscale

https://zserge.com/posts/grayskull/
36•surprisetalk•4d ago•6 comments

Launch HN: Plexe (YC X25) – Build production-grade ML models from prompts

https://www.plexe.ai/
46•vaibhavdubey97•4h ago•16 comments

What is a manifold?

https://www.quantamagazine.org/what-is-a-manifold-20251103/
298•isaacfrond•11h ago•96 comments

Recovering videos from my Sony camera that I stupidly deleted

https://www.jeffgeerling.com/blog/2025/recovering-videos-my-sony-camera-i-stupidly-deleted
61•speckx•1w ago•34 comments

Optimizing Datalog for the GPU

https://danglingpointers.substack.com/p/optimizing-datalog-for-the-gpu
85•blakepelton•6h ago•15 comments

Normalize Identifying Corporate Devices in Your Software

https://lgug2z.com/articles/normalize-identifying-corporate-devices-in-your-software/
52•Bogdanp•6d ago•33 comments

We're open-sourcing the successor of Jupyter notebook

https://deepnote.com/blog/were-open-sourcing-the-successor-of-jupyter-notebook
140•zX41ZdbW•3h ago•115 comments

This Day in 1988, the Morris worm infected 10% of the Internet within 24 hours

https://www.tomshardware.com/tech-industry/cyber-security/on-this-day-in-1988-the-morris-worm-sli...
176•canucker2016•5h ago•111 comments

How devtools map minified JS code back to your TypeScript source code

https://www.polarsignals.com/blog/posts/2025/11/04/javascript-source-maps-internals
44•manojvivek•5h ago•10 comments

My Truck Desk

https://www.theparisreview.org/blog/2025/10/29/truck-desk/
385•zdw•18h ago•97 comments

Bloom filters are good for search that does not scale

https://notpeerreviewed.com/blog/bloom-filters/
153•birdculture•11h ago•33 comments

Chaining FFmpeg with a Browser Agent

https://100x.bot/a/chaining-ffmpeg-with-browser-agent
80•shardullavekar•8h ago•44 comments

Tell HN: X is opening any tweet link in a webview whether you press it or not

455•stillatit•15h ago•415 comments

How AGI became the most consequential conspiracy theory of our time

https://www.technologyreview.com/2025/10/30/1127057/agi-conspiracy-theory-artifcial-general-intel...
37•samuel2•47m ago•14 comments

Customize Nano Text Editor

https://shafi.ddns.net/blog/customize-nano-text-editor
106•shafiemoji•1w ago•41 comments

You can't cURL a Border

https://drobinin.com/posts/you-cant-curl-a-border/
422•valzevul•20h ago•227 comments

Aisuru botnet shifts from DDoS to residential proxies

https://krebsonsecurity.com/2025/10/aisuru-botnet-shifts-from-ddos-to-residential-proxies/
53•feross•6d ago•27 comments

Things you can do with diodes

https://lcamtuf.substack.com/p/things-you-can-do-with-diodes
354•zdw•21h ago•102 comments

AI's Dial-Up Era

https://www.wreflection.com/p/ai-dial-up-era
432•nowflux•1d ago•393 comments

The 512KB Club

https://512kb.club/
115•lr0•5h ago•58 comments

When stick figures fought

https://animationobsessive.substack.com/p/when-stick-figures-fought
318•ani_obsessive•20h ago•118 comments

Tenacity – a multi-track audio editor/recorder

https://tenacityaudio.org
126•smartmic•1w ago•34 comments

Show HN: I built a local-first daily planner for iOS

https://apps.apple.com/ca/app/to-do-list-planner-zesfy/id6479947874
69•zesfy•7h ago•51 comments

Reverse-engineered CUPS driver for Phomemo receipt/label printers

https://github.com/vivier/phomemo-tools
83•Curiositry•1w ago•24 comments

Data breach at major Swedish software supplier impacts 1.5M

https://www.bleepingcomputer.com/news/security/data-breach-at-major-swedish-software-supplier-imp...
42•fleahunter•4h ago•13 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•5mo ago

Comments

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

https://mooseframework.inl.gov/

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