frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

watchOS 27 Drops Support for Apple Watch Series 9, Ultra 1, SE 2, and Older

https://www.macrumors.com/2026/06/08/watchos-27-drops-support-for-apple-watch-series-9-ultra-se-2/
1•vortext•1m ago•1 comments

Functions and data can dance as equal partners (1998)

https://dl.acm.org/doi/abs/10.1145/312627.312705
1•tosh•4m ago•0 comments

Anthropic: Measuring LLMs' impact on N-day exploits

https://red.anthropic.com/2026/n-days/
1•lschueller•6m ago•0 comments

DOX: Self-documenting layer for coding agents

https://github.com/agent0ai/dox
1•agentzero•6m ago•0 comments

Apple Core AI Framework

https://developer.apple.com/documentation/coreai/
2•hmokiguess•10m ago•0 comments

The Archetypes of Liberal Womanhood Under Empire

https://yohana444.substack.com/p/the-archetypes-of-liberal-womanhood
1•abaymado•13m ago•0 comments

The Economist Who Solved the Free-Rider Problem

https://developingeconomics.org/2025/06/24/the-economist-who-solved-the-free-rider-problem/
2•xeonmc•15m ago•0 comments

NFCore – NFC Tag Reader Writer

https://play.google.com/store/apps/details?id=com.echopersona.nfcore&hl=en_US
1•dimitriaces•15m ago•1 comments

Ask HN: Options for critical thinking and learning outside work?

1•hnthrow10282910•16m ago•1 comments

Reeed – a read-it-later app for iOS, built after Pocket shut down

https://www.reeed.io/
2•theiskaa•16m ago•0 comments

Experience using AI software to prove Euler sum results [pdf]

https://www.davidhbailey.com/dhbpapers/Chatbots.pdf
1•cpp_frog•16m ago•0 comments

The FatFIRE Subreddit Is the Internet's Best Sideshow

https://www.vanityfair.com/story/fatfire-reddit-early-retirement
1•littlexsparkee•17m ago•1 comments

Show HN: AST-guard – Fast, zero-cost structural checks for LLM code execution

https://github.com/Nick-is-building/ast-guard
1•thinking-nick•17m ago•0 comments

Mental Defrag

https://tracydurnell.com/2026/06/05/mental-defrag/
1•speckx•17m ago•0 comments

Instead of Taking Your Job, A.I. Might Transform It

https://www.newyorker.com/culture/open-questions/instead-of-taking-your-job-ai-might-transform-it
2•zdw•17m ago•0 comments

Why Isn't AI Taking Our Jobs?

https://calnewport.com/why-isnt-ai-taking-our-jobs/
3•zdw•18m ago•0 comments

Man jailed for a month despite Flock showing he was 5 miles from crime scene

https://arstechnica.com/tech-policy/2026/06/man-jailed-for-a-month-despite-flock-showing-he-was-5...
5•Cider9986•19m ago•0 comments

watchOS 27 drops support for Apple Watch Series 6/7/8/9 and Ultra 1

https://www.apple.com/os/watchos/
3•JoshGlazebrook•19m ago•1 comments

Show HN: Stop returning raw JSON from MCP servers, build rich inline UIs

https://medium.com/towards-artificial-intelligence/mcp-apps-build-interactive-apps-directly-insid...
1•muhammad-shafat•20m ago•0 comments

The Problem with Political Pearl-Clutching

https://www.playboy.com/read/sex/the-problem-with-political-pearl-clutching
1•bushwart•24m ago•0 comments

Show HN: AI Pair Programmer for Emacs

https://github.com/jaketothepast/codetutor
1•jakewindle47•24m ago•0 comments

Microsoft Hacked to Deliver Malware to Claude and Gemini Users

https://www.404media.co/microsoft-hacked-to-deliver-malware-to-claude-and-gemini-users/
4•guessmyname•24m ago•0 comments

Client-side PDF audiobook reader with AI voice

https://audiobook.vedgupta.in/
1•innovatorved•24m ago•0 comments

LLM Are Universal Simulators

https://invertedpassion.com/llm-are-universal-simulators/
1•speckx•24m ago•0 comments

Show HN: Wallie – Open-source AI streamer that watches and hears your screen

https://github.com/Alradyin/wallie-V2
1•Alrady•25m ago•0 comments

