Hacker News
Ferrari's New Jony Ive–Designed EV Is Swathed in Glass and Aluminum
Article URL: https://www.wired.com/story/ferrari-ev-jony-ive-design/
Comments URL: https://news.ycombinator.com/item?id=48276286
Points: 1
# Comments: 1
Cloud meeting recorders record everyone in the room. Not just you
Article URL: https://thoth-app.com/blog/2026-05-13-why-your-meeting-recorder-shouldnt-upload-your-audio/
Comments URL: https://news.ycombinator.com/item?id=48276268
Points: 1
# Comments: 0
Show HN: Presentforme.ai – Make slide decks explain themselves
I noticed slide decks become much less useful after meetings.
People send PDFs around, but much of the information was spoken rather than written.
I built PresentForMe.ai think of it as DocSend, but interactive.
Upload a PDF or PowerPoint and instead of sharing a static deck, viewers get an AI presenter that can:
- explain slides - narrate content - answer questions - track all interactions
Still working on things like pacing, and making the response more natural.
here's a short 3-slide demo:
https://presentforme.ai/presenter-live?share=2y_-NRdi0PSyUTW...
Would love feedback. Thank you for your attention.
Comments URL: https://news.ycombinator.com/item?id=48276264
Points: 1
# Comments: 0
What's so special about Emacs? [video]
Article URL: https://www.youtube.com/watch?v=mJZDmO5yOxE
Comments URL: https://news.ycombinator.com/item?id=48276256
Points: 1
# Comments: 0
The power struggle in the narrow seas, a visual story
Article URL: https://ig.ft.com/maritime-chokepoints/
Comments URL: https://news.ycombinator.com/item?id=48276248
Points: 1
# Comments: 0
Show HN: Building Production MPC Wallets: Architecture and Solana Implementation
Article URL: https://nethsara.substack.com/p/byowbuild-your-own-wallet-a-field
Comments URL: https://news.ycombinator.com/item?id=48276044
Points: 1
# Comments: 0
Show HN: GPTFortress, a 24/7 live-stream playing Dwarf Fortress with GPT-5
Article URL: https://www.twitch.tv/gptfortress
Comments URL: https://news.ycombinator.com/item?id=48276013
Points: 1
# Comments: 0
AI guardrails stripped from Meta and Google models in minutes
Article URL: https://www.ft.com/content/5630ed79-a263-41ed-9a1a-321617ae310e
Comments URL: https://news.ycombinator.com/item?id=48276012
Points: 2
# Comments: 1
Ship Early, Learn Fast: What 10 Days of User Feedback Taught Me About My App
Article URL: https://qebapps.statichost.page/devnotes/ship-early-learn-fast/
Comments URL: https://news.ycombinator.com/item?id=48275982
Points: 1
# Comments: 0
The Quiet Death of the Senior Individual Contributor
Show HN: Riot, a modern multicore actor-based ecosystem for OCaml
Article URL: https://riot.ml
Comments URL: https://news.ycombinator.com/item?id=48275970
Points: 1
# Comments: 0
Why can't anyone build a decent deployment platform for plain HTML?
Article URL: https://foliodrop.app
Comments URL: https://news.ycombinator.com/item?id=48275936
Points: 1
# Comments: 1
Frontier Model Training Methodologies
Article URL: https://djdumpling.github.io/2026/01/31/frontier_training.html
Comments URL: https://news.ycombinator.com/item?id=48275910
Points: 1
# Comments: 1
Microsoft to Publishers: Don't Block the AI Bots
Article URL: https://www.adexchanger.com/publishers/microsoft-to-publishers-dont-block-the-ai-bots/
Comments URL: https://news.ycombinator.com/item?id=48275902
Points: 3
# Comments: 0
Zero-knowledge encryption may not stop password theft if servers are hacked
Article URL: https://techxplore.com/news/2026-02-knowledge-encryption-password-theft-servers.html
Comments URL: https://news.ycombinator.com/item?id=48275893
Points: 1
# Comments: 0
AI Making Work Easy for Data Analysts and Founders
Article URL: https://anallyst.app/
Comments URL: https://news.ycombinator.com/item?id=48275871
Points: 1
# Comments: 0
Why codex /goal fails on complex workflows: compaction amnesia and context rot
Hi HN,
When Openai released `/goal` earlier this month, I was really excited to try it for long-horizon tasks. But after using it, it didn't blow me away and i did some digging and found a major architectural flaw when using it for complex multi-issue workflows: context rot.
This isn't anything new, but given how openai positioned this feature to developers, i was let down by how they'd implemented context management.
Though /goal is a step forward in long-horizon coding, it lacks task decomposition and proper handling of context - it uses a multi-tier approach that includes persistent context chaining (PCC) to memory, local vector embeddings for RAG, sliding windows, and compaction.
In principle, giving codex a directive of `/goal work towards closing my open issues on github` should work but this specific execution model hits a fatal wall - Even with massive context windows and RAG, llm reasoning quality degrades significantly beyond 100-150k~ tokens, the agent continues working with worsening performance and finally to prevent token exhaustion it uses compaction to summarize old logs. In practice, this causes compaction amnesia. The model is asked to summarize a massive blob of mixed-relevance information when its reasoning quality is already at its lowest. This compaction leads to forgetting critical constraints, makes way for hallucinations of past decisions, and introduces noise that makes the new context unreliable for long-horizon work.
I wanted to see if enforcing strict outer-loop boundaries would solve this, so I put together an open-source Rust utility called Nightshift (https://github.com/Shaurya-Sethi/nightshift) to test this theory. Instead of running a single long-running session, it isolates the work like this:
1. You write a PRD as a parent Github issue that defines what needs to be implemented and break it down into vertically sliced child issues with explicit kanban-style dependencies. 2. You run `nightshift --prd 1 --agent ` 3. nightshift utilises `gh` cli to resolve the dependency graph and pick the next unblocked issue. 4. it syncs the repo, puts together essential context for just that issue and starts a new agent session piping the prd and issue context directly to stdin for the agent to pick up. 5. the agent is now responsible for the usual coding - new feature branch, implementation and testing, pr and self-review, and finally closes the issue. 6. nightshift finds the next unblocked issue after maintaining git hygiene and loops until all issues linked to the prd are resolved.
It's a very simple orchestration. The agent has no memory of previous runs and it doesn't need to - each task is isolated and gets a fresh agent session. The state is managed entirely through filesystem and git operations and you get determinstic scheduling, failure isolation, and robust autonomy.
It currently supports claude-code, codex, cursor, antigravity, and pi coding agent, and im working on adding support for more agents as this project grows. It's totally open-source if you want to inspect how the session management is implemented.
I'd love to hear your thoughts on this and check out your experiments with long-horizon task orchestration. Maybe the way going forward is combining macro management with micro management?
I truly believe that by adding a dynamic task decomposition orchestrator that manages individual agents, /goal would solve half its problems.
Thanks!
Comments URL: https://news.ycombinator.com/item?id=48275853
Points: 1
# Comments: 0
AI Gurus Are Charging Wall Street Banks $25,000 a Day
Outlines – Structured LLM Outputs
Article URL: https://dottxt-ai.github.io/outlines/latest/
Comments URL: https://news.ycombinator.com/item?id=48275845
Points: 1
# Comments: 0
Joi AI is hiring masturbation consultants to test "Daily Guided Masturbation"
Article URL: https://twitter.com/joi___ai/status/2056518876243149258
Comments URL: https://news.ycombinator.com/item?id=48275827
Points: 1
# Comments: 0
