frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI is not a normal technology

https://12gramsofcarbon.com/p/ai-is-not-a-normal-technology
1•theahura•2m ago•0 comments

Ask HN: What are some privacy/security tools you wish exist, but don't yet?

1•ToriTech•3m ago•0 comments

Godfather of AI welcomes pause in development (interview with Hinton)

https://www.abc.net.au/listen/programs/radionational-breakfast/godfather-of-ai-welcomes-pause-in-...
1•ggm•3m ago•1 comments

Aviloop: YouTube's Darkest Mystery [video]

https://www.youtube.com/watch?v=DU9JCFMJp8E
1•handfuloflight•12m ago•0 comments

Writing code by hand is not an option anymore

https://rogix.dev/writing-code-by-hand-is-not-an-option-anymore
1•rogix•13m ago•1 comments

Financial literacy and investment: empirical study from Palestine Stock Exchange

https://www.frontiersin.org/journals/behavioral-economics/articles/10.3389/frbhe.2025.1444022/full
1•andsoitis•15m ago•0 comments

The Final Battle for America's Democracy

https://newrepublic.com/article/215198/2027-new-congress-final-battle-american-democracy
2•HotGarbage•17m ago•1 comments

AI Robots – When will they be in our homes

https://spectrum.ieee.org/ai-robots
1•andsoitis•18m ago•1 comments

The librarian, the car keys, and AI

https://eternallyradicalidea.com/p/the-librarian-the-car-keys-and-ai
2•emmelaich•22m ago•2 comments

Worrying about bad AI code is worrying about the wrong problem

https://matthorn.io/posts/2026-09-13-bad-ai/
1•spectraldrift•25m ago•0 comments

Wikipedia's Oberranks Incident

https://boards.4chan.org/g/thread/109811298/wikipedias-oberranks-incident
1•mostcallmeyt•27m ago•2 comments

Lawyer cites fake witnesses in murder case and blames ChatGPT

https://www.reuters.com/legal/government/chatgpt-invented-fake-police-testimony-murder-appeal-new...
4•1vuio0pswjnm7•30m ago•1 comments

Writing a better reality: The case for optimistic sci-fi

https://honisoit.com/2022/03/writing-a-better-reality-the-case-for-optimistic-sci-fi/
1•andsoitis•35m ago•0 comments

Open-Source AI and Open Models Reading List

https://www.interconnects.ai/p/open-source-ai-reading-list
3•simonpure•40m ago•0 comments

AI bubble pops – Cory Doctorow

https://www.youtube.com/watch?v=LiDUg_uylyM
6•lifeisstillgood•40m ago•0 comments

What's in a name? Naming things in OpenStreetMap

https://blog.openstreetmap.org/2026/09/13/whats-in-a-name-naming-things-in-openstreetmap/
2•HotGarbage•43m ago•0 comments

Xi pushes 'Greater BRICS' economic ties to give bloc larger global role

https://www.reuters.com/business/aerospace-defense/xi-pushes-greater-brics-economic-ties-give-blo...
3•_djo_•49m ago•1 comments

Memorable moments in Chromecast's history (2024)

https://blog.google/products-and-platforms/devices/google-nest/chromecast-history/
1•gregsadetsky•51m ago•0 comments

Apple's Dimensional Drawings

https://developer.apple.com/accessories/dimensional-drawings/
2•herbertl•51m ago•0 comments

AI Boom / Bust – Boom Boom Pow

3•wwolfson97•54m ago•1 comments

"Chilling" warning or overreaction? AI bioweapons report divides experts

https://www.science.org/content/article/chilling-warning-or-overreaction-ai-bioweapons-report-div...
2•sbulaev•55m ago•0 comments

Free Domain Monitoring through echelongraph.io

1•akd29121988•59m ago•0 comments

Trump Throws His Support Behind Flock Cameras: 'I Like Them'

https://www.mediaite.com/politics/trump-throws-his-support-behind-flock-cameras-i-like-them/
7•valeg•1h ago•0 comments

The biggest dinosaurs couldn't sit on their eggs

https://www.cbc.ca/news/science/titanosaur-eggs-9.7336841
2•BiraIgnacio•1h ago•0 comments

OpenAI and Anthropic Hit the Brakes

https://www.axios.com/2026/09/13/ai-labs-regulation-safety
2•kooi•1h ago•1 comments

AI Coding Dictionary

https://www.aihero.dev/ai-coding-dictionary
1•dnw•1h ago•0 comments

The Coming War on General Computation (2011)

https://en.wikisource.org/wiki/The_Coming_War_on_General_Computation
28•gregsadetsky•1h ago•3 comments

X.com busts Chinese bot farm, incl accounts making claims about AI data centers

https://www.tomshardware.com/tech-industry/policy/x-busts-200-000-strong-chinese-bot-farm-includi...
6•throwaway2037•1h ago•0 comments

Carterfone

https://en.wikipedia.org/wiki/Carterfone
3•gregsadetsky•1h ago•0 comments

Show HN: Spikeforge

https://spikeforge.net/
2•a0174•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!