A Dumb Harness: Fundamentals of running coding agents on a loop

https://www.beontheloop.com/deck
1•shekharupadhaya•26m ago•0 comments

Could Switzerland Become the First Country to Cap Its Population?

https://www.newyorker.com/magazine/2026/06/15/could-switzerland-become-the-first-country-to-limit...
2•xnx•26m ago•0 comments

8 years in crypto: Etherean to Crypto Moderate

https://cstein.xyz/posts/2026/4/28/crypto_evolution_part1
1•cstein2•28m ago•0 comments

The Seven Habits That Lead to Happiness in Old Age (2022)

https://www.theatlantic.com/family/archive/2022/02/happiness-age-investment/622818/
1•zdw•28m ago•0 comments

Building Stuff I don't Want to

https://amxmln.com/blog/2026/building-stuff-i-don-t-want-to/
1•speckx•31m ago•0 comments
Open in hackernews

Full Reverse Engineering of the TI-84 Plus Operating System

https://siraben.github.io/ti84p-re/
50•siraben•1h ago

Comments

analogpixel•52m ago
I couldn't tell, is a person doing this? or was this an LLM dissecting it?
xkcd-sucks•47m ago
> Confidence is flagged: .....

> The big picture

> The structural reverse-engineering is comprehensive (every subsystem mapped, both cross-page mechanisms resolved ...

> Confidence summary / open items

Probably an LLM wrote the docs.

> (the GhidraMCP plugin reconnects for interactive work)

Probably LLM+Ghidra for the actual RevEng. Ultimately does it matter if the end product is works though

siraben•44m ago
This was made collaboratively by me directing coding agents at the binary, using Ghidra MCP extensively, diassembly and also dynamic analysis with an emulator. I don't have a writeup of the process but it was definitely not fully automatable (I wish though). I might prepare a blog post with transcripts and session history and things I learned along the way.

Broad takeaways:

- Ghidra MCP is not a silver bullet. Lots of opportunities for mis-decoding especially on older instruction sets (e.g. conflating code + data), which requires user input to flag data layout/structs.

- Agents still need a lot of user direction otherwise the RE production is just kind of a random walk. With Z80 it's decent at reading code but I expect that it has much worse performance than reading x86 or ARM for instance. The TI-84+ has a bunch of hardware quirks as well.

- GPT 5.5 is better than Opus 4.8 at RE. Opus 4.8 loves plausible-sounding RE'd logic without any checking. The gold standard is actually dynamically executing the binary and comparing the logic against the prose.

- Maintaining consistency in style and prose is a PITA across the wiki. Hard to reconcile prose <-> code. Can be somewhat mitigated by agent loops.

Was also in discussions with people in the TI calculator programming space who helped provide guidance as well. We previously did not have a catalogue of every subsystem in TI-OS yet alone most subroutines in the OS.

analogpixel•27m ago
how much have you spent so far on this (for tokens)?
siraben•22m ago
The plans are heavily subsidized by the AI companies so I didn't end up needing to do API usage or buy another subscription. I have ChatGPT Pro and Claude Code Max.
xyst•12m ago
spends $100/mo (ChatGPT Pro) and $100/mo or $200/mo ("5X" and "20X", respectively) for AI tools.

So between $200-300/mo or $2,400-3,600/yr.

is that what you mean by "heavily subsidized by the AI companies"? What a joke.

No, your silly research is subsidized by middle America through higher costs of utility bills, heavy extraction and depletion of water tables, use of stolen or misappropriated land for AI specific datacenters, and the continued pollution of the world.

hedgehog•19m ago
Do you have plans to generate a buildable version of the sources, and do you know the original implementation language (C?).
siraben•13m ago
It's highly likely that the original implementation language was assembly. The code is very idiomatic.

Regarding source build, I think reverse engineering it to the point where you can reconstruct the source is possibly legally problematic, so I don't plan to do this, but maybe for certain subsystems like MathPrint (equation display) which was especially fun to RE. I have a PR up for it and it will be live at

https://siraben.github.io/ti84p-re/mathprint

tadfisher•38m ago
I love that this project produced so much info, and also I'm disappointed with the prose. You probably didn't mean to explain the typographic nuances of em vs. en-dashes to the reader: https://siraben.github.io/ti84p-re/conventions.html#typograp...
siraben•37m ago
Thanks for the feedback, fixing.