frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I made this word find game

https://word.1200tech.com
1•bosco_camera•1m ago•0 comments

Tokenomics: Quantifying Where Tokens Are Used in Agentic Software Engineering

https://arxiv.org/abs/2601.14470
1•Anon84•1m ago•0 comments

Gaia2: Benchmarking LLM Agents on Dynamic and Asynchronous Environments

https://arxiv.org/abs/2602.11964
1•Anon84•2m ago•0 comments

Bitcoin is cratering, but there is a new Wall Street crypto HYPE

https://www.cnbc.com/2026/06/06/bitcoin-price-crash-crypto-hype-hyperliquid-etfs.html
2•KnuthIsGod•7m ago•0 comments

HateArena – A free and open source arena shooter

https://github.com/hatearena/hate
3•death_eternal•12m ago•0 comments

Ask HN: Where do you get the latest updates about AI?

2•d0able•13m ago•1 comments

An Ohio Valley 100k-Watt FM Signal Is Severed in Broad Daylight – Radio World

https://www.radioworld.com/news-and-business/headlines/an-ohio-valley-100000-watt-fm-signal-is-se...
2•pkaeding•14m ago•0 comments

ICE detainees across the US describe medical neglect

https://apnews.com/article/ice-immigration-detention-medical-neglect-dhs-32c3fbeef0c44dfb02fcab89...
2•petethomas•19m ago•0 comments

Super El Niño Events

https://en.wikipedia.org/wiki/Super_El_Ni%C3%B1o_events
2•rolph•20m ago•0 comments

When Can Amazon Block an Agentic AI Service?–Amazon vs. Perplexity

https://blog.ericgoldman.org/archives/2026/06/when-can-amazon-block-an-agentic-ai-service-amazon-...
3•HotGarbage•20m ago•0 comments

Passing DBs Through Continuations

https://remy.wang/blog/cps.html
2•remywang•21m ago•0 comments

Complete Guide to Everything El Niño

https://weather.com/science/weather-explainers/news/2026-02-19-el-nino-la-nina-neutral-enso-pacif...
2•rolph•21m ago•0 comments

Deepfake Detector Robustness Testing

https://huggingface.co/datasets/danb21/social-media-robustness-sdxl-instantid
2•danbabalola•25m ago•1 comments

Show HN: Word-by-word translation aligner tool

https://aligner.tinygods.dev/
2•danipolani•28m ago•0 comments

ChatGPT hallucinating images when asked to restore non existent photo

https://twitter.com/penguinweb3/status/2063196355011424582
3•blumomo•30m ago•0 comments

Ultra-High-Speed Cutting for High-Performance Difficult-to-Machine Composites

https://www.mdpi.com/2075-1702/14/5/468
2•PaulHoule•30m ago•0 comments

FreeBSD 15.1 Delayed to Mid-June Due to Critical x86 Bug Fixes

https://www.phoronix.com/news/FreeBSD_15.1-RC3-Released
3•daesorin•35m ago•0 comments

I don't like computer anymore. [video]

https://www.instagram.com/reel/DZGC6EChvGK/
2•mastazi•38m ago•0 comments

AI Criticism

https://dennisforbes.ca/blog/microblog/2026/06/on_ai_criticism/
2•llm_nerd•41m ago•0 comments

Show HN: DomainTasker – avoid losing domains and surprise renewals

https://domaintasker.com/
7•si_164•48m ago•2 comments

Armed Forces Recipe Service [pdf]

https://www.marines.mil/portals/1/Publications/MCO%20P10110.42B.pdf
2•kmstout•49m ago•1 comments

The Guix Nix Abomination: Leveraging Guix Derivations in Nix

https://fzakaria.com/2026/06/05/the-guix-nix-abomination-leveraging-guix-derivations-in-nix
3•dagenix•58m ago•0 comments

Show HN: Persist – an AI agent that follows up accrued channels till they reply

https://persist.chat
3•Robelk1•1h ago•1 comments

CS Trivia: computer science crosswords

https://cstrivia.com/
2•bluejulius•1h ago•1 comments

A modular impact diverting mechanism for football helmets [pdf]

https://www.sfu.ca/~gwa5/pdf/2020_04.pdf
3•luu•1h ago•0 comments

Is AI Anxiety Causing the Vibecession? An Investigation

https://kevinonthemargin.com/is-ai-anxiety-causing-the-vibecession-an-investigation/
2•m-hodges•1h ago•0 comments

Up-to-Date Evidence Reviews of Health and Longevity Interventions

https://evipedia.ai/
2•negura•1h ago•0 comments

Public Domain Image Archive

https://pdimagearchive.org/
9•davidbarker•1h ago•1 comments

Immortality

https://aabiji.github.io/html/immortality.html
4•aabiji•1h ago•0 comments

The World's 100 Best Clubs

https://www.nightlifeinternational.org/en/congress-awards/100-world-s-best-clubs
3•fauria•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!