frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Flowyble Studio – Run Claude, Copilot and Codex Side-by-Side

https://flowyble.com/studio
1•schizi•23s ago•0 comments

The Munro Lecture with Adam Tooze – April 8 2026 [video]

https://www.youtube.com/watch?v=Th1pZfKi4SI
1•hackandthink•1m ago•0 comments

Energy-Based Models Is All You Need

https://www.youtube.com/watch?v=h9Gkchqr__M
1•frag•3m ago•0 comments

The Infinity Man: Demis Hassabis, Colleagues and Rivals

https://thechipletter.substack.com/p/the-infinity-man
1•klelatti•3m ago•0 comments

Mark's Magic Multiply

https://wren.wtf/shower-thoughts/marks-magic-multiply/
1•luu•5m ago•0 comments

Give Your Agent a Canvas, Not Just a Chatbox

https://create0.ai
1•enha•7m ago•0 comments

The Great GPU Shortage: H100 Rental Prices Up 40%

https://newsletter.semianalysis.com/p/the-great-gpu-shortage-rental-capacity
2•alecco•7m ago•0 comments

Due Diligence Framework Before Your Business Commits to Open Source

https://groundblue.gumroad.com/l/nlzhlx
1•elsadek•8m ago•0 comments

Show HN: I missed my terminal so I rebuilt email

https://tallyman.io
3•Mechse•10m ago•0 comments

AIYO Wisper – Local voice-to-text for macOS (WhisperKit, open source)

https://github.com/Aiyo28/aiyo-wisper
1•Aiyo28•13m ago•0 comments

What We Learned Building a Rust Runtime for TypeScript

https://encore.dev/blog/rust-runtime
1•vinhnx•15m ago•0 comments

Rust terminal projects in 3 years

https://blog.orhun.dev/800-rust-projects/
1•vinhnx•16m ago•0 comments

How AI Is Reimagining the Game of Golf–For Both Players and Courses

https://www.wsj.com/sports/golf/ai-in-golf-technology-impact-4122d0e1
2•thm•17m ago•0 comments

The tragedy of leisure

https://www.ft.com/content/b91b739e-2164-463c-a8e0-54b59650a9f9
2•pramodbiligiri•26m ago•0 comments

State of Utopia passes its first law

https://stateofutopia.com/laws/1/law1.html
1•logicallee•27m ago•2 comments

EU fingerprint and photo travel rules come into force

https://www.bbc.co.uk/news/articles/c39rkpe8mj2o
3•zeristor•27m ago•0 comments

Umeshism

https://scottaaronson.blog/?p=40
2•yawboakye•27m ago•0 comments

Artemis II is competency porn

https://lizplank.substack.com/p/artemis-ii-is-competency-porn-and
2•jgrodziski•33m ago•0 comments

Why you need to replace your native macOS screenshot app?

https://snapkeep.webytes.net/
1•Mohamm6d•33m ago•1 comments

Automated Browser Testing with MCP

https://en.wikipedia.org/wiki/Test_automation
2•jacksonkasi•38m ago•0 comments

Kaze Emanuar: Illegal 3D Rendering Techniques (N64) [video]

https://www.youtube.com/watch?v=xIUkoUEMf_g
1•tnelsond4•41m ago•0 comments

Picasso's Guernica (Gigapixel)

https://guernica.museoreinasofia.es/gigapixel/#3/63.11/-120.59
1•guigar•41m ago•0 comments

Show HN: LSM Trees: MemTable, Compaction, and the Amplification Triangle [video]

https://www.youtube.com/watch?v=rOC7jkN748w
1•rcron•41m ago•0 comments

France's government is ditching Windows for Linux, says US tech a strategic risk

https://www.xda-developers.com/frances-government-ditching-windows-for-linux/
4•pabs3•43m ago•1 comments

Reverse Engineering File Format Steganography Chain of the TeamPCP Attack

https://husseinmuhaisen.com/blog/reverse-engineering-teampcp-telnyx-file-format-chain/
1•husseinmuhaisen•43m ago•1 comments

GazeFollow from Scratch

https://github.com/aldipiroli/GazeFollow_from_scratch/tree/main
2•tgnk2341•43m ago•0 comments

Incremental Compilation with LLVM

https://ziglang.org/devlog/2026/#2026-04-08
1•birdculture•46m ago•0 comments

I built a skill manager for AI agents. The agents install the skills themselves

https://github.com/nattergabriel/reseed
3•eterer•47m ago•1 comments

I built a programming language in 6 days without writing a single line of code

https://github.com/Quynah/ape-lang
1•Quynah•48m ago•1 comments

Digital World Statistics in Real Time

https://anythingcounter.com
1•digitalofen•48m 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•11mo 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!