frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Oasis Linux

https://git.sr.ht/~mcf/oasis
1•birdculture•1m ago•0 comments

Y Combinator holds $5B stake in OpenAI

https://simonwillison.net/2026/May/5/john-gruber/
1•isaacfrond•1m ago•0 comments

SAP buys Dremio, Prior Labs for AI data push

https://finance.yahoo.com/sectors/technology/articles/sap-buys-dremio-prior-labs-161337813.html
1•raffael_de•3m ago•1 comments

The Mathematical Dance Inside Plant Cells

https://www.quantamagazine.org/the-hidden-mathematical-dance-inside-plant-cells-20260504/
1•isaacfrond•5m ago•0 comments

Replayable traces of Claude Code runs on ARC-AGI-3 public demo games

https://arc-agi-runs.web.app
1•dextersjab•5m ago•0 comments

Harmony Infra Ventures Under Harmandeep Singh Kandhari's Leadership

https://realty.economictimes.indiatimes.com/news/brand-connect-initiative/harmandeep-singh-kandha...
1•KirtiKKapoor•7m ago•0 comments

Carapace- Your OpenClaw Can See

https://carapace.info
1•mikepaepke•9m ago•0 comments

Next.js – A small framework for server-rendered universal JavaScript apps (2016)

https://vercel.com/blog/next
1•downbad_•10m ago•1 comments

Y-Zipper: 3D Printing Flexible-Rigid Transitions in One Click [video]

https://www.youtube.com/watch?v=AWig98GVIno
1•raffael_de•10m ago•0 comments

Monte Lua – The First AI Generated Visual Novel

https://continualmi.com/mdl
1•luisml77•12m ago•1 comments

PGKeeper: Building the bouncer we needed for Postgres

https://www.figma.com/blog/pgkeeper-building-the-bouncer-we-needed-for-postgres/
1•__natty__•17m ago•0 comments

HeadVis: An Interactive Tool for Investigating Attention Heads

https://transformer-circuits.pub/2026/headvis/index.html
1•MrOrelliOReilly•20m ago•0 comments

All left of center parties in Germany are advising their members to leave X

https://table.media/berlin/news/wirverlassenx-gruene-spd-und-linke-empfehlen-ihren-mitgliedern-de...
3•doener•25m ago•0 comments

Claude Code Agent Monitor

https://hoangsonww.github.io/Claude-Code-Agent-Monitor/
1•pramodbiligiri•26m ago•0 comments

Open Source Lyrik: reproducing Mythos discovery findings for $0.75 on public API

https://www.flyingpenguin.com/seventy-five-cents-gets-you-an-anthropic-mythos-killer/
2•feigewalnuss•32m ago•0 comments

Using Agent-Browser in Claude Code to Automate Zoho Books Workflows

https://www.youtube.com/watch?v=ZM8Ar_Cr-LI
2•miteshashar•32m ago•1 comments

AI psychosis is real, and you probably have it

https://www.vellum.ai/blog/ai-psychosis-is-real
2•lexh•32m ago•0 comments

Altman and Brockman Self-Dealing on Cerebras

https://twitter.com/ns123abc/status/2051455685838209470
1•davedx•35m ago•0 comments

Adaptive CLI framework for Go – interactive input, structured output, themes

https://github.com/nabat-dev/nabat
2•atkrad•35m ago•0 comments

Universal Dreamcast Patcher v2.0.0

https://github.com/DerekPascarella/UniversalDreamcastPatcher/
1•XzetaU8•37m ago•0 comments

Healing After a Decade of Betrayal and Heartbreak

https://etechx.co.ke/healing-after-a-decade-of-betrayal-and-heartbreak
1•ndegekm•38m ago•0 comments

The True Fruits of the Past That Needs Your Respond

https://etechx.co.ke/the-true-fruits-of-the-past-that-needs-your-respond
1•ndegekm•39m ago•0 comments

Google Chrome silently installs a 4 GB AI model on your device without consent

