frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI Compilers Are Not Just Compilers for AI

https://aicompilers.github.io/2026/09/06/ai-compilers-are-not-just-compilers-for-ai.html
1•matt_d•44s ago•0 comments

History of the BBC TV Idents

https://www.bbc.com/historyofthebbc/research/bbc-idents/global-ambition
1•nickt•1m ago•0 comments

A mouse whose brain cortex is made up of human cells

https://www.technologyreview.com/2026/09/16/1144210/meet-a-mouse-whose-brain-cortex-is-made-up-of...
1•joozio•3m ago•0 comments

Ask HN: AI Panic, you buying it?

1•elai-intelligen•4m ago•0 comments

The FBI Doubles Down on Easing 'Bestiality' Hiring Standards

https://www.wired.com/story/the-fbi-doubles-down-on-easing-bestiality-hiring-standards/
1•ferryth•4m ago•0 comments

Show HN: Smarter Shell History for Zsh

https://github.com/overflowy/zhist
1•overflowy•4m ago•0 comments

OSRS Wiki and RuneLite are under strain from low-effort AI development

https://oldschool.runescape.wiki/w/User:Cook_Me_Plox/OSRS_Wiki_and_RuneLite_are_increasingly_unde...
1•i2talics•6m ago•0 comments

CO3: Toward the Optimal FFI

https://mversic.github.io/co3/
1•mversic•6m ago•0 comments

Training Text-to-Image Models 3.6× Faster

https://www.linum.ai/field-notes/jit-ddt
4•schopra909•6m ago•0 comments

Gnome 51 Released with Improved Frame Scheduling, Many App Improvements

https://www.phoronix.com/news/GNOME-51-Released
1•tuhtah•7m ago•1 comments

We killed our in-app AI chat and made the agent a first-class user

https://sensefold.app/blog/agent-as-first-class-user
1•gomilesfd•7m ago•0 comments

Omarchy on Mac

https://github.com/omacom/omarchy-mac
1•popzxc•8m ago•0 comments

Whiteboard Defense

https://twitter.com/mitchellh/status/2100249348345057389
1•tosh•8m ago•0 comments

Show HN: Ivx/AI Chat, AI client that doesn't track you (with a better GUI imo)

https://ai.ivx.run/
1•0xcrypto•8m ago•0 comments

As Someone Who Has Written This Blog Post,

https://zachholman.com/posts/llm-writing
1•holman•9m ago•0 comments

Numerical Tours

https://www.numerical-tours.com/python/
1•efavdb•12m ago•0 comments

IPC Panic, a 4-call kernel panic in Apple XNU, up to macOS and iOS 26 included

https://seriot.ch/security/ipc_panic.html
2•beefburger•13m ago•0 comments

Inside the MIT Report on How AI Is Eroding Campus Culture

https://learningcurve.fm/episodes/inside-the-mit-report-on-how-ai-is-eroding-campus-culture/trans...
2•learningcurv•15m ago•1 comments

GitMir just released Vibe, it's like Claude on steroids

https://gitmir.com/products/vibe
2•venediktov•15m ago•0 comments

Mercury Books – Accounting Software Built into Your Bank Account

https://mercury.com/books
1•tortilla•15m ago•0 comments

Hacking a Xiaomi Mi Band 4 to Run Super Mario Bros

https://blog.qwertyforce.dev/posts/miband4_nes
1•qwertyforce•15m ago•0 comments

Fedora 45 beta drags the Linux console into the 21st century

https://www.theregister.com/software/2026/09/16/fedora-45-beta-drags-the-linux-console-into-the-2...
1•DemiGuru•16m ago•0 comments

AI Agents Work. So Why Is Memory Becoming a Problem?

https://medium.com/@majid.fekri/your-ai-agents-work-so-why-is-memory-becoming-a-problem-1fb30f01ff9c
1•supportm•17m ago•0 comments

Show HN: LaunchPad-Lite – Open-Source Next.js 15 with Better Auth and Drizzle

https://github.com/BZDevelopments/LaunchPad-Lite
1•BZDevelopments•17m ago•0 comments

Show HN: OpenDocBot – bring your own model to Word, Excel and PowerPoint

https://opendocbot.com/
2•dgf18•18m ago•0 comments

Agents: The New, New Kingmakers

https://redmonk.com/sogrady/2026/09/16/new-new-kingmakers/
2•john_cogs•19m ago•0 comments

An Educational GEMM Ladder for Helios GPUs

https://rocm.blogs.amd.com/software-tools-optimization/hipkittens-gemm-ladder/README.html
1•matt_d•19m ago•0 comments

Lumai Iris – First Optical Computing System

https://lumai.ai
2•cednore•20m ago•0 comments

Jev means structured output is interesting again

https://www.seangoedecke.com/jev-means-structured-output-is-interesting-again/
1•sylvainkalache•20m ago•0 comments

What is LLMjacking, and why should IT pros care?

https://www.itbrew.com/stories/what-is-llmjacking-and-why-should-it-pros-care
1•mooreds•21m 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!