frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

You Want to Visit the UK? You Better Have a Google Play or App Store Account

https://www.heltweg.org/posts/you-want-to-visit-the-uk-you-better-have-a-google-play-or-app-store...
1•rhazn•34s ago•0 comments

'Futuristic' Unison functional language debuts

https://www.infoworld.com/article/4100673/futuristic-unison-functional-language-debuts.html
1•mpweiher•3m ago•0 comments

The Coming Middle-Class Existential Crisis

https://d1gesto.blogspot.com/2026/02/the-coming-middle-class-existential.html
1•voxleone•3m ago•0 comments

Comparing manual vs. AI requirements gathering: 2 sentences vs. 127-point spec

1•thesssaism•4m ago•0 comments

The Edge of Mathematics

https://www.theatlantic.com/technology/2026/02/ai-math-terrance-tao/686107/
1•danielmorozoff•6m ago•0 comments

China's robot dance for German Chancellor

https://twitter.com/MKuefner/status/2026928081538265378
1•harscoat•6m ago•0 comments

Mako: A simple virtual game console

https://github.com/JohnEarnest/Mako
1•tosh•7m ago•0 comments

Show HN: Molecular Intelligence Platform – Claude Code for Biology – Purna AI

https://purna.ai
1•siddhantminocha•7m ago•0 comments

AI Is a Productivity Revolution, Not a Collapse

https://fabricegrinda.com/ai-is-a-productivity-revolution-not-a-collapse/
1•wslh•8m ago•0 comments

In this Cleveland newsroom, AI is writing (but not reporting) the news

https://www.cjr.org/news/cleveland-newsroom-ai-rewrite-desk-chris-quinn-plain-dealer.php
1•giuliomagnifico•8m ago•0 comments

Show HN: Tablex – Your wedding seat arrangement tool

https://www.tablex.pro
1•postatic•9m ago•0 comments

Data Confidentiality via Storage Encryption on Embedded Linux Devices

https://sigma-star.at/blog/2026/02/data-confidentiality-via-storage-encryption-on-embedded-linux-...
1•st_goliath•11m ago•0 comments

Welcome to the Age of the Slop Fork

https://mbleigh.dev/posts/slop-forks/
1•jdorfman•11m ago•0 comments

Show HN: Parallel rsync launcher with fancy progress bars

https://github.com/overflowy/parallel-rsync
1•overflowy•13m ago•0 comments

DeepSeek Paper – DualPath: Breaking the Bandwidth Bottleneck in LLM Inference

https://arxiv.org/abs/2602.21548
1•dworks•14m ago•0 comments

I Hate Trump's Awful Policies, but I Love That He's an Asshole

https://www.mcsweeneys.net/articles/i-hate-trumps-awful-policies-but-i-love-that-hes-a-huge-asshole
1•amai•14m ago•0 comments

Skiaskia – Read now. Learn later

https://apps.apple.com/us/app/skiaskia-vocabulary-builder/id6758964777
2•codexhaus•14m ago•1 comments

Show HN: Anonymize LLM traffic to dodge API fingerprinting and rate-limiting

https://github.com/xinxin7/claw-shield
1•clawshield•16m ago•0 comments

How and why I attribute LLM-derived code

https://www.jvt.me/posts/2026/02/25/llm-attribute/
1•jamietanna•17m ago•0 comments

Accelerating AI research that accelerates AI research

https://modal.com/blog/accelerating-ai-research-case-study
1•tosh•18m ago•0 comments

Global Intelligence Crisis

https://www.citadelsecurities.com/news-and-insights/2026-global-intelligence-crisis/
2•markus_zhang•18m ago•0 comments

How to Stop a Dictator

https://www.vox.com/politics/479924/democracy-us-brazil-south-korea-poland-backsliding-resilience
3•amai•19m ago•1 comments

Agent System – 7 specialized AI agents that plan, build, verify, and ship code

https://github.com/boraoztunc/agent-system
1•kaizenb•20m ago•1 comments

Apple: Python bindings for access to the on-device Apple Intelligence model

https://github.com/apple/python-apple-fm-sdk
2•tosh•20m ago•0 comments

Show HN: Sidekick – See what your AI coding agents are doing

https://cesarandreslopez.github.io/sidekick-agent-hub/
1•cal_lopez•22m ago•0 comments

Lessons from running Debezium and Kafka at ~1k tables

1•heywalter•22m ago•0 comments

Plato Warned Us About ChatGPT (and Told Us What to Do About It)

https://www.templeton.org/news/plato-warned-us-about-chatgpt-and-told-us-what-to-do-about-it
2•agarttha•23m ago•0 comments

Google API Keys Weren't Secrets. But Then Gemini Changed the Rules

https://simonwillison.net/2026/Feb/26/google-api-keys/
2•speckx•25m ago•0 comments

Automated Generation of Background Music and Sound Effects

https://abagames.github.io/joys-of-small-game-development-en/procedural/sound.html
1•indigodaddy•26m ago•0 comments

Login Endpoint Is Leaking Information

https://federico.page/blog/your-login-endpoint-is-leaking-information/
1•guerra•27m ago•0 comments
Open in hackernews

Show HN: Codex builds a working NES Emulator in one hour

https://github.com/kaonashi-tyc/codex-nes-emulator
4•zi2zi-jit•1h ago
Hi folks! I know NES emulators have been implemented countless times, in practically every language imaginable.

However, having an LLM fully replicate the spec purely from memory—without referencing existing code—is still a significant challenge. It requires the underlying model to have strong anti-hallucination capabilities and solid long-term planning to keep from going astray. Because of this, building an NES emulator makes for an excellent LLM stress test.

Here is how the emulator was built:

Data Gathering: I asked Codex to download the necessary developer manuals and test suites. It was strictly prohibited from searching for reference implementations online.

Development: I instructed Codex to build the emulator until all test suites passed. This process was mostly hands-free; I only chimed in to encourage it to continue when it paused.

First Draft: After just 4-5 prompts, Codex delivered a functional, pure-Python emulator—though it ran at a sluggish 7 FPS.

Optimization: Asking Codex to optimize the app completely on its own didn't work this time. Instead, I had it generate a flamegraph, which identified the PPU update as the bottleneck. I then instructed Codex to rewrite the PPU in Cython without breaking the passing tests.

Overall, I'm incredibly impressed by Codex. I already knew it was capable of the task, but the speed was astonishing. It finished the project in under an hour, using merely 2% of my weekly Pro quota.

While the NES might be a relatively easy system to emulate, I think emulation could serve as a fantastic benchmark for testing future LLMs.

Comments

nunobrito•57m ago
Quite amazing. This opens doors to many other emulators because now it can replicate quite nicely what is expected as output.
zi2zi-jit•54m ago
Totally agree. I am looking to build something more complex next, something like PS1 in a different language as test. That would require significant more effort but with the speed of how model gets improved I am optimistic.
qsera•21m ago
Can you try to vibe code an AI shill detector next?