frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Minicomputers Made by Nvidia Are Powering Moscow's A.I. Drones

https://www.nytimes.com/2026/08/24/world/europe/ukraine-war-nvidia-ai-autonomous-drones.html
1•Wurel•20s ago•0 comments

Human judgment doesn't leave the software factory. It relocates

https://addyosmani.com/blog/human-judgment-doesnt-leave-the-software/
1•speckx•37s ago•0 comments

America's Murder Rate Is at a 70 Year Low

https://www.vox.com/future-perfect/500135/america-murder-rate-lowest-70-years
1•RickJWagner•41s ago•0 comments

Show HN: Prelo – a WordPress-style admin for AI-built sites

https://www.prelo.dev/
1•kaaberma•47s ago•0 comments

Agentic Resource Discovery (ARD): An open specification for agent discovery

https://aws.amazon.com/blogs/machine-learning/agentic-resource-discovery-ard-an-open-specificatio...
1•metrofun•3m ago•0 comments

Show HN: Icarus – ask a codebase why, and get the pull request it came from

https://icarus-website-kappa.vercel.app
1•alankritxghoshx•3m ago•0 comments

Neither HTML nor Markdown is enough: a way out of the AI doc dilemma

1•xiongjy2104•4m ago•0 comments

Show HN: FormForge – offline form filler for QA that ships its own test suite

https://chromewebstore.google.com/detail/formforge-—-form-filler-f/alkelkiiomnmjiajjcecjeicmhfh...
1•arafat-92•5m ago•0 comments

Show HN: Unlose – Windows VSS snapshots before your AI agent deletes your files

https://github.com/unlose-app/unlose
1•unlose•5m ago•0 comments

Pi vs. the official DeepSeek Harness on the same local model (Qwen3.8-27B)

https://github.com/promptdriven/pdd/blob/main/research/omlx-qwen38-pi-deepseek-harness-2026-08-23...
1•gltanaka•6m ago•0 comments

The Monopoly of Hate

https://riccardogenco.github.io/The-Monopoly-of-Hate/
1•obs3ssion•6m ago•0 comments

PropertyFlags – what 26 government registers say about a house, at a glance

https://propertyflags.com.au
1•pkuguiscan•6m ago•0 comments

I share links on my blog

https://michaelharley.net/posts/2026/08/15/how-i-share-links-on-my-blog/
1•surprisetalk•6m ago•0 comments

Analysis: Can we license LLM generated "vibe code" into Free Software?

https://fsfe.org/news/2026/news-20260825-01.en.html
1•kirschner•7m ago•0 comments

GNU radio switching to MIT licence

https://www.gnuradio.org/news/2026-05-21-gr4-community-stewardship/
1•KolmogorovComp•7m ago•0 comments

Gunicorn now supports HTTP/2 h2c

https://gunicorn.org/guides/http2/
1•timkofu•8m ago•0 comments

Show HN: Trace – Offline Mac meeting transcription, overhauled from HN feedback

https://traceapp.info/changelog
1•AG342•9m ago•0 comments

Show HN: Life Biomes, a habit tracker that lives in your email

https://lifebiomes.app/demo
1•agawish•13m ago•1 comments

Show HN: Conversational Data Intelligence Accelerator

https://geekyants.com/ai-accelerator/conversational-data-intelligence-accelerator
2•vanessa1211•15m ago•0 comments

Show HN: Flutter Starter A production-ready Flutter app boilerplate

https://github.com/GeekyAnts/flutter-starter
2•Harish_0089•16m ago•0 comments

Don't Wordle

https://dontwordle.com/
2•Hbruz0•17m ago•0 comments

The Architecture of Open Source Applications

https://aosabook.org/
1•melvinroest•17m ago•1 comments

Qwen 3.8-Flash-Next releasing tomorrow (125B a6B)

https://modelscope.cn/models/Qwen/Qwen3.8-Flash-Next
3•garo-pro•17m ago•1 comments

Aito v2: a predictive database over linked data, with vectors, graphs and SQL

https://aito.ai/blog/aito-v2-public-beta/
1•arauhala•17m ago•0 comments

GenAI prompting Dutch secondary schools to rethink how they assign homework

https://nltimes.nl/2026/08/25/ai-prompting-dutch-secondary-schools-rethink-handle-homework
1•giuliomagnifico•20m ago•0 comments

Por que sua skin atual está limitando O nível de jogo

https://victormignone.substack.com/p/por-que-sua-skin-atual-esta-limitando
1•victormignone•20m ago•0 comments

Maps of Osaka

https://chyuang.com/writing/maps-of-osaka/
2•yongyongyong•20m ago•0 comments

Elm releases its first update since 2019

https://github.com/elm/compiler/releases
1•nor0x•21m ago•0 comments

Show HN: Building USoC Part 1: The Wishbone Bus

http://axiomfactory.co/wishbone
2•dvc94ch•22m ago•0 comments

We built a structured entity graph for an AI agent. Then we removed most of it

https://blog.getcassis.com/context-engineering-for-analytics-agents/
1•matthieu_bl•24m 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!