frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Depth-First-Search vs. Breadth-First-Search, When to Use Which?

https://www.youtube.com/watch?v=cS-198wtfj0
1•Brysonbw•1m ago•0 comments

Trivy Compromised by Supply Chain Attack

https://www.wiz.io/blog/trivy-compromised-teampcp-supply-chain-attack
1•akerl_•1m ago•0 comments

Pollock avoided hydrodynamic instabilities to paint with his dripping technique

https://journals.plos.org/plosone/article?id=10.1371%2Fjournal.pone.0223706&utm_source=clivethomp...
1•bookofjoe•2m ago•0 comments

Dissociating Direct Access from Inference in AI Introspection

https://arxiv.org/abs/2603.05414
1•3willows•4m ago•0 comments

Show HN: I vibe-coded the chopsticks faux pas app for you so you don't have to

https://hashihabits.com
1•stunnAR•15m ago•0 comments

Show HN: I Built Grid View for Switchboard – Claude Code CLI Manager

https://github.com/doctly/switchboard/releases/tag/v0.0.16
1•kapitalx•17m ago•0 comments

Graphics Gems Repository (2021)

https://www.realtimerendering.com/resources/GraphicsGems/
1•turtleyacht•17m ago•0 comments

T0-GPU: Bare-metal kernel compiler for RDNA3

https://github.com/GeisYaO/t0-gpu
1•woctordho•18m ago•0 comments

Goalless AI Agents: What They Build When No One Is Watching

https://changkun.substack.com/p/goalless-agents
1•changkun•19m ago•0 comments

Using AI makes writing more bland, study finds

https://www.nbcnews.com/tech/tech-news/ai-changing-style-substance-human-writing-study-finds-rcna...
1•cdrnsf•19m ago•0 comments

Crisis Engineering: The Book

https://crisisengineering.layeraleph.com/crisis-engineering-the-book/
2•riknos314•21m ago•0 comments

Humans share acoustic preferences with other animals: study

https://www.mcgill.ca/newsroom/channels/news/humans-share-acoustic-preferences-other-animals-stud...
1•hhs•21m ago•0 comments

Adapt or Die

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

Storing 2 bytes of data in your Logitech mouse

https://www.timwehrle.de/blog/what-if-i-stored-data-in-my-mouse/
6•birdculture•28m ago•0 comments

Creating prediction markets with Tarek Mansour and Luana Lopes Lara

https://cheekypint.substack.com/p/creating-prediction-markets-and-suing
1•hhs•29m ago•0 comments

In this economy? Sydney In Me has created a free tool using free services

https://taplink.cc/sydneyinme
1•iiviivix•32m ago•1 comments

Looking at Unity made me understand the point of C++ coroutines

https://mropert.github.io/2026/03/20/unity_cpp_coroutines/
2•ingve•36m ago•0 comments

Inside the AI labs training China's humanoid robots

https://www.ft.com/content/85bca5c7-f64b-4011-bc7c-9ce3254a2b78
2•hhs•39m ago•0 comments

WikiWikiWiki

https://github.com/minguhong/WikiWikiWiki
2•cookingoils•41m ago•0 comments

AI systems are more similar to indent(1), than to the human process

https://marc.info/?l=openbsd-tech&m=177411863202734&w=2
2•longislandguido•50m ago•1 comments

I built a FIX protocol engine in Rust that's 4.5x faster than QuickFIX/J

https://github.com/matthart1983/velocitas-fix-engine
2•matthart1983•51m ago•0 comments

B_slope: Factual answers converge 1.4x–2.6x faster than hallucinations

https://www.orsonai.com/publications/tes1-pre-generative-epistemic-signal.html
1•JakubCwi•53m ago•0 comments

Management Craft

https://www.managementcraft.co/
1•handfuloflight•54m ago•0 comments

AI for Particle Physics: Searching for Anomalies

https://spectrum.ieee.org/particle-physics-ai
1•rbanffy•58m ago•0 comments

Martial Arts Robots

https://www.youtube.com/watch?v=UTq2o7RQs0A
2•M4v3R•58m ago•0 comments

AI Chatbots Keep Encouraging Violence. That's by Design

https://weaponizedspaces.substack.com/p/ai-chatbots-keep-encouraging-violence
2•rbanffy•59m ago•0 comments

How are you so sure this is not just another winter

3•shoman3003•1h ago•1 comments

Ask HN: Latitude.sh / datapacket.com for bare metal servers?

1•truetraveller•1h ago•2 comments

PyTorch Init Functions Explained Visually [video]

https://www.youtube.com/shorts/pp6jV-sd_a0
1•0bytematt•1h ago•0 comments

Show HN: Cycle – inverse-Pomodoro for macOS that nags you to rest

https://github.com/saint-angels/CYCLE
1•saint_angels•1h 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•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....