frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

WeWorm

https://calif.io/research/weworm
1•simonw•35s ago•0 comments

1900 Blizzard Developers Just Won a Union Contract

https://kotaku.com/blizzard-workers-union-contract-microsoft-2000732422
1•gpi•1m ago•0 comments

Belegio – Parsing grocery receipts down to the line item

https://belegio.loobia.net/en
1•MehrdadEshghi•3m ago•0 comments

iPhone 18 Pro Introduces 'Apple Reference Image' to Verify Photo Authenticity

https://www.macrumors.com/2026/09/09/apple-reference-image/
1•pgwhalen•4m ago•0 comments

Time, Clocks, and the Ordering of Events in a Distributed System (1978) [pdf]

https://lamport.azurewebsites.net/pubs/time-clocks.pdf
1•danbitengo•12m ago•0 comments

Screenmap

https://screenmap.dev/
1•handfuloflight•12m ago•0 comments

Ask HN: Why can I only downvote select comments?

2•socalgal2•13m ago•1 comments

Show HN: PCalen – Generate free printable calendar in seconds

https://pcalen.com/
1•aleker•14m ago•0 comments

Lean Game Server

https://adam.math.hhu.de/#/
3•abetusk•17m ago•0 comments

Natural Number Game (Lean4 Tutorial)

https://adam.math.hhu.de/#/g/hhu-adam/NNG4
3•abetusk•18m ago•1 comments

National Archives locations set to close without tribal consultation

https://ictnews.org/news/these-records-are-priceless-3-national-archives-locations-set-to-close-w...
1•mooreds•18m ago•0 comments

Agent Router: Powerful traffic handling for agent builders

https://aaif.io/blog/agent-router-powerful-traffic-handling-for-agent-builders
1•mooreds•20m ago•0 comments

Playship – idea to published Android app, automated

https://playship.dev/
1•bowwerick•21m ago•0 comments

RyTuneX 1.7.1: open-source Windows 10/11 optimizer adds per-item rollback

https://github.com/rayenghanmi/RyTuneX
1•wangxin199•25m ago•0 comments

Apple Watch's new feature listens to your chats and recaps them

https://techcrunch.com/2026/09/09/apple-watchs-new-feature-listens-to-your-chats-and-recaps-them/
1•pier25•25m ago•0 comments

Review a pull request by booting it

https://fzakaria.com/2026/09/09/review-a-pull-request-by-booting-it
3•domenkozar•26m ago•0 comments

Show HN: Rayrun – one MCP gateway for the whole company

https://ray.run/
2•lucgagan•27m ago•0 comments

Microsoft Surface Duo

https://news.microsoft.com/surfaceduo/
2•fortran77•29m ago•1 comments

PEG: Postgres and Elm and Go

https://github.com/ramblingenzyme/peg/tree/main
1•ramblingenzyme•30m ago•0 comments

Navier–Stokes, AI and the future of research in mathematics [pdf]

https://bms.ulb.ac.be/data/uploads/untitled.pdf
2•fghorow•31m ago•2 comments

Anthropic discloses fourth AI hacking incident missed in earlier review

https://www.reuters.com/legal/litigation/anthropic-reports-fourth-cybersecurity-incident-with-ear...
3•accountinhn•33m ago•0 comments

Trezor's Email provider has been breached

https://twitter.com/CR1337/status/2097841222954184954
2•CR1337•34m ago•0 comments

Max Dama on Automated Trading (2011) [pdf]

http://isomorphisms.sdf.org/maxdama.pdf
1•TheAlchemist•37m ago•0 comments

Van Halen Test

https://en.wikipedia.org/wiki/Van_Halen_test
1•evo_9•40m ago•0 comments

Getting 50 GB/S Back from the Apple Neural Engine

https://eiln.github.io/posts/ane-dma.html
1•eiln•42m ago•1 comments

Tor VPN Beta: What we've learned building our own VPN for Android from scratch

https://blog.torproject.org/tor-vpn-beta/
2•woofcat•42m ago•0 comments

Where Stability Becomes the Constraint

https://medium.com/@gurvinder372/article-14-where-stability-becomes-the-constraint-c262b07f617c
1•gps372•45m ago•0 comments

Coinbase Design Systems Are Powering the AI Prototyping Era

https://www.coinbase.com/blog/how-coinbase-design-systems-are-powering-the-ai-prototyping-era
2•dukebartnik•45m ago•0 comments

Show HN: Kin – A code repository built for AI and the people working with it

https://github.com/firelock-ai/kin
1•troyjr4103•48m ago•0 comments

Weighing matrix W(35,25) found

https://github.com/Jepfore-Games-Ltd/W-35-25
1•jepforegames•48m 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!