Friday, May 30, 2025

New top story on Hacker News: Stop Vibe Coding Every Damn Time!

Stop Vibe Coding Every Damn Time!
8 by adityaoberai1 | 1 comments on Hacker News.


New top story on Hacker News: Show HN: Asdf Overlay – High performance in-game overlay library for Windows

Show HN: Asdf Overlay – High performance in-game overlay library for Windows
15 by storycraft | 4 comments on Hacker News.
I am making a open source overlay library. Game overlay is for rendering contents on top of game screen. Representative examples are Discord and Steam in-game overlay. They are complicated because it has to hook rendering part of a game. Asdf overlay provides easy to use interfaces for rendering on top of game screen. I recognize game performance degradation due to overlay rendering, so GPU shared texture was used to avoid CPU framebuffer copy. Asdf Overlay is capable of rendering full screen overlay without noticeable performance loss.

New top story on Hacker News: When will M&S take online orders again?

When will M&S take online orders again?
33 by fredley | 29 comments on Hacker News.


Wednesday, May 28, 2025

New top story on Hacker News: A toy RTOS inside Super Mario Bros. using emulator save states

A toy RTOS inside Super Mario Bros. using emulator save states
20 by notorious_pgb | 7 comments on Hacker News.
This started as a throwaway metaphor in a blog post, but is now fully runnable: a toy RTOS with preemptive multitasking inside of Super Mario Bros. on the NES. Essentially, this is: - A rudimentary preemptive RTOS - Using an unmodified NES emulator (FCEUX) as the CPU - "Unmodified" depending on how you define terms - With emulator save states as the thread contexts - With support for (very basic) mutexes, interrupt masking, and condition variables - Demonstrated using Super Mario Bros. 1-1 with sections of the map dedicated to various synchronization primitives There are many simplifications and shortcuts taken (doesn't even have task priorities), and it doesn't map 1:1 to true multithreading (e.g., emulator save states represent the state of the entire machine including RAM, whereas thread contexts represent a much more minimal slice), but I think it's A) pretty interesting and B) a unique visceral explanation of threads.

New top story on Hacker News: What does "Undecidable" mean, anyway

What does "Undecidable" mean, anyway
12 by BerislavLopac | 1 comments on Hacker News.


New top story on Hacker News: Ice Cream Replaced Booze in the US Navy

Ice Cream Replaced Booze in the US Navy
19 by speckx | 12 comments on Hacker News.


New top story on Hacker News: Why is it so hard to get families to live in community houses?

Why is it so hard to get families to live in community houses?
13 by caser | 10 comments on Hacker News.


Tuesday, May 27, 2025

New top story on Hacker News: Show HN: Maestro – A Framework to Orchestrate and Ground Competing AI Models

Show HN: Maestro – A Framework to Orchestrate and Ground Competing AI Models
4 by defqon1 | 0 comments on Hacker News.
ive spent the past few months designing a framework for orchestrating multiple large language models in parallel — not to choose the “best,” but to let them argue, mix their outputs, and preserve dissent structurally. It’s called Maestro heres the whitepaper https://ift.tt/zT9SXAR (Narrative version here: https://ift.tt/J5wYQeT... ) Core ideas: Prompts are dispatched to multiple LLMs (e.g., GPT-4, Claude, open-source models) The system compares their outputs and synthesizes them It never resolves into a single voice — it ends with a 66% rule: 2 votes for a primary output, 1 dissent preserved Human critics and analog verifiers can be triggered for physical-world confirmation (when claims demand grounding) The feedback loop learns not only from right/wrong outputs, but from what kind of disagreements lead to deeper truth Maestro isn’t a product or API — it’s a proposal for an open, civic layer of synthetic intelligence. It’s designed for epistemic integrity and resistance to centralized control. Would love thoughts, critiques, or collaborators.

New top story on Hacker News: Running GPT-2 in WebGL: Rediscovering the Lost Art of GPU Shader Programming

Running GPT-2 in WebGL: Rediscovering the Lost Art of GPU Shader Programming
14 by nathan-barry | 2 comments on Hacker News.


New top story on Hacker News: Show HN: Free mammogram analysis tool combining deep learning and vision LLM

Show HN: Free mammogram analysis tool combining deep learning and vision LLM
7 by coolwulf | 6 comments on Hacker News.
I've built Neuralrad Mammo AI, a free research tool that combines deep learning object detection with vision language models to analyze mammograms. The goal is to provide researchers and medical professionals with a secondary analysis tool for investigation purposes. Important Disclaimers: - NOT FDA 510(k) cleared - this is purely for research investigation - Not for clinical diagnosis - results should only be used as a secondary opinion - Completely free - no registration, no payment, no data retention What it does: 1. Upload a mammogram image (JPEG/PNG) 2. AI identifies potential masses and calcifications 3. Vision LLM provides radiologist-style analysis 4. Interactive viewer with zoom/pan capabilities You can try it with any mass / calcification mammo images, e.g. by searching Google: mammogram images mass Key Features: - Detects and classifies masses (benign/malignant) - Identifies calcifications (benign/malignant) - Provides confidence scores and size assessments - Generates detailed analysis using vision LLM - No data storage - images processed and discarded Use Cases: - Medical research and education - Second opinion for researchers - Algorithm comparison studies - Teaching tool for radiology training - Academic research validation The system is designed specifically for research investigation purposes and to complement (never replace) professional medical judgment. I'm hoping this can be useful for the medical AI research community and welcome feedback on the approach. Address: https://ift.tt/PT9vq7d

Sunday, May 18, 2025

New top story on Hacker News: Dezyne Programming Language

Dezyne Programming Language
11 by aulisius | 0 comments on Hacker News.


New top story on Hacker News: The Fall of Roam

The Fall of Roam
30 by ingve | 4 comments on Hacker News.


New top story on Hacker News: Show HN: Vaev – A browser engine built from scratch (It renders google.com)

Show HN: Vaev – A browser engine built from scratch (It renders google.com)
19 by monax | 6 comments on Hacker News.
We’ve been working on Vaev, a minimal web browser engine built from scratch. It supports HTML/XHTML, the CSS cascade, @page rules for pagination, and print-to-PDF rendering. It even handles calc(), var(), and percentage units—and yes, it renders Google.com (mostly). This is an experimental project focused on learning and exploration. Networking is basic ( http:// and file:// only), and grid layouts aren’t supported yet, but we’re making progress fast. We’d love your thoughts and feedback.