frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Wild Week – Athens (2026)

https://week.wild.plus/athens-26
1•chaosprint•36s ago•0 comments

Emergent: Build Full-Stack Web and Mobile Apps in Minutes

https://app.emergent.sh/landing/
1•doener•1m ago•0 comments

Syllogisms Made Easy

https://www.youtube.com/watch?v=MXRwmOpgqLw
1•pratikdeoghare•2m ago•0 comments

Make your software arch context-ready

https://www.shaylivni.com/blog/make-architecture-context-queryable
1•doshay•4m ago•0 comments

Claude-Code-Proxy – Use Kimi K2.6 and OpenAI Subscriptions in Claude Code

https://github.com/raine/claude-code-proxy
1•rane•4m ago•0 comments

US economy expected to grow above 2% despite recent shocks

https://www.reuters.com/business/us-economy-quite-resilient-should-keep-growing-above-2-feds-powe...
1•latentframe•5m ago•1 comments

Typography vs. Terrorism: Germany's FE-Schrift Font

https://www.core77.com/posts/112537/Typography-vs-Terrorism-Germanys-FE-Schrift-Font
2•Markoff•9m ago•0 comments

Show HN: ChatToMap scans your chat exports to find activity and trip ideas

https://github.com/DocSpring/chat_to_map
1•nathan_f77•11m ago•0 comments

DeepSeek's Sequel

https://messaging-custom-newsletters.nytimes.com/dynamic/render
1•doener•13m ago•0 comments

Mitochondria can spawn new 'organelles' – hinting at how modern cells evolved

https://www.nature.com/articles/d41586-026-01295-0
2•zeristor•13m ago•0 comments

Mechvibes: Mechanical-Keyboard Sound Effects

https://mechvibes.com/
2•FergusArgyll•14m ago•1 comments

GLPura Australia

https://www.facebook.com/GLPuraAustralia.Get
1•accenttier•17m ago•0 comments

Analyzing GPT-5.5 and Opus 4.7 with ARC-AGI-3

https://arcprize.org/blog/arc-agi-3-gpt-5-5-opus-4-7-analysis
1•rzk•18m ago•0 comments

Specialised Intelligence Platform for the Business and Economics of AI

https://www.tokenando.ai
1•karimmatar•18m ago•0 comments

I built an app that decides what to cook based on what's in your fridge

https://play.google.com/store/apps/details?id=com.pikanini.app&hl=en_US
1•amtkm•18m ago•0 comments

Show HN: WattFactory – Browser Based Indoor Cycling

https://wattfactory.fit
1•robputt•20m ago•0 comments

What Happens When Europeans Find Out How Poor They Are?

https://www.wsj.com/opinion/what-happens-when-europeans-find-out-how-poor-they-are-270cff5d
2•harambae•20m ago•2 comments

iOrchestra.ai prompt to hardware mass production platform YC looks for [video]

https://www.youtube.com/shorts/0gCeJFyRYx4
1•andresparraarz•23m ago•1 comments

Midori, the first browser to offer a VPN with Mesh technology

https://astian.org/midori-en/performance-adblock-and-more-in-midori-11-7-1/
1•ponchale•30m ago•0 comments

Kloak: Kernel-space secret injection via eBPF on Kubernetes

https://a-cup-of.coffee/blog/kloak/
1•ankitg12•32m ago•0 comments

OSTree Overview – Ostreedev/Ostree

https://ostreedev.github.io/ostree/introduction/
1•ankitg12•38m ago•0 comments

Ask.com, home of search butler Jeeves closes as conversational search comes back

https://www.theregister.com/2026/05/04/askjeeves_closes/
2•beardyw•38m ago•0 comments

CARA 2.0 – "I Built an Better Robot Dog"

https://www.aaedmusa.com/projects/cara2
1•hakonjdjohnsen•39m ago•0 comments

Rootshell – The terminal, reimagined for Apple platforms

https://rootshell.com/
2•theshrike79•39m ago•0 comments

Allegedly Nintendo Stopped Selling to Amazon After Being Asked to Break the Law

https://kotaku.com/reggie-fils-aime-says-nintendo-stopped-selling-to-amazon-after-being-asked-to-...
3•croes•39m ago•0 comments

Call JavaScript functions across thread boundaries like they were local

https://www.npmjs.com/package/achi-rpc
1•stiles11•42m ago•0 comments

Golang Tutorial: Find and fix vulnerable dependencies with govulncheck

https://go.dev/doc/tutorial/govulncheck
1•l1am0•43m ago•0 comments

The Myth of RAM, part I (2014)

https://www.ilikebigbits.com/2014_04_21_myth_of_ram_1.html
1•downbad_•44m ago•1 comments

The Back-end for Front-end Pattern (BFF) (2015)

https://philcalcado.com/2015/09/18/the_back_end_for_front_end_pattern_bff.html
1•locknitpicker•47m ago•0 comments

AWS Lambda Cold Start: Java, Python, Go, Rust

https://medium.com/@yalovoy/four-million-lambda-invokes-across-python-java-rust-and-go-5b9218f64563
1•zero-ground-445•50m 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!