frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Expanded Genetic Code

https://en.wikipedia.org/wiki/Expanded_genetic_code
1•frozenseven•40s ago•0 comments

Google cancels AI Studio app after 800k preorders

https://twitter.com/GoogleAIStudio/status/2083274575769473092
1•BlueBerry2001•1m ago•0 comments

Show HN: BugDetect AI – AI-powered code debugging assistant

https://bugdetectai.com
1•laxmansubedi•5m ago•0 comments

CISA Alert: Water Sector PLC Targeting

https://censys.com/blog/cisa-alert-water-tower-plc-targeting/
1•speckx•6m ago•0 comments

Toward a Framework for Openness in Foundation Models

https://cacm.acm.org/research/unpacking-open-source-artificial-intelligence-toward-a-framework-fo...
1•visha1v•8m ago•0 comments

Sigstore Cosign signature verifier in 150 lines of C

https://github.com/kern-werk/cosign-verify
2•pdubouilh•9m ago•0 comments

Show HN: Cross-platform AirDrop replacement but over internet using Iroh

https://github.com/chad/iroh-drop
1•chadfowler•9m ago•0 comments

TextGrad: Automatic "Differentiation" via Text

https://github.com/zou-group/textgrad
1•rzk•10m ago•0 comments

Show HN: Bribes.fyi - Update on Know before you go feature

https://bribes.fyi/know-before-you-go
2•neverenderr•16m ago•0 comments

Earth, Love and Internet

https://epic.projector.earth/?extension=love
1•blueturn•19m ago•0 comments

Charges Dropped in Reflecting Pool Case as Prosecutors Say Work Was 'Botched'

https://www.nytimes.com/2026/07/31/us/politics/david-hearn-reflecting-pool-vandalism-charges.html
2•whack•23m ago•0 comments

The Busy Person's Guide to Thinking (2015)

https://fs.blog/how-to-think/
1•mrngm•23m ago•0 comments

Uringscope: Portable, Low-Overhead Observability for Io_uring

https://arxiv.org/abs/2606.15137
2•Jimmc414•23m ago•1 comments

Postmortem for Kernel Soundness Bug #14576

https://leodemoura.github.io/blog/2026-8-1-postmortem-for-kernel-soundness-bug-14576/
6•juhopitk•23m ago•1 comments

Model extraction of SynthID Watermark Detector and exploring adversarial attacks

https://fyx.me/articles/attempting-model-extraction-of-google-deepmind-synthid-image-watermark-de...
1•Retr0id•24m ago•0 comments

Show HN: OpenLongevity – Longevity × AI – open, verifiable, for everyone

https://github.com/edison7009/OpenLongevity
1•edison7009•24m ago•0 comments

How to Build a Modern Distributed SaaS from Scratch with AI Agents

https://www.aulinq.com/en/blog/build-distributed-saas-from-scratch-with-ai-agents
1•amadmike•24m ago•0 comments

House Committees Investigate DoorDash's Use of Chinese AI

https://chinaselectcommittee.house.gov/media/press-releases/house-committees-investigate-doordash...
2•Jimmc414•25m ago•0 comments

Lawsuit accuses four major publishers of extorting article processing charges

https://retractionwatch.com/2026/07/31/federal-lawsuit-major-publishers-article-processing-charge...
2•Jimmc414•27m ago•0 comments

FBI investigates as MI joins MN in reporting cyberattacks on its water systems

https://apnews.com/article/cyberattack-minnesota-water-systems-77d52a1d7356e608500a1ddb0ec373a6
1•pudgywalsh•27m ago•0 comments

Oil companies report sky-high profits thanks to wartime crude prices

https://www.npr.org/2026/07/31/nx-s1-5910660/big-oil-earnings-q2-2026
5•speckx•28m ago•0 comments

I Stop LLMs Drifting in Production Codebases

https://scottspence.com/posts/how-i-stop-llms-drifting-in-production-codebases
3•mainsong•30m ago•0 comments

Tell HN: I hate your fuzzy search

21•tehwebguy•31m ago•10 comments

Scanning 7.6 Petabytes of HuggingFace Training Data for Secrets

https://trufflesecurity.com/blog/scanning-7-6-petabytes-of-ai-training-data-for-secrets
2•882542F3884314B•34m ago•0 comments

To Find Happiness, I Stopped Talking. It Helped

https://www.nytimes.com/2026/08/01/opinion/happiness-silent-retreat.html
1•saikatsg•34m ago•0 comments

Random thoughts while gazing at the misty AI Frontier

https://blog.eladgil.com/p/random-thoughts-while-gazing-at-the
1•FinnKuhn•34m ago•0 comments

Why Fortran Is Still Used

https://www.matecdev.com/posts/why-fortran-still-used.html
3•leephillips•35m ago•1 comments

Supabase Evals: Benchmark for testing how well AI agents build using Supabase

https://supabase.com/blog/introducing-supabase-evals
1•maxloh•36m ago•0 comments

The Data Center Water Crisis Nobody's Talking About

https://comuniq.xyz/post?t=1476
2•01-_-•37m ago•1 comments

Lack of FISA reform lets federal govt surveil 'entire communities' with AI

https://www.thecentersquare.com/national/article_1e430e4c-82e5-48f7-aed1-681998d2cb02.html
1•01-_-•38m 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!