frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: Did Claude lowered its usage limits?

1•yu3zhou4•3m ago•0 comments

Show HN: Built a Chrome extension to help with daily agenda (Gmail and outlook)

1•websku•4m ago•0 comments

The Industry of the Future Is Run by People Who Hate Each Other

https://nymag.com/intelligencer/article/why-all-the-ai-leaders-hate-one-another.html
1•pseudalopex•6m ago•0 comments

Regulators monitor Anthropic's Mythos for banking risks

https://www.reuters.com/legal/government/regulators-monitor-anthropics-mythos-banking-risks-2026-...
4•01-_-•12m ago•0 comments

Your "AI" Pull Request was rejected and you don't know why

https://blog.codepipes.com/llms/your-pr-was-rejected.html
2•kkapelon•14m ago•0 comments

Figma's woes compound with Claude Design

https://martinalderson.com/posts/figmas-woes-compound-with-claude-design/
2•martinald•16m ago•0 comments

SerpApi Claude Code Skill

https://github.com/serpapi/serpapi-claude-plugin
3•jamescollinssp•17m ago•0 comments

A Proposed Framework for Evaluating AI Agent Skills

https://tessl.io/blog/a-proposed-framework-for-evaluating-skills-research-eng-blog/
2•popey•19m ago•0 comments

Ask HN: How to become better at software "engineering"?

1•luplex•30m ago•3 comments

The Victorian sex abuse scandal that shocked Britain and changed the law

https://theconversation.com/the-victorian-sex-abuse-scandal-that-shocked-britain-and-changed-the-...
1•zeristor•31m ago•0 comments

Signal Shot: verify the Signal protocol and its Rust implementation using Lean

https://leodemoura.github.io/blog/2026-4-20-signal-shot-the-platform-is-ready/
2•u1hcw9nx•31m ago•0 comments

List of Heaviest People

https://en.wikipedia.org/wiki/List_of_heaviest_people
2•keepamovin•32m ago•0 comments

Show HN: Radio4000

https://radio4000.com
1•ngc6677•38m ago•0 comments

M 7.4 earthquake – 100 km ENE of Miyako, Japan

https://earthquake.usgs.gov/earthquakes/eventpage/us6000sri7/
2•Someone•38m ago•0 comments

We Built a Metric Simulator

https://simpleobservability.com/blog/metric-simulator
1•khazit•42m ago•0 comments

NSA is using Anthropic's Mythos despite blacklist

https://www.reuters.com/business/us-security-agency-is-using-anthropics-mythos-despite-blacklist-...
20•Palmik•42m ago•4 comments

The first open-weights Large Transaction Model, EWE-1

https://sistemalabs.com/blog/introducing-ewe-1
2•0xideas•56m ago•0 comments

What Makes Docs Beautiful?

https://passo.uno/what-makes-docs-beautiful/
1•theletterf•56m ago•0 comments

How I made a budget tracker for my gf because she kept complaining about Sheets

https://edm115.dev/blog/2026/02/15/how-i-made-spendly/
1•EDM115•58m ago•0 comments

Show HN: MyKana, a Japanese learning app I built for my own study

https://mykana.app/
1•zerratar•1h ago•0 comments

ACM CCS 2026 Between-Cycle Transparency Report

https://github.com/ACM-CCS-2026/Transparency-Report
2•jruohonen•1h ago•0 comments

Bun v1.3.13

https://bun.com/blog/bun-v1.3.13
4•Erenay09•1h ago•0 comments

ShannonBase is database agent platform

https://medium.com/@shannon.data.tech/shannonbase-is-databas-agent-platform-2e914ccfc45e
1•shannon-data-ai•1h ago•1 comments

Architecture is all you need (How to think about agentic design)

https://x.com/compose/articles/edit/2046045421844455424
1•Kushal6070•1h ago•0 comments

Kindle E-Readers Released in 2012 or Earlier

https://www.amazon.com/gp/help/customer/display.html?nodeId=TRXsYxKJr4WTdsVs2P
1•bandwitch•1h ago•1 comments

The AI-Ready Product Data Framework for B2B Commerce

https://virtocommerce.com/assets/ai-ready-pim-framework
2•lizzieyo•1h ago•0 comments

How (and why) we rewrote our production C++ front end infrastructure in Rust

https://blog.nearlyfreespeech.net/2026/04/17/how-and-why-we-rewrote-our-production-c-frontend-inf...
1•birdculture•1h ago•0 comments

Show HN: Busybee - a FIFO build queue for multi-agent dev workflows

https://github.com/githappens/busybee
1•playfultones•1h ago•1 comments

WhatsApp Plus is rolling out new premium features

https://wabetainfo.com/whatsapp-plus-is-rolling-out-new-premium-features/
1•fwn•1h ago•0 comments

DuckDB Now Speaks Dutch

https://duckdb.org/2026/04/01/duckdb-now-speaks-dutch
2•saeedesmaili•1h ago•1 comments
Open in hackernews

Show HN: I Recreated Encarta's MindMaze

https://medium.com/@laurentiu.raducu/i-recreated-encartas-mindmaze-and-added-it-to-select-supply-76e98256cc1c
6•laurentiurad•1h ago
You can check the game here: https://select.supply/game/mindmaze. Curious to learn your feedback. I personally loved the game so much!

Comments

laurentiurad•1h ago
In the article I have also talked about a different game as well that teaches players how chips work. I have added that here too: https://select.supply/game/chipbuilder.
victor10111011•54m ago
this is great!
anbieter27•53m ago
Oh what a blast from the past!!

The game looks awesome but I think it's missing some memory challenges, like recognizing the a song for example. Consider adding those as well.

laurentiurad•41m ago
Thank you so much! I have this on my list, so I will try to add this tonight.
Unical-A•47m ago
Chip Builder is a brilliant concept for teaching low-level logic. How did you handle the gate simulations? Is it a custom engine or are you using something like a logic circuit library under the hood?
laurentiurad•34m ago
Thanks a lot!

I have created my own engine for testing the simulations in TypeScript. There is no external logic circuit library under the hood.

The simulation itself is tick-based with a light event-driven flavor. Each tick I compute an evaluation order using a topological sort of the circuit graph (based on wire connections). Then I iterate through components in that order, gathering inputs from connected wires. Each component runs an evaluate() function, producing outputs and a nextState. Outputs propagate through wires immediately within the same tick.