frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

From plastics to pharmaceuticals, a new discovery sparks chain reactions

https://phys.org/news/2026-03-plastics-pharmaceuticals-discovery-chain-reactions.html
1•Brajeshwar•54s ago•0 comments

How The Pentagon Got Hooked on AI War Machines

https://www.bloomberg.com/news/features/2026-03-12/iran-war-tests-project-maven-us-ai-war-strategy
1•macleginn•1m ago•0 comments

GenCAD

https://gencad.github.io/
1•bilsbie•3m ago•0 comments

Gephi – The Open Graph Viz Platform

https://gephi.org
1•Tomte•3m ago•0 comments

Show HN: Coral – Visualize .proto file dependencies as an interactive graph

https://github.com/daisuke8000/coral
1•dsk8000•3m ago•0 comments

I Built Google File System in Go: One File, Zero Dependencies

https://jitesh117.github.io/blog/google-file-system-in-go/
1•caust1c•4m ago•1 comments

WiFi 8 silicon is shipping before most people even own a WiFi 7 router

https://medium.com/@robert.shane.kirkpatrick/wifi-8-is-coming-before-most-people-even-own-a-wifi-...
1•totalvaluegroup•4m ago•0 comments

The Model Is the Company

https://alexwang.ai/posts/the-model-is-the-company/
1•ketothekingdom•4m ago•0 comments

Ask HN: What makes a great programmer and what makes a great SRE?

1•ernesto905•5m ago•0 comments

The Chokepoint We Missed: Sulfur, Hormuz, and the Threats to Military Readiness

https://mwi.westpoint.edu/the-chokepoint-we-missed-sulfur-hormuz-and-the-threats-to-military-read...
1•r721•6m ago•1 comments

Mysterious large steel cylinder disrupts traffic in Japan

https://www.rte.ie/news/world/2026/0313/1563216-japan-cylinder/
2•austinallegro•7m ago•0 comments

Triassic Period

https://www.nps.gov/articles/000/triassic-period.htm
1•mooreds•7m ago•0 comments

HAL – Harmful Action Limiter: Lean command guard for AI coding agents.

https://github.com/otherland/hal
2•otherland26•8m ago•1 comments

Show HN: OpenLight – Lightweight Telegram AI Agent for Raspberry Pi

https://github.com/evgenii-engineer/openLight
1•evgenii_isupov•10m ago•1 comments

A Cloudflare Worker that generates dynamic SVG bar charts of your traffic

https://github.com/sd416/cloudflare-worker-stats
1•rishikeshs•10m ago•0 comments

The Disaggregation of the Lakehouse Stack

https://cdelmonte.dev/essays/the-disaggregation-of-the-lakehouse-stack/
1•cdelmonte•11m ago•1 comments

AI Agent Broke into McKinsey's Internal Chatbot and Accessed Records

https://www.inc.com/leila-sheridan/an-ai-agent-broke-into-mckinseys-internal-chatbot-and-accessed...
1•nadis•12m ago•1 comments

France and Italy open talks with Iran in hope of securing safe Hormuz passage

https://www.ft.com/content/96b8e0a4-9ecb-4e07-a96d-7debcfe3bfa6
1•vrganj•12m ago•0 comments

Molting.org – HN: Molting.org – Verifiable reputational layer for AI agents

https://molting.org
1•Roboz•13m ago•0 comments

Ask HN: AI Agents took my programming job. What can I do?

1•butILoveLife•15m ago•1 comments

Jeff Kaplan: World of Warcraft, Overwatch, Blizzard, and Future of Gaming [video]

https://www.youtube.com/watch?v=H9rF1CSSh-w
1•neko_ranger•16m ago•0 comments

High court claimant was fed answers through his smart glasses, judge finds

https://www.theguardian.com/uk-news/2026/mar/13/high-court-smart-glasses-fed-answers-evidence
3•chrisjj•17m ago•1 comments

The Stalk Market

