frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: FactIQ – a realtime econ+finance database for AI agents

https://github.com/defog-ai/factiq-plugin
1•rishsriv•1m ago•0 comments

Economics Nobel Prize 2025: Understanding Innovation-Driven Growth

https://visionias.in/blog/english/economics-nobel-prize-2025-understanding-innovation-driven-growth
1•akbarnama•2m ago•0 comments

We won $92,337 bug bounty using a single kernel 0-day

https://nebusec.ai/research/ionstack-part-2/
2•etenal•3m ago•1 comments

The Greatest Entrepreneurs in U.S. History, According to Business Historians

https://www.wsj.com/business/entrepreneurship/best-entrepreneurs-us-history-23c83c23
1•tzury•6m ago•0 comments

Meta says it's facing $1.4T in penalties in teen mental health case

https://nypost.com/2026/07/07/business/meta-says-its-facing-1-4t-in-penalties-in-teen-mental-heal...
2•NewCzech•6m ago•2 comments

Show HN: Ghostmeet – Self-hosted meeting transcription and summaries

https://ghostmeet.sshlab.dev/
2•swq115•12m ago•2 comments

LineageOS Statistics

https://stats.lineageos.org
1•pentagrama•12m ago•0 comments

How did Windows 95 decide that a setup program ran?

https://devblogs.microsoft.com/oldnewthing/20260707-00/?p=112508
1•soheilpro•16m ago•0 comments

Multigres Supports Listen/Notify Across Pooled Connections

https://multigres.com/blog/listen-notify
1•kiwicopple•17m ago•0 comments

Understanding how search engines work – and how we got here

https://www.searchengines.net/
1•bhartzer•19m ago•0 comments

Show HN: Plagiarism.Free – Free Plagiarism Checker

https://plagiarism.free/
1•nadermx•21m ago•0 comments

Show HN: FrankenMarkdown, Render .md Files to PDF/HTML (also in browser)

https://github.com/Dicklesworthstone/franken_markdown
1•eigenvalue•22m ago•0 comments

Tesla Home Energy Management System

https://www.tesla.com/en_ca/tesla-home
1•voisin•23m ago•0 comments

The Two Waters, one extra-dimensional

1•tintweezl•24m ago•2 comments

Mushroom Management

https://en.wikipedia.org/wiki/Mushroom_management
4•chistev•25m ago•0 comments

ICE sent officers to a man's home over an email. Now he's suing

https://apnews.com/article/ice-lawsuit-free-speech-first-amendment-immigration-7c02685c16e4b141be...
4•johnnyApplePRNG•26m ago•0 comments

Using Linux tc to limit the outgoing bandwidth of a web server

https://utcc.utoronto.ca/~cks/space/blog/linux/TcLimitServiceBandwidth
3•LorenDB•27m ago•0 comments

SmolMail: An AI agent for Gmail that answers in visuals, not walls of text

https://smolmail.com/
2•narinluangrath•40m ago•1 comments

Path to Google's #1 Position

https://mysevenstars.com/articles/SEO-Google-top-rank.html
3•rajkverma123•41m ago•1 comments

EU plan to address the risks and opportunities of advanced AI for cybersecurity

https://commission.europa.eu/news-and-media/news/new-eu-plan-address-risks-and-opportunities-adva...
2•rstagi•43m ago•0 comments

Probabilistic "Copies" in Generative AI Models [pdf]

https://download.ssrn.com/2026/7/6/7067878.pdf?response-content-disposition=inline&X-Amz-Security...
2•droidjj•44m ago•0 comments

Show HN: Chiptune Radio

https://chiptune-radio.alephvoid.com/
5•bootbloopers•44m ago•1 comments

Claude Fable extended to July 12

https://www.forbes.com/sites/sandycarter/2026/07/07/claude-fable-5-extends-by-five-more-days-10-m...
5•alexkkoo93•46m ago•1 comments

How to Read Postgres Explain: A Guide to Scan Types

https://www.crunchydata.com/blog/postgres-scan-types-in-explain-plans
3•craigkerstiens•1h ago•0 comments

Australia's Biggest Telco has nationwide outage

https://www.abc.net.au/news/2026-07-08/telstra-network-issues-internet-phones-live/106891206
2•a10c•1h ago•3 comments

Rlm-Workflow

https://try.works/projects#rlm-workflow
4•handfuloflight•1h ago•0 comments

China Is About to Pop the AI Bubble [video]

https://www.youtube.com/watch?v=siazPdsZHuI
3•Bender•1h ago•1 comments

From classroom to lab: Introducing turnkey lab exercises in IEEE 5G/6G Testbed

https://testbed.ieee.org/from-the-classroom-to-the-lab-introducing-turnkey-lab-exercises-in-the-i...
2•teleforce•1h ago•0 comments

Harica: Issuance and refusal to revoke TLS certificates for sanctioned entities

https://bugzilla.mozilla.org/show_bug.cgi?id=2049237
4•keydown•1h ago•0 comments

An interactive explorer for Benford's Law across real datasets

https://vatsalbakshi.com/blog/benfords-law/
10•dingobabies•1h ago•2 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....