frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

CloudPipe – download anything to Google Drive

https://cloudpipe.app
1•darkhasi•4m ago•0 comments

Am I a Forward Deployed Engineer? Maybe. Take the Quiz

https://wanjiko.substack.com/p/am-i-a-forward-deployed-engineer
1•contextwindow•7m ago•1 comments

DeerFlow 2.0: open-source SuperAgent harness that researches, codes, creates

https://github.com/bytedance/deer-flow
2•nateb2022•9m ago•0 comments

Add all your GitHub stars on your readme, autoupdating

https://starsum.jia.build/
1•Audgeviolin07•13m ago•0 comments

A Superpower Goes Offline

https://www.politico.com/news/2026/03/14/russias-self-inflicted-communication-crisis-00827197
2•mitchbob•19m ago•0 comments

Memegen Pro

https://memegen.pro/
1•decimalenough•19m ago•0 comments

Why do we need lots of Nuclear power long term?

https://www.gridstatus.io/live/ercot
1•chris222•22m ago•1 comments

$3k sequencing rescue dog's mast cell tumor DNA

https://twitter.com/IterIntellectus/status/2032858964858228817
2•gmays•22m ago•1 comments

Cats May Hold the Key to Treating Human Cancer

https://scitechdaily.com/cats-may-hold-the-key-to-treating-human-cancer/
2•y1n0•22m ago•0 comments

Accessibility and the AI autumn (2020) [video]

https://www.youtube.com/watch?v=PJE_gnTreBo
1•azhenley•25m ago•0 comments

Great Ideas in Computer Architecture

https://www.d.umn.edu/~gshute/arch/great-ideas.html
3•b-man•35m ago•0 comments

Estimating $π$ with a Coin

https://arxiv.org/abs/2602.14487
2•Anon84•38m ago•0 comments

Show HN: Korupedia – a knowledge base maintained by AI agents, not humans

https://korupedia.com
2•benryanx•38m ago•2 comments

What role is cyber warfare played in Iran?

https://www.bbc.com/news/articles/c5yr0576ygvo
1•y1n0•39m ago•0 comments

The war on Iran is about China

https://sharptext.net/2026/loud-and-clear/
4•qwikhost•39m ago•0 comments

China's Winning Energy Strategy

https://www.semafor.com/article/03/10/2026/chinas-winning-energy-strategy
2•KnuthIsGod•39m ago•0 comments

Open-Source Minecraft Web Client

https://mcraft.fun/
3•LelouBil•40m ago•0 comments

US solar installations fall as Trump policies hit sector

https://www.semafor.com/article/03/12/2026/us-solar-installations-fall-as-trump-policies-hit-sector
6•KnuthIsGod•42m ago•0 comments

ProfitPlay – Open prediction market arena for AI agents

https://github.com/jarvismaximum-hue/profitplay-starter
2•jarvis_maximum•47m ago•0 comments

Getting started with Claude for software development

https://steveklabnik.com/writing/getting-started-with-claude-for-software-development/
2•vinhnx•48m ago•0 comments

Clawme-Personal AI Assistant Built for OpenClaw

https://clawme.org/
2•RyanMu•51m ago•0 comments

Detecting LLM-generated phishing emails by the artifacts bad actors leave behind

https://lukemadethat.substack.com/p/forgetful-foes-and-absentminded-advertisers
2•costaud-sec•55m ago•1 comments

Tell HN: iPhone 6s still getting security updates

4•uticus•56m ago•2 comments

KB Arena – benchmark RAG strategies on your docs (open source)

https://github.com/xmpuspus/kb-arena
3•xmpuspus•58m ago•2 comments

Show HN: Obolus – compare taxes, budgets and wealth

https://www.obolusfinanz.de/en
2•sanzation•1h ago•0 comments

GPU-Accelerated OCR API for Documents, Images and PDFs

https://docpose.cloud/ocr
2•maniazi83•1h ago•1 comments

Department of War Official Demos Palantir Tooling

https://www.youtube.com/watch?v=yrtDgoqWmgM
3•stingrae•1h ago•0 comments

Why AI agents need to learn to read the room

https://ideas.fin.ai/p/why-ai-agents-need-to-learn-to-read
2•zdw•1h ago•0 comments

BinaryVibes – Natural language to native binary

https://bryhaw.com/blog/binaryvibes-natural-language-to-native-binary
2•bryhaw•1h ago•1 comments

Claude, you are a cutie-pie – by Margaret Atwood

https://margaretatwood.substack.com/p/claude-you-are-a-cutie-pie
4•vinhnx•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•10mo ago

Comments

turtleyacht•10mo 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....