https://www.stalk-market.com
1•mooreds•19m ago•0 comments

Election Data Handed over to the FBI in Maricopa County Could Be Fatally Flawed

https://www.propublica.org/article/maricopa-county-arizona-election-records-fbi
1•hn_acker•19m ago•1 comments

Proton's Swiss Myth: US Jurisdiction via Cloudflare and FAA Arbitration Clauses

1•MissMajordazure•20m ago•0 comments

Show HN: CaliVibe – Explore California Neighbourhoods

https://trekhleb.dev/cali-vibe/
1•trekhleb•20m ago•0 comments

The race to solve the biggest problem in quantum computing

https://www.newscientist.com/article/2518974-the-race-to-solve-the-biggest-problem-in-quantum-com...
1•Brajeshwar•20m ago•1 comments

Boulder's middle-income down payment program drew zero applicants in 3 years

https://boulderreportinglab.org/2026/03/12/boulders-middle-income-down-payment-program-drew-zero-...
1•mooreds•20m ago•0 comments

Sandcat – Docker and dev container setup for securely running AI agents

https://github.com/VirtusLab/sandcat
5•mihau•21m ago•0 comments

Show HN: Fine-tuned 3B outperforms Claude Haiku on constrained generation

https://serendip-ml.github.io/fine-tuned-3b-beats-haiku/
1•serendip-ml•21m ago•0 comments
Open in hackernews

Show HN: VibeTrade – Trading Harness for Claude

https://github.com/vibetrade-ai/vibe-trade
2•raunaqvaisoha•1h ago
Post-Opus 4.6, LLMs feel much better at using bash, code, local files, and tools.

So I kept coming back to a simple question: if a model can use a computer reasonably well, why can’t I just give it my broker account, a strategy, and let it trade?

My conclusion is that the blocker is not model capability in the abstract. It is the system around the model.

A raw LLM breaks on a few practical things almost immediately:

• no persistent operating memory across sessions • no trustworthy record of what it did and why • no hard approval boundary before money moves • no cheap always-on monitoring if every check requires an LLM call • no reliable enforcement of limits, permissions, or workflow rules unless that lives outside the model

So the problem is not really “can the model call a broker API?” The problem is that trading needs a harness.

My friend and I built one for this called Vibe Trade. It is open source, MIT licensed, and currently runs locally on your machine connected to Dhan.

The basic design is:

1. Immutable trade journal Every action is logged at decision time with timestamp, reasoning, and observed signals. The agent cannot rewrite its own history after the fact.

2. Hard approval gate Before any order is placed, the system generates a structured approval request. Execution is blocked until the user approves. This is enforced in code, not left to the model’s discretion.

3. Event loop outside the LLM Market watching is handled in plain JS on a timer. Price checks, time rules, and indicator thresholds run every 30 seconds without invoking the model. The LLM only wakes up when something needs reasoning.

4. Playbooks / skill files Strategies live in markdown documents that get loaded as operating context on each decision. Example: “replicate the Nifty Defense Index and rebalance weekly.” This gives the agent a stable workflow definition instead of relying on chat history.

The first use case that made this feel real to me was very unglamorous: portfolio rebalancing.

I used to make Smallcase-style index replication portfolios and then forget to rebalance them on time. With this setup, I can define the strategy once, let the non-LLM layer monitor for conditions, and have the agent prepare actions for approval. That was the first point where it stopped feeling like a demo and started feeling useful.

A few caveats: • UI is still weak; it is mostly a chat interface right now • Dhan only for now • local install only for now • requires Node.js and an Anthropic API key

Repo: github.com/vibetrade-ai/vibe-trade

I’m posting this mainly because I think more people will try building “LLM as operator” systems now that tool use is better, and finance makes the failure modes very obvious.

The questions I’m interested in are:

• What other harness components are missing for something like this?

• Would you trust a local system like this more than a hosted one, or less?

• What repeatable financial workflows would you automate first?