frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Harry Potter fans force diverting UK-Ireland power link to avoid Dobby's grave

https://www.bbc.com/news/articles/cy8mgpl27dpo
2•yurivish•1m ago•0 comments

The insufferable hypocrisy of elite academia

https://www.theatlantic.com/magazine/2026/09/elite-academia-leadership-hypocrisy/687969/
1•loughnane•2m ago•0 comments

Show HN: SecondState – what if Hebbia started with raw ERP data?

https://trysecondstate.com/
1•ELAmrani•5m ago•0 comments

SpaceX's Earnings Show Elon Wiped Out Two-Thirds of Twitter's Ad Business

https://www.techdirt.com/2026/08/10/spacexs-earnings-show-elon-wiped-out-two-thirds-of-twitters-a...
1•shye•7m ago•0 comments

Greenland issues 'strong warning' as Trump-linked oil firm prepares to drill

https://www.theguardian.com/world/2026/aug/08/greenland-iwarning-trump-linked-oil-firm-prepares-d...
1•abdelhousni•8m ago•1 comments

Beware the Permanent Periphery

https://asteriskmag.com/issues/15/beware-the-permanent-periphery
2•m-hodges•9m ago•0 comments

Cable Pioneer Bob Miron Dies at 89

https://www.cablefax.com/people/cable-pioneer-miron-dies-at-89
2•indigodaddy•9m ago•1 comments

Muse Glimmer 30B unsloth GGUF format Q4, Q6, Q8 quantizations

https://huggingface.co/unsloth/Muse-Glimmer-30B-GGUF
1•walrus01•9m ago•0 comments

AI Coding and Its Discontents

https://calnewport.com/on-ai-coding-and-its-discontents/
2•champagnepapi•11m ago•0 comments

Pro Jank Footy, the video game taking Australian rules to the world

https://www.theguardian.com/games/2026/aug/11/pro-jank-footy-video-game-australian-rules
1•milderworkacc•16m ago•0 comments

No, local models will not win

https://www.seangoedecke.com/local-models-will-not-win/
2•m0rde•20m ago•0 comments

Chicken Scheme 6.0 Released

https://code.call-cc.org/releases/6.0.0/NEWS
1•eatonphil•20m ago•0 comments

Estimating Branch Probabilities

https://maskray.me/blog/2026-08-09-estimating-branch-probabilities?from_theconsensus=1
1•eatonphil•22m ago•0 comments

Vibebin – code and host with incus containers on your VPS/server

https://GitHub.com/jgbrwn/vibebin
1•indigodaddy•24m ago•0 comments

Tell HN: I Bought a Pocket Notebook

2•Iuz•25m ago•0 comments

The Roboguard Revolution Is Short-Circuiting

https://www.proofnews.org/the-roboguard-revolution-is-short-circuiting/
1•DeepLogin•26m ago•0 comments

Locating a livestreamers geolocation via background noise [video]

https://www.youtube.com/watch?v=SnbkIm56TfI
1•SpyCoder77•26m ago•0 comments

Training AI to Govern for Us

https://freesystems.substack.com/p/training-ai-to-govern-for-us
2•mitchbob•27m ago•0 comments

ICE to Pay LexisNexis Millions for Data to Feed to Palantir

https://www.404media.co/ice-to-pay-lexisnexis-millions-for-data-to-feed-to-palantir/
3•cdrnsf•28m ago•0 comments

Canopy: Grade any website's health in 4 seconds

https://canopystack.dev/
1•jjraxx•28m ago•0 comments

The AI Slop Backlash Is Having an Impact

https://www.wired.com/story/the-ai-slop-backlash-is-actually-having-an-impact/
4•ripe•34m ago•0 comments

Apple Reference Image: authenticate that a photo came from an iPhone camera

https://9to5mac.com/2026/08/10/apple-is-working-on-a-way-to-authenticate-that-a-photo-came-from-a...
2•Barbing•36m ago•0 comments

The End of MacSurf

https://www.patreon.com/posts/166335760
6•mplsllc•39m ago•0 comments

Unifying Workers AI and AI Gateway into a Single AI Control Plane

https://blog.cloudflare.com/workers-ai-gateway-unification/
1•c_f_•42m ago•0 comments

The Closure of the Internet

https://arctotherium.substack.com/p/the-closure-of-the-internet
2•iamnothere•44m ago•0 comments

"Remaining Awake Through a Great Revolution" Commencement Address (1959)

https://kinginstitute.stanford.edu/king-papers/documents/remaining-awake-through-great-revolution...
2•mooreds•51m ago•0 comments

SNAP's New Rules Make Eligible Families Go Hungry [audio]

https://omny.fm/shows/platypus-economics/how-snaps-new-rules-make-eligible-families-go-hungry-the...
1•mooreds•52m ago•0 comments

The Beer Drinker's Guide to XAA

https://thesaml.substack.com/p/the-beer-drinkers-guide-to-xaa
2•mooreds•52m ago•0 comments

Conviction

https://kennethnym.com/blog/conviction/
2•polyphilz•55m ago•0 comments

Nothing failed. That's why no one caught it.

https://miralume.dev/the-architect/nothing-failed
2•Jernesstar•56m 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!