frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How to report copying review data under Copyright to google

https://www.google.com/
1•nsinghal12•5m ago•0 comments

AI's real bottleneck is data delivery

https://techcrunch.com/sponsor/f5/your-gpus-arent-the-problem-ais-real-bottleneck-is-data-delivery/
1•adithyaharish•7m ago•0 comments

Gradle Technologies is now Develocity

https://develocity.ai/blog/gradle-technologies-is-now-develocity/
1•mccullal8•12m ago•0 comments

Streaming Encryption (2014)

https://www.imperialviolet.org/2014/06/27/streamingencryption.html
1•nivethan•14m ago•0 comments

Asbestos is a tool, just like any other

https://www.osnews.com/story/145530/asbestos-is-a-tool-just-like-any-other/
1•amcclure•14m ago•0 comments

Samsung is testing a network permission toggle feature

https://www.androidauthority.com/samsung-one-ui-9-concentration-feature-3666807/
1•vilasa•17m ago•0 comments

Router ARP/NAT contradict after reload. Client ghost or firmware bug?

1•asdem•18m ago•0 comments

Preempt AI v2 – AI is powerful. Make sure it's safe too

https://www.getpreempt.com/
1•karthikravva•21m ago•0 comments

Barefoot shoes are trendy after years of mockery. Do they work?

https://slate.com/life/2026/07/barefoot-shoes-minimalist-toe-running-sneakers-xero-vibram.html
3•littlexsparkee•24m ago•0 comments

Show HN: PocketVeto is a Bluetooth-only AI agent remote control

https://github.com/pocket-veto/pocket-veto
1•pocket-veto•24m ago•0 comments

OpenAI Staffers Are Funding a Rival Super Pac to Take on Their Boss

https://www.wired.com/story/openai-employees-donations-guardrails-alliance-leading-the-future/
4•1vuio0pswjnm7•26m ago•0 comments

Meta data centre in Alberta to start operating before neighbouring power plant

https://www.cbc.ca/news/canada/edmonton/meta-data-centre-alberta-greenlight-power-plant-9.7266096
3•1vuio0pswjnm7•28m ago•0 comments

Meta axes feature allowing tagging Instagram users to generate AI images of them

https://www.cbc.ca/news/business/meta-instagram-change-ai-settings-9.7265448
2•1vuio0pswjnm7•29m ago•0 comments

Show HN: Human0 – A template to run an autonomous, self-improving code loop

https://github.com/human0-ai/template
1•moshest•29m ago•0 comments

Databricks Set to Hit $188B Valuation with New Investment from Coatue

https://www.wsj.com/tech/ai/databricks-set-to-hit-188-billion-valuation-with-new-investment-from-...
2•jgalt212•30m ago•1 comments

Taliban 'National Keyboard' App Risks User Surveillance

https://www.afintl.com/en/202605276608
3•alephnerd•30m ago•1 comments

Code Ownership and Software Quality: A Replication Study (2015)

https://www.microsoft.com/en-us/research/publication/code-ownership-and-software-quality-a-replic...
2•LAC-Tech•31m ago•1 comments

FCC Officials Took $$$ Gifts from Paramount as Company Needed Approval for Deals

https://www.propublica.org/article/paramount-mergers-fcc-kennedy-center-gala
3•WarOnPrivacy•32m ago•0 comments

Chaldean Mass (Old) [video]

https://www.youtube.com/watch?v=HIZDK1PsJpY
1•marysminefnuf•33m ago•0 comments

Declassified Documents detailing Voting System Vulnerabilities 16-July-2026

https://www.whitehouse.gov/election-integrity/
4•pudgywalsh•35m ago•2 comments

Show HN: Piano Shepherd – a piano game for kids

https://zslava.itch.io/piano-shepherd
1•zslava88•35m ago•1 comments

Show HN: Levity, an open-source logo studio that runs as a single local binary

https://www.logodesignxperts.com/free-logo-tool/
1•abratabia•35m ago•0 comments

More Bounce to the Ounce: The rocket that everyone is too chicken to build

https://mceglowski.substack.com/p/more-bounce-to-the-ounce
2•decimalenough•35m ago•0 comments

Show HN: A LeetCode alternative - learn DSA through visual jigsaw puzzles

https://pqdsa.com/
1•_dragonguy•35m ago•0 comments

Show HN: Mocca – Claude Code wrapper where Plugin takes center stage

https://github.com/valehelle/mocca-hub
1•brighbun•41m ago•0 comments

Agnys – The flight recorder for AI agents

https://agnys.net/
1•ashishrdy•41m ago•0 comments

Show HN: Selenium Boot – Spring Boot's Conventions, Applied to Selenium

https://seleniumboot.com/
2•mdsddmhossain•44m ago•0 comments

Secrets in the ArXiv

https://arxiv.org/abs/2604.20927
2•wawayanda•45m ago•0 comments

Ask HN: How do you handle ticket management across Discord, GitHub, and email?

2•Daniel-Pan•46m ago•1 comments

Show HN: KV-Cache Grafting – Boosting frozen 12B LLMs to 93.3% AIME accuracy

https://arxiv.org/abs/2607.14431
2•Corbenic•46m 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....