frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Tony Hoare has died

https://blog.computationalcomplexity.org/2026/03/tony-hoare-1934-2026.html
1600•speckx•13h ago•209 comments

U+237C ⍼ Is Azimuth

https://ionathan.ch/2026/02/16/angzarr.html
203•cokernel_hacker•5h ago•22 comments

Zig – Type Resolution Redesign and Language Changes

https://ziglang.org/devlog/2026/#2026-03-10
64•Retro_Dev•3h ago•16 comments

Cloudflare crawl endpoint

https://developers.cloudflare.com/changelog/post/2026-03-10-br-crawl-endpoint/
181•jeffpalmer•6h ago•87 comments

Agents that run while I sleep

https://www.claudecodecamp.com/p/i-m-building-agents-that-run-while-i-sleep
268•aray07•9h ago•238 comments

Julia Snail – An Emacs Development Environment for Julia Like Clojure's Cider

https://github.com/gcv/julia-snail
16•TheWiggles•2d ago•0 comments

Yann LeCun raises $1B to build AI that understands the physical world

https://www.wired.com/story/yann-lecun-raises-dollar1-billion-to-build-ai-that-understands-the-ph...
376•helloplanets•19h ago•342 comments

Writing my own text editor, and daily-driving it

https://blog.jsbarretto.com/post/text-editor
33•todsacerdoti•2h ago•3 comments

SSH Secret Menu

https://twitter.com/rebane2001/status/2031037389347406054
99•piccirello•1d ago•39 comments

Launch HN: RunAnywhere (YC W26) – Faster AI Inference on Apple Silicon

https://github.com/RunanywhereAI/rcli
195•sanchitmonga22•11h ago•113 comments

Debian decides not to decide on AI-generated contributions

https://lwn.net/SubscriberLink/1061544/125f911834966dd0/
299•jwilk•13h ago•226 comments

Mesh over Bluetooth LE, TCP, or Reticulum

https://github.com/torlando-tech/columba
56•khimaros•9h ago•6 comments

Universal vaccine against respiratory infections and allergens

https://med.stanford.edu/news/all-news/2026/02/universal-vaccine.html
157•phony-account•5h ago•60 comments

FFmpeg-over-IP – Connect to remote FFmpeg servers

https://github.com/steelbrain/ffmpeg-over-ip
143•steelbrain•10h ago•52 comments

Invoker Commands API

https://developer.mozilla.org/en-US/docs/Web/API/Invoker_Commands_API
69•maqnius•2d ago•12 comments

Meta acquires Moltbook

https://www.axios.com/2026/03/10/meta-facebook-moltbook-agent-social-network
449•mmayberry•13h ago•297 comments

Intel Demos Chip to Compute with Encrypted Data

https://spectrum.ieee.org/fhe-intel
231•sohkamyung•15h ago•98 comments

Launch HN: Didit (YC W26) – Stripe for Identity Verification

56•rosasalberto•13h ago•52 comments

Bippy: React Internals Toolkit

https://www.bippy.dev/
27•handfuloflight•2d ago•6 comments

Exploring the ocean with Raspberry Pi–powered marine robots

https://www.raspberrypi.com/news/exploring-the-ocean-with-raspberry-pi-powered-marine-robots/
65•Brajeshwar•3d ago•8 comments

Roblox is minting teen millionaires

https://www.bloomberg.com/news/articles/2026-03-06/roblox-s-teen-millionaires-are-disrupting-the-...
86•petethomas•3d ago•83 comments

EQT eyes potential $6B sale of Linux pioneer SUSE, sources say

https://www.reuters.com/business/eqt-eyes-potential-6-billion-sale-linux-pioneer-suse-sources-say...
28•shscs911•1d ago•7 comments

Show HN: How I topped the HuggingFace open LLM leaderboard on two gaming GPUs

https://dnhkng.github.io/posts/rys/
334•dnhkng•15h ago•92 comments

Rebasing in Magit

https://entropicthoughts.com/rebasing-in-magit
193•ibobev•14h ago•129 comments

After outages, Amazon to make senior engineers sign off on AI-assisted changes

https://arstechnica.com/ai/2026/03/after-outages-amazon-to-make-senior-engineers-sign-off-on-ai-a...
492•ndr42•15h ago•411 comments

Tell HN: Apple development certificate server seems down?

76•strongpigeon•8h ago•30 comments

RISC-V Is Sloooow

https://marcin.juszkiewicz.com.pl/2026/03/10/risc-v-is-sloooow/
190•todsacerdoti•8h ago•182 comments

Open Weights isn't Open Training

https://www.workshoplabs.ai/blog/open-weights-open-training
88•addiefoote8•1d ago•28 comments

Mother of All Grease Fires (1994)

https://milk.com/wall-o-shame/bucket.html
42•xk3•8h ago•16 comments

We are building data breach machines and nobody cares

https://idealloc.me/posts/we-are-building-data-breach-machines-and-nobody-cares/
103•idealloc_haris•13h ago•40 comments
Open in hackernews

Show HN: Safelaunch – Validates your environment before you push to production

https://www.npmjs.com/package/safelaunch
5•karthicedricq•3d ago
It works on my machine" is still the most common deployment bug I kept running into the same stupid deployment issue. Everything works locally. Tests pass. I deploy. Production crashes. After digging through logs for an hour the problem ends up being something simple like: • a missing environment variable • something added to .env.example but not to .env • a config mismatch between environments The most common one for me was forgetting to add a variable locally after adding it to .env.example. So I built a small tool to catch this instantly. It compares .env and .env.example and tells you if something required is missing before deployment. Example output: deploycheck running...

Missing variables: - DATABASE_URL - REDIS_URL

Fix the issues above before deployment. The idea is basically a spell checker for backend configuration mistakes. Instead of finding out after deploy, it catches the issue while you're still working. Right now it can: • detect missing environment variables • run locally as a CLI • run in CI as a check before deployment I’m trying to figure out if this is actually useful outside my own workflow. Curious if others run into this problem as often as I do.