frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Alpine Divorce: A Hike That Ends a Relationship

https://www.nytimes.com/2026/04/12/style/alpine-divorce-relationships-hike.html
1•mooreds•36s ago•0 comments

Nordics and Estonia rolling out offline card payment backup in case internet cut

https://www.reuters.com/business/finance/nordics-estonia-plan-offline-card-payment-back-up-if-int...
2•_____k•1m ago•0 comments

Show HN: Context Surgeon – Let AI agents edit their own context window

https://github.com/jackfruitsandwich/context-surgeon
1•jdjdjdi•1m ago•0 comments

The Capability Im-Maturity Model (CIMM) (2003)

https://web.archive.org/web/20030117052912/http://www.stsc.hill.af.mil/crosstalk/1996/11/xt96d11h...
1•rzk•1m ago•0 comments

Forgejo prohibits AI-generated work

https://codeberg.org/forgejo/governance/src/commit/57bf0779bec61e2facd1679efc9bc5839e631d40/AIAgr...
1•singiamtel•2m ago•1 comments

Hybrid Constructions: The Post-Quantum Safety Blanket

https://soatok.blog/2026/04/13/hybrid-constructions-the-post-quantum-safety-blanket/
1•some_furry•2m ago•0 comments

Grassroots Fediverse Evolution

https://coding.social/blog/grassroots-evolution/
1•paulnpace•2m ago•0 comments

I like to use Soviet control panels as a starting point

https://unsung.aresluna.org/i-like-to-use-soviet-control-panels-as-a-starting-point/
1•speckx•3m ago•0 comments

America is done – dominican republic takes lead

https://bitcoin-zero-down-2ea152.gitlab.io/
1•machardmachard•3m ago•0 comments

Show HN: CCS – CLI to switch Claude Code profiles with different MCP servers

https://github.com/virtuallytd/claude-code-switcher
1•virtuallytd•3m ago•0 comments

Apple's AI Chief John Giannandrea Departs This Week

https://www.macrumors.com/2026/04/13/john-giannandrea-departs-apple-this-week/
1•tosh•6m ago•0 comments

ALTK‑Evolve: On‑the‑Job Learning for AI Agents

https://huggingface.co/blog/ibm-research/altk-evolve
1•gmays•6m ago•0 comments

Quality and Suffering in Software Delivery

https://staffordwilliams.com/blog/2026/02/01/quality-and-suffering/
1•rzk•8m ago•0 comments

The Dumbest Hack of the Year Exposed a Real Problem

https://www.wired.com/story/crosswalk-city-hack-cybersecurity-lessons/
1•Brajeshwar•8m ago•1 comments

I Quit Drinking for a Year

https://dynomight.substack.com/p/drinking
1•paulpauper•9m ago•0 comments

Taxes Were Designed to Suck

https://yourbrainonmoney.substack.com/p/your-taxes-were-designed-to-suck
2•jader201•10m ago•0 comments

The Fundamental Dilemma of Schooling

https://arnoldkling.substack.com/p/the-fundamental-dilemma-of-schooling
1•paulpauper•10m ago•0 comments

Framework Laptop magnetic charging plug

https://community.frame.work/t/oshe-framework-magnetic-charging-connector-card/81798
1•sounds•11m ago•0 comments

Apps and programming: two accidental tyrannies

https://andymatuschak.org/tat/
1•surprisetalk•12m ago•0 comments

Show HN: IceGate – Observability data lake engine

https://github.com/icegatetech/icegate
5•mineev•12m ago•1 comments

Code Deployment: The self-hosted way

https://priyatham.in/en/post/deploy-websites/
1•vasquezempereur•12m ago•1 comments

All Writers Will End Up AI-Maxxing, and This Is Good

https://www.richardhanania.com/p/all-writers-will-end-up-ai-maxxing
2•paulpauper•13m ago•1 comments

The Worst Coded Item in Dota 2 [video]

https://www.youtube.com/watch?v=KHGVlWQBvuE
1•skibz•13m ago•0 comments

Show HN: 15 yrs of Django in prod: patterns I keep using (agent skills)

https://github.com/dvf/opinionated-django
2•vanflymen•13m ago•1 comments

Ask HN: What's the best AI model for system design nowadays?

2•jcremona•15m ago•0 comments

RNDA: A data architecture where raw data is permanently discarded after encoding

https://rnda.io/
1•ziggytech•16m ago•0 comments

Continuous Collision Detection as a Visual Effect

https://adamheins.com/blog/ccd-visual
1•adamheins•16m ago•0 comments

Why the Amish Have Never Needed a Gas Station [video]

https://www.youtube.com/watch?v=jl9peJKkf1M
2•user20180120•17m ago•1 comments

The AI Revolution in Math Has Arrived

https://www.quantamagazine.org/the-ai-revolution-in-math-has-arrived-20260413/
1•lschueller•17m ago•0 comments

Lerd, an open source Herd-like PHP development environment for Linux and macOS

https://github.com/geodro/lerd
1•geodro•18m ago•1 comments
Open in hackernews

Kondi-chat (open cursor) – multi-model AI coding CLI with intelligent routing

https://github.com/thisPointOn/kondi-chat
1•thispointon•1h ago

Comments

thispointon•1h ago
I have been building multi model tools for a while. Then cursor released thier multi model feature set last week. Im not paying 20$ a month on top of what i already pay. This is api based but then z.ai and deepseek are cheaper than subscriptions for a good coding assistant and frontier models can do the planning.

Kondi-chat routes between Claude, GPT, DeepSeek, Gemini, Grok, and local Ollama models automatically. It classifies your intent (coding task vs discussion), checks your budget profile, and picks the best available model. Three built-in profiles: `quality` uses frontier models with a $10 cap, `balanced` is the default at $3, and `cheap` runs everything on the fastest/cheapest models for $0.75.

The part I'm most proud of is council deliberation — for hard architectural decisions, you can spawn a multi-model debate where 3-5 models argue across several rounds and a manager synthesizes the final recommendation. It's expensive but it catches things no single model would.

Other stuff that might interest HN: Rust TUI (Ratatui, inline viewport so terminal scroll/select/copy work natively), agent loop with file tools, MCP support, git integration with undo/checkpoints, session resume, per-model cost analytics. MIT licensed.

Tech stack: Node.js backend (TypeScript) + Rust TUI, communicating over JSON-RPC on stdio. The router has three tiers: a small NN trained on your usage data, an LLM-based intent classifier for cold start, and a deterministic rule fallback.

Would love feedback on the routing approach — is automatic model selection actually useful or do people prefer explicit control? Also, Would love some pointers on getting the subscription based models in here.