frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

US Navy tells sailors and families to scrub socials due to enemies

https://www.bitdefender.com/en-us/blog/hotforsecurity/us-navy-sailors-families-scrub-social-media...
1•adrianwaj•50s ago•0 comments

Congress to vote on denying federal funding to universities that boycott Israel

https://twitter.com/dylanotes/status/2094229210889965634
2•slowin•5m ago•0 comments

Progress, Pitfalls, and the Fight for Enforceable Location Data Protections

https://www.eff.org/deeplinks/2026/08/privacy-map-part-2-progress-pitfalls-and-fight-enforceable-...
1•hn_acker•7m ago•1 comments

CrispASR: One C++ binary for multilingual ASR and TTS models

https://github.com/CrispStrobe/CrispASR
1•sea-gold•7m ago•0 comments

How to get a free .arpa domain

https://hawksley.dev/blog/get-free-arpa-domain
2•ethanhawksley•8m ago•1 comments

Solaris our first Interface World Model [video]

https://www.youtube.com/watch?v=c2yCePPnrSA
1•elsewhen•9m ago•0 comments

Repeating Ourselves Less with M4

https://nemin.hu/httpd-macros/index.html
1•birdculture•12m ago•0 comments

Google Analytics MCP Server

https://developers.google.com/analytics/devguides/MCP
1•__vivek•14m ago•0 comments

Delulu Is the Solulu

https://antar.me/blog/delulu-is-the-solulu/
2•JumpCrisscross•14m ago•0 comments

Remix 3 Release RC

https://remix.run/blog/remix-3-release-candidate
1•0xedb•16m ago•0 comments

Ancient Volcano in Nth England Caused Kinnekulle Tephra

https://gizmodo.com/scientists-discover-a-hidden-supervolcano-buried-beneath-england-2000805057
1•Gaishan•20m ago•0 comments

25-year update on the "Millennium problems" in physics

https://bigthink.com/starts-with-a-bang/update-millennium-problems-physics/
1•audreyfei•21m ago•0 comments

1,664 cases where the AI went out of control

https://www.theguardian.com/technology/2026/aug/29/sharp-rise-in-incidents-of-ai-escaping-users-c...
1•kinti•22m ago•1 comments

The history of frontier models on a crime scene evidence board

https://models.kylejeong.com/
1•Kylejeong21•23m ago•0 comments

Metadata requests no longer tracked in PyPI download counts

https://blog.pypi.org/posts/2026-08-31-download-counts/
1•miketheman•24m ago•0 comments

Electricity-free miniaturized solid state cooling

https://www.theregister.com/science/2026/08/28/german-japanese-researchers-invent-electricity-fre...
1•Gaishan•24m ago•0 comments

Ink & Switch: Introducing Patchwork-26 [video]

https://www.youtube.com/watch?v=4UxGijnuXEs
2•spiralganglion•25m ago•0 comments

Bank of America bans working remotely 2 days in a row

https://www.hcamag.com/us/specialization/corporate-wellness/bank-of-america-bans-working-remotely...
1•randycupertino•25m ago•0 comments

AI Job Scout and Rate Matcher

https://github.com/Deviad/job-hunter
1•Deviad•27m ago•0 comments

How plane-tracking live streams are made [video]

https://www.youtube.com/watch?v=RbjHrD2hJp4
1•toomuchtodo•33m ago•0 comments

Ask HN: Who is using coding agents for memory optimization?

1•henningpeters•34m ago•0 comments

A unified platform for dexterous manipulation research

https://projectsuperdex.com/
1•hheikinh•34m ago•0 comments

100-Year Human Aging Study

https://clinicaltrials.gov/study/NCT07563777
3•arbayi•35m ago•0 comments

Irc.com

https://irc.com/
1•gregsadetsky•35m ago•0 comments

Poll: Did you know polls exist as a native HN feature?

1•NickNaraghi•35m ago•1 comments

18 month survey of unsecured Ollama servers and an unsolved mystery

https://day50.dev/woahllama/
6•kristopolous•37m ago•0 comments

Free Android app that integrates WhatsApp, Telegram and Signal

https://github.com/fulalas/unichat
1•porteux•38m ago•0 comments

Regular Expression Matching Can Be Simple and Fast

https://swtch.com/~rsc/regexp/regexp1.html
2•pcfwik•40m ago•0 comments

Run local embedder for 0.24% of the OpenAI price

https://dzen.dev/blog/local-dzen-embedding-for-rag/
1•xenator•42m ago•0 comments

Parole Decision-Making: Myths and Realities

https://www.canada.ca/en/parole-board/corporate/publications-and-forms/parole-decision-making-myt...
1•gregsadetsky•43m 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!