frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Eiffel Tower employees strike after female staff removed

https://www.google.com/url?q=https://amp.dw.com/en/eiffel-tower-closed-strike-women-hindu/a-79152...
1•Michelangelo11•5m ago•0 comments

Magic-mushroom compound blocks a side effect of chemotherapy in mice

https://www.nature.com/articles/d41586-026-02744-6
1•tzury•6m ago•0 comments

Switching Password Managers in 2026

https://rmondello.com/2026/09/07/switching-password-managers-2026/
1•wrxd•7m ago•0 comments

CivBench: A Long-Horizon Benchmark for Tool-Mediated Agents in Civilization VI

https://arxiv.org/abs/2609.02459
1•taubek•7m ago•0 comments

Agility Robotics reports $1.8M revenue ahead of humanoid SPAC

https://www.therobotreport.com/agility-robotics-reports-18m-revenue-ahead-of-humanoid-spac/
1•raptortech•8m ago•0 comments

Generals – Conquer the live world map

https://generals.lol
2•mshermamatov•8m ago•0 comments

Do tech billionaires dream of shared abundance? We should probably just tax them

https://theconversation.com/do-tech-billionaires-dream-of-shared-abundance-we-should-probably-jus...
5•billybuckwheat•9m ago•0 comments

Show HN: Typebook engage yourself in reading by painstakingly writing every word

https://typebook.duckdns.org/
1•vegnus•10m ago•0 comments

Robot-Use Agents

https://web.mit.edu/phillipi/www/writing/robot-use-agents.html
1•hardmaru•10m ago•0 comments

Autistici.org Domain Taken Down

https://autistici.org
2•oriettaxx•13m ago•1 comments

Web Import Master: rebuild a live web page as a Figma design with auto layout

https://www.figma.com/community/plugin/1630132577257927426
1•evgeniiarts•14m ago•0 comments

Fx2-Cmix-Transformer

https://mattmahoney.net/dc/text.html#0969
1•soltanov•16m ago•0 comments

ToolHive Is Open-Source

https://www.helpnetsecurity.com/2026/09/07/toolhive-open-source-mcp-server-security/
1•noobplus•18m ago•0 comments

AI crawler user-agents are being spoofed to reach cloud metadata endpoints

https://honeylabs.net/blog/spoofed-ai-crawlers-one-client
1•honeylabs•22m ago•0 comments

Where Good Decisions Don't Add Up

https://medium.com/@gurvinder372/article-11-where-good-decisions-dont-add-up-e3a3714792dc
1•gps372•22m ago•0 comments

Navier-Stokes – Tristan Buckmaster [pdf]

https://cims.nyu.edu/~tristanb/statement.pdf
8•procedurecall•24m ago•0 comments

Famous Unsolved Math Problems as Homework(2015)

https://blogs.ams.org/matheducation/2015/05/01/famous-unsolved-math-problems-as-homework/
1•nill0•25m ago•0 comments

'Global reckoning for big tech': Australia to force opt-out of social algs

https://www.theguardian.com/australia-news/2026/sep/08/australia-social-media-algorithm-switch-of...
2•ggm•33m ago•0 comments

An AI that talks like a friend, jumps in, interrupts and keeps the convo going

https://www.echohive.ai/deep-talk-buddy
1•echohive42•35m ago•0 comments

Electrostatic Cathode Ray Tube Project 1 (2014)

https://labguysworld.com/Project_ESCRTs_001.htm
1•userbinator•41m ago•0 comments

Multi-Agents LLM Financial Trading Framework

https://github.com/TauricResearch/TradingAgents
2•fittingopposite•46m ago•0 comments

I scraped 10,555 ivf rounds rounds from forum posts around the world

https://eggs.help
2•grapefruitjuice•46m ago•0 comments

Clean Web-to-Markdown: Fast HTML Extraction for LLMs and RAG

https://markdown.usemy.cloud/
2•petoz•52m ago•0 comments

What may happen in the next hundred years?(1900)

https://earlyradiohistory.us/1900next.htm
2•o4c•55m ago•1 comments

My Feed, My Way

https://www.pm.gov.au/media/my-feed-my-way
30•dotcoma•56m ago•14 comments

KDE's new Photos app offers a sleek alternative to Gwenview

https://www.omgubuntu.co.uk/2026/09/kde-photos-app-replace-gwenview
2•fork-bomber•59m ago•0 comments

Mistral raises €3B to make sovereign, open-weight AI the technology frontier

https://mistral.ai/news/mistral-makes-sovereign-open-weight-ai-to-frontier/
27•kuberwastaken•1h ago•4 comments

The 100x Engineer Certification

https://100x.iamdevloper.io/
2•Curiositry•1h ago•0 comments

Ask HN: Best Platforms to Orchestrate Agents

1•venkat971•1h ago•0 comments

How One Connection Kills a Database

https://planetscale.com/blog/debugging-live-database-connections
1•vzhou842•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!