https://www.thatprivacyguy.com/blog/chrome-silent-nano-install/
17•john-doe•39m ago•2 comments

Digital quantum magnetism on a trapped-ion quantum computer

https://www.nature.com/articles/s41586-026-10445-3
1•thinkingemote•40m ago•0 comments

Coinbase Advisers Warn Quantum Computing Will Crack Blockchain Encryption

https://thequantuminsider.com/2026/04/25/coinbase-advisers-warn-quantum-computing-will-crack-bloc...
1•amelius•42m ago•0 comments

Testosterone eliminates strategic prosocial behavior in healthy males

https://www.nature.com/articles/s41386-023-01570-y
1•thinkingemote•42m ago•0 comments

Poor Decision Practices in (Tech) Management

https://placementist.com/insights/a-guide-of-poor-decision-practices-in-management-for-technical-...
1•nikkotyze•43m ago•0 comments

THEC64 Handheld

https://www.c64os.com/post/thec64handheld
2•bw86•45m ago•0 comments

Show HN: Brainio – Markdown notepad that turns notes into visual mind maps

https://brainio.com/
4•havlenao•45m ago•2 comments

I abused PostHog's setup wizard to get free Claude access

https://techstackups.com/articles/i-abused-posthogs-setup-wizard-to-get-free-claude-access/
1•ritzaco•46m ago•0 comments
Open in hackernews

Show HN: CodeAnt AI – AI Code Reviewer, that understand code and dependencies

https://www.youtube.com/watch?v=uprOvRUUudQ
3•Amartya_jha•1y ago
Over the last year, we’ve been building CodeAnt AI, working closely with engineering teams struggling with code review quality and speed.

Manual code reviews are slow and repetitive. Reviews today mostly look at what changed — not what the change actually impacts. With more AI-written code, it's getting worse: bigger PRs, faster cycles, less team context.

We wanted to rethink how code reviews are done: → Build structured knowledge of the codebase → Understand infra and dependency changes → Analyze blast radius automatically at PR time

What CodeAnt AI Does (Technical Overview)

Repository Indexing and Graph Building:

When a repo is added, we index the entire codebase and build Abstract Syntax Trees (ASTs).

We map upstream and downstream dependencies across files, functions, types, and modules.

We run custom lightweight language servers for multiple languages to support:

go_to_definition to find symbol declarations

find_all_references to locate usage points

fetch_signatures and fetch_types for richer semantic context

Pull Request Analysis:

When a PR is created:

We detect the diff.

We pull relevant upstream/downstream context for any changed symbols.

We gather connected function definitions, usage sites, interfaces, and infra files touched.

The LLM invokes the language servers (almost like a developer navigating manually) to reason over this structured context, not just the raw diff.

Code Quality Analysis:

Along with AI reasoning, we layer traditional static checks inside PRs:

Detecting duplicate code patterns

Finding dead, unused code blocks

Flagging overly complex functions

Goal: Make linting + AI suggestions seamless, without needing separate tools.

Security and Infrastructure Context:

We maintain an internal curated database of application security issues, mapped to OWASP and CWE.

We run Infrastructure-as-Code (IaC) security checks across:

Terraform, Kubernetes, Docker, CloudFormation, Ansible

You can optionally connect cloud accounts (AWS, GCP, Azure):

We scan your live cloud infra for misconfigurations

We pull cloud resource context into PRs (e.g., when a Terraform PR changes a live VPC rule, we show the potential blast radius).

We monitor End-of-Life (EOL) libraries and third-party package vulnerabilities by scanning the National Vulnerability Database (NVD) every 20 minutes and flagging at PR time.

In short: We try to automate how an experienced developer would actually review a change: → Understand the code structure → Understand where it’s used → Understand how infra/cloud gets affected → Catch quality, security, and complexity issues before merge — without needing extra dashboards or tools.

Teams using CodeAnt AI have reported 50%+ faster code reviews while finding deeper and more actionable problems earlier.

Would love feedback from the HN community — both technical and critical are welcome.

Thanks for checking it out!