frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

UK will use Ukraine battlefield data to train AI and use it againsts protesters

https://www.theguardian.com/politics/2026/aug/24/uk-to-use-ukraine-battlefield-data-to-train-ai-t...
2•skor•1m ago•0 comments

FreeToken: Efficient Edge-Native Moe Serving with Bandwidth-Adaptive Execution

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

Iran Is Using Foreign Criminals to Attack Its Critics Overseas

https://www.newyorker.com/news/letter-from-the-uk/iran-is-using-foreign-criminals-to-attack-its-c...
1•firefax•7m ago•0 comments

The cost of today's "smart" devices

https://www.fsf.org/blogs/community/2026-the-hidden-cost-of-todays-smart-devices
1•smitty1e•8m ago•0 comments

The Official Ig Nobel Card Game Is Born, Improbably

https://improbable.com/2026/08/24/the-official-ig-nobel-card-game-is-born/
1•sohkamyung•12m ago•0 comments

Bookshelf – Self-hosted eBook library that runs on object storage

https://github.com/murerkinn/bookshelf
2•arbayi•13m ago•0 comments

Tiny, fast Windows Notepad replacement (source available)

https://liquidninja.com/metapad/
1•bananaboy•13m ago•0 comments

SQLite as a Document Database (2020)

https://dgl.cx/2020/06/sqlite-json-support
2•lioeters•13m ago•0 comments

The text mode lie: why modern TUIs are a nightmare for accessibility

https://www.osnews.com/story/144892/the-text-mode-lie-why-modern-tuis-are-a-nightmare-for-accessi...
3•birdculture•16m ago•0 comments

Evaluating Shrinking (Experience Report)

https://dl.acm.org/doi/10.1145/3830439.3831271
1•matt_d•17m ago•0 comments

From Gradients to ChatGPT

https://mister-meeseeks.github.io/g2c/
1•simonpure•18m ago•0 comments

Show HN: AiSyncing – Back up your AI coding assistant memories to GitHub

https://github.com/DiegoSalazar/AiSyncing
1•mastermindxs•21m ago•0 comments

Directory navigator that doesn't require you to visit a folder first

https://github.com/RudySource/Dirgo
2•rudus•22m ago•0 comments

War Machines: Netflix Confirms Sequel to Hit Sci-Fi Movie War Machine

https://moztako.me/war-machines-netflix-war-machine-sequel/
2•cecyev•23m ago•0 comments

Characterizing the spiral: potential mechanisms in AI-associated delusions

https://www.nature.com/articles/s44277-026-00065-0
3•jambalaya8•23m ago•0 comments

Mission impossible? Quantifying military emissions

https://thebulletin.org/2026/08/mission-impossible-quantifying-military-emissions/
1•measurablefunc•25m ago•0 comments

Show HN: Flostep – Diagrams people can actually walkthrough

https://flostep.dev/
1•pandurang90•28m ago•0 comments

Lean: Postmortem for the Kernel Soundness Bug Hunt

https://leodemoura.github.io/blog/2026-8-24-postmortem-for-the-kernel-soundness-bug-hunt/
3•matt_d•29m ago•0 comments

Epigenetic aging biomarker responsiveness to longevity interventions in humans

https://www.nature.com/articles/s41591-026-04562-9
3•bookofjoe•30m ago•0 comments

Show HN: Mainly – a self-hosted mail client built for your multiple domains

https://mainly.crnst8.com/
1•flowerpil•37m ago•0 comments

Equations explained colorfully with KaTeX and Markdown

https://github.com/stared/equations-explained-colorfully
1•lioeters•39m ago•1 comments

Codeanywhere Is Sunsetting

https://codeanywhere.com/blog/codeanywhere-is-sunsetting
3•jcbhmr•40m ago•1 comments

Show HN: Stigmergy, a Karpathy-style LLM wiki for a team, not one person

https://github.com/sturlese/stigmergy
1•sturlese•41m ago•0 comments

OpenDryFire – 10x cheaper laser dry-fire scoring from a webcam and mic

https://github.com/aysark/opendryfire
1•infinitone•41m ago•0 comments

Migrating off Heroku to AWS without killing your deploy speed

https://www.qovery.com/blog/migrate-heroku-to-aws-keep-deployment-fast
1•makaimc•45m ago•0 comments

PageLens–A Chrome extension that uses AI to summarize your tab

https://github.com/heinevwinston-bot/PageLens
1•WinstoneH•48m ago•0 comments

Why AI Detection Fails for Academic Integrity

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

Agile Design and Implementation of a Systolic Array-Based CNN Accelerator (2024) [pdf]

https://www.ijerm.com/download_data/IJERM1103012.pdf
1•peter_d_sherman•56m ago•1 comments

The computer use verification skill that every agent needs

https://twitter.com/zachlloydtweets/status/2084411777354277027
1•gmays•57m ago•0 comments

Show HN: Self-hosted tunnels: local directory/port, your domain, HTTPS, passkeys

https://github.com/schappim/mygrok
1•schappim•58m 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!