frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Classified F-35 stealth parts diverted to Hong Kong by shipper

https://www.politico.com/news/2026/09/18/congress-f-35-china-investigation-01083647
1•cf100clunk•1m ago•0 comments

Stratasys awarded 27.6M in damages in first of 2 cases against bambu lab

https://all3dp.com/6/stratasys-awarded-27-6-million-in-damages-in-first-of-two-cases-against-bamb...
1•iancmceachern•1m ago•0 comments

Have You Seen Shannon

https://news.ycombinator.com/submit
1•susanboop_09•1m ago•0 comments

AI Lab building tycoon game

https://bedroomlabs.net
1•o_g•1m ago•0 comments

An Undercover Google Analyst Infiltrated a Notorious Supply-Chain Hacking Gang

https://www.wired.com/story/an-undercover-google-analyst-infiltrated-a-notorious-supply-chain-hac...
1•MC995•3m ago•0 comments

Before you build it, share it

https://coidea.co
1•moeidheidari•3m ago•0 comments

I vibecoded a tool to shrink Golang codebase automatically

https://github.com/dhilst/sx
1•geckones•4m ago•1 comments

SSD-Llama: SSD-Native Inference for Trillion-Parameter Moe on a Consumer PC

https://arxiv.org/abs/2609.18110
1•AlmostCosmo79•5m ago•0 comments

ChatGPT's Built-in Browser now supports Chrome extensions

https://twitter.com/JamesZmSun/status/2100995281097769216
2•twapi•6m ago•0 comments

Keeping vLLM's Prefix Cache Warm Between Agent Turns

https://doug.sh/posts/vllm-kv-cache-agents/
1•dougcalobrisi•6m ago•0 comments

Near-real-time vision using DiffusionGemma in Jev mode

https://twitter.com/mmastrac/status/2101011110132601054
1•mmastrac•6m ago•0 comments

Anthropic finally adds AGENTS.md support to Claude Code

https://twitter.com/trq212/status/2101009392611278961
2•deaux•7m ago•1 comments

The Highway Tutorial

https://fastcode.substack.com/p/announcing-the-highway-tutorial
1•behoppe•8m ago•1 comments

Show HN: Iceoryx2 0.10: flatbuffer integration, zerocopy IPC with unbounded data

https://ekxide.io/blog/iceoryx2-0.10-release/
2•elfenpiff•10m ago•0 comments

Show HN: Open-source revenue recognition and analytics for Stripe and Metronome

2•tanin•12m ago•0 comments

I built a project database for data science agents

https://yizhao95.github.io/prov_ledger/walkthrough.html
1•yzhao950213•14m ago•0 comments

Open Challenge List

https://openchallengelist.com/
2•alex_varga•15m ago•1 comments

Ask HN: So is AI taking our jobs?

1•throwaway1995v2•16m ago•1 comments

Flawed benchmarks (epoch.ai benchmark registry filtered by flawed)

https://epoch.ai/benchmarks/search
1•andromaton•17m ago•0 comments

Anthropic builds wet lab for AI-driven drug discovery

https://qz.com/anthropic-biology-wet-lab-ai-drug-research-091826
2•A_D_E_P_T•18m ago•1 comments

Show HN: I compiled FreeRDP into a Flutter app so my phone can do RDP and SSH

https://xconnectapp.com/
1•neil_thomas•19m ago•0 comments

WeirdML v3

https://htihle.github.io/weirdml.html
1•andromaton•21m ago•0 comments

Show HN: SIM Screener adds device frames to screenshots and recordings

https://simscreener.com
1•IgorAmidzic•22m ago•0 comments

Show HN: Semantic-skill-kit:agent skills adapted from Google Modern Web Guidance

https://github.com/ulrischa/semantic-skill-kit
2•ulrischa•25m ago•0 comments

Border agents can search cellphones without a warrant or reasonable suspicion

https://lawandcrime.com/high-profile/the-government-was-entitled-trumps-border-agents-can-now-sea...
14•mmh0000•25m ago•3 comments

Europe's AI firms, playing catch-up, challenge US calls for slowdown

https://www.reuters.com/business/europes-ai-firms-playing-catch-up-challenge-us-calls-slowdown-20...
4•TMWNN•25m ago•0 comments

Lmjtfy – Ask Jev a yes or no question

https://lmjtfy.dev/
2•rbaudibert•26m ago•1 comments

China's CAS institute charts DUV route to 3nm GAA without EUV

https://www.digitimes.com/news/a20260917PD204/china-3nm-duv-euv-gaa-development.html
7•yogthos•27m ago•0 comments

Stop waiting to live (before AGI decides for you)

https://www.youtube.com/watch?v=0sfy6fCP8ik
1•gillysuit•28m ago•0 comments

2026 Global Cities Index

https://www.oxfordeconomics.com/global-cities-index/
4•andrewstetsenko•28m ago•0 comments
Open in hackernews

A proof of concept tool to verify estimates

https://terrytao.wordpress.com/2025/05/01/a-proof-of-concept-tool-to-verify-estimates/
2•jeremyscanvic•1y ago

Comments

turtleyacht•1y ago
A defensive programming nit is not to return the desired result [1] but to show all collected cases are true.

  def defensive_true():
      # assume False
      ...
      return arr.all(True)
There are tests, but some wild refactoring in the night and "tests still pass," leading to a blind ship, could be a tiny risk.

Not a big deal, just I don't trust myself to return the happy path if the middle could change.

[1] https://github.com/teorth/estimates/blob/main/src/estimates....