Hacker News

Subscribe to Hacker News feed
Hacker News RSS
Updated: 57 min 21 sec ago

Show HN: 3D linear and nonlinear WebGL Schrödinger numerical solver

Thu, 03/05/2026 - 7:21am

[Higher resolution, but possibly much more computationally demanding, version](https://marl0ny.github.io/split-operator-simulations/js/3d.h...). [2D version](https://marl0ny.github.io/split-operator-simulations/js/2d.h...). This was actually posted here long ago by someone else, where the comments were basically about not being able to run it in the first place. Well recently I've increased device compatibility, but even on some devices it may not run properly. For all Android devices I have to use a JavaScript FFT fallback instead of the default GLSL implementation, so expect significantly slower performance here. But even on some lower-end Android devices, it may not even run at all, so expect a black screen. I've also heard an issue where some of the GUI controls or buttons do not work; as I haven't been able to reproduce this, I suspect this is due to conflicts with browser extensions.

Comments URL: https://news.ycombinator.com/item?id=47260784

Points: 1

# Comments: 0

Categories: Hacker News

BaZi – Deterministic life-charting from the Chinese calendar

Thu, 03/05/2026 - 7:20am

I've been fascinated by BaZi (八字), a Chinese calendrical system that maps birth date/time to Five Element interactions. Unlike Western astrology, it's essentially a deterministic lookup + combinatorial analysis — same inputs always produce the same chart. The core algorithm converts Gregorian dates to the Chinese Sexagenary cycle (天干地支), then derives Four Pillars (year/month/day/hour), each a pair of Heavenly Stem + Earthly Branch. From there it computes element balances, "Ten Gods" relationships, and luck period progressions. I built a web tool that runs this calculation and layers AI interpretation on top for plain-English explanations: https://xuanseal.com Some interesting technical challenges: - The Sexagenary cycle conversion requires handling the solar term calendar (节气), which doesn't align with Gregorian months. I ended up using astronomical algorithms rather than lookup tables for accuracy. - BaZi has ~30 named element interaction patterns ("Clash," "Combine," "Punishment," etc.) that need to be evaluated across all four pillars simultaneously. Getting the combinatorial logic right was the trickiest part. - Separating deterministic calculation from AI interpretation was a deliberate design choice — the chart itself is math, the reading is LLM-generated. Users can verify the chart independently. Stack: Next.js 16, React 19, TypeScript, Drizzle/PostgreSQL, Tailwind v4. Three-locale i18n (en/zh/zh-hant) via next-intl. Happy to discuss the calendrical math or the Five Element system if anyone is curious.

Comments URL: https://news.ycombinator.com/item?id=47260782

Points: 1

# Comments: 0

Categories: Hacker News

Ask HN: How do you give AI agents real codebase context without burning tokens?

Thu, 03/05/2026 - 7:19am

Working on a large Rust codebase. The token problem is real — Claude Code will happily spend $5 of context just trying to understand how two modules relate before writing a single line. And once context compaction kicks in, it's even worse — the agent loses the thread completely and starts grepping the same files again from scratch.

Approaches I've tried:

Feeding CLAUDE.md / architecture docs manually — helps, but gets stale fast. Cursor's built-in indexing — breaks on monorepos, and I don't love proprietary code going to their servers. Basic MCP server with grep — works for exact matches, useless for semantic queries.

Eventually built something more serious: a local Tree-sitter indexer that builds a knowledge graph of file relationships and exposes it via MCP so agents query semantically instead of grepping blind. One tool call instead of 15 grep iterations. Published it here: https://github.com/Muvon/octocode

But genuinely curious what others are doing before I go deeper on it.

Three specific questions:

1. How do you handle the "ripple effect" problem — knowing that changing one file semantically affects others that aren't obviously linked?

2. Do you trust closed-source indexing with proprietary code, or have you gone local-first?

3. Has anyone gotten GraphRAG-style relationship mapping to work in practice at scale, or is it still mostly hype?

Comments URL: https://news.ycombinator.com/item?id=47260775

Points: 2

# Comments: 0

Categories: Hacker News

Show HN: MCP server for KubeCon EU 2026 – AI-powered conference planning

Thu, 03/05/2026 - 7:16am

I built an MCP server that connects AI assistants to live KubeCon + CloudNativeCon Europe 2026 data (March 23-26, Amsterdam).

It exposes 12 tools that let you search 500+ sessions, find speakers, discover evening parties, get venue/hotel/transit info, score sessions based on your role and interests, and detect scheduling conflicts. Data is pulled live from the official sched.com iCal feed and conferenceparties.com.

Install: uvx kubecon-eu-mcp

The fun part: KubeCon has a co-located "Agentics Day: MCP + Agents" event on Monday, so this is an MCP server to help plan your trip to the MCP event.

Built with Python, FastMCP (official MCP SDK), httpx, icalendar, and BeautifulSoup. No database, no config — just install and ask questions. MIT licensed.

GitHub: https://github.com/njoerd114/kubecon-eu-mcp PyPI: https://pypi.org/project/kubecon-eu-mcp/

Comments URL: https://news.ycombinator.com/item?id=47260747

Points: 1

# Comments: 0

Categories: Hacker News

Pinpoint Answer Today

Thu, 03/05/2026 - 6:30am

Article URL: https://pinpointanswertoday.app

Comments URL: https://news.ycombinator.com/item?id=47260404

Points: 1

# Comments: 0

Categories: Hacker News

Accessibility and PDF Documents

Thu, 03/05/2026 - 6:28am
Categories: Hacker News

Plasma Bigscreen

Thu, 03/05/2026 - 6:23am

Article URL: https://plasma-bigscreen.org

Comments URL: https://news.ycombinator.com/item?id=47260362

Points: 2

# Comments: 0

Categories: Hacker News

Show HN: Simvyn – Universal mobile devtool, no SDK required

Thu, 03/05/2026 - 6:22am

Hey HN

I've been building mobile apps for half a decade. There are so many moments where you need to quickly check something — how does this screen look on a 12-inch device? Does the layout break in German where translation strings are twice as long? Does the geo feature work when the user is in Tokyo?

Then there's the everyday stuff — clearing app data to re-test onboarding, installing a fresh build on three devices at once, toggling dark mode to check contrast, sending a test push notification with a specific payload, grabbing screenshots for the App Store listing, checking what's actually in the local SQLite database when state looks wrong.

Each of these is a few terminal commands, a trip to Xcode/Android Studio, or some menu buried three levels deep. Over the years I wrote a lot of bash scripts. Then bash aliases. Then more scripts to chain the aliases together.

To consolidate all of that and make the DX actually pleasant, I built Simvyn — a local web dashboard + CLI that wraps simctl, adb, and devicectl into one interface. npx simvyn starts it up, discovers all your iOS Simulators, Android Emulators, and USB/WiFi-connected devices, and gives you everything from one place. No SDK, no app-side changes — works with any framework.

Try now > npm simvyn

If you've ever rage-typed adb commands at 2 AM, a star would mean a lot :)

GitHub - https://github.com/pranshuchittora/simvyn

Comments URL: https://news.ycombinator.com/item?id=47260353

Points: 1

# Comments: 0

Categories: Hacker News

Buy Deploy-Ready AI Assistants and Skills

Thu, 03/05/2026 - 6:19am

Article URL: https://easyclawmart.pro

Comments URL: https://news.ycombinator.com/item?id=47260332

Points: 1

# Comments: 0

Categories: Hacker News

Pages