frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

You can make smells with ultrasound

https://writetobrain.com/olfactory
4•exr0n•5m ago•0 comments

Voxel Duke Nukem 3D

https://www.moddb.com/mods/voxel-duke-nukem-3d/addons/voxel-duke-3d
1•Venn1•6m ago•0 comments

What humans are meant to do

https://maximizinginterest.substack.com/p/what-humans-are-meant-to-do
1•anonisfree•7m ago•0 comments

Xbox Content Archive Tool (XCAT)

https://consolemods.org/wiki/Xbox:XCAT
1•varun_ch•7m ago•0 comments

Arvos, Stream iPhone Lidar, Camera, and IMU over WiFi

https://github.com/jaskirat1616/Arvos
1•jaskirat1216•7m ago•0 comments

Indiana Pi Bill

https://en.wikipedia.org/wiki/Indiana_pi_bill
1•tmoertel•9m ago•0 comments

From idea to funding. Follow this

1•MCWiggy•11m ago•0 comments

Federate Away from GitHub

https://lambdaland.org/posts/2025-11-18_federate_your_forges/
1•speckx•12m ago•0 comments

X has changed their policy and now you can see where the accounts are based

https://bsky.app/profile/onestpress.onestnetwork.com/post/3m65wfkdpr22h
2•xnx•13m ago•1 comments

Show HN: Guardrail Layer, Open-Source AI Data Firewall, Role-Based Redaction

1•tcodeking•14m ago•0 comments

MemMachine, an open-source memory layer for advanced AI agents

https://github.com/MemMachine/MemMachine
2•jinqueeny•14m ago•0 comments

Leave the Em Dash Alone

https://danielmiessler.com/blog/leave-the-em-dash-alone
2•speckx•18m ago•0 comments

Freelance Marketplace for African Software Developers and Virtual Assistants

https://devdey.com
1•captainXYZ•18m ago•0 comments

A brain implant that could rival Neuralink's enters clinical trials

https://www.nature.com/articles/d41586-025-03849-0
1•geox•20m ago•0 comments

Tuxedo Computers Cancels Snapdragon X1 Linux Laptop

https://www.tuxedocomputers.com/en/Discontinuation-of-ARM-notebooks-with-Snapdragon-X-Elite-SoC.t...
2•Venn1•21m ago•0 comments

GraphLite: An Embeddable Graph Database with ISO Graph Query Language Support

https://github.com/GraphLite-AI/GraphLite
3•cpard•24m ago•0 comments

Point-of-Care Transesophageal Echocardiography in Emergency and Intensive Care

https://www.mdpi.com/2227-9059/13/11/2680
2•PaulHoule•24m ago•0 comments

AgentxSuite – Open-Source Control Plane for AI Agents Using MCP

2•aliparnan•25m ago•0 comments

Next general training environment for superintelligence?

https://shash42.substack.com/p/automated-scientific-discovery-as
1•shash42•26m ago•1 comments

Block Lamp

https://arslan.io/2025/01/25/my-first-lighting-design-block-lamp/
3•wonger_•27m ago•0 comments

The Harvard Endowment's Biggest Public Investment Is Now Bitcoin

https://gizmodo.com/the-harvard-endowments-biggest-public-investment-is-now-bitcoin-2000686439
3•paulpauper•28m ago•1 comments

ChatGPT in Systematic Investing – Enhancing Risk-Adjusted Returns with LLMs

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=5680782
1•paulpauper•29m ago•0 comments

What Now? Handling Errors in Large Systems

https://brooker.co.za/blog/2025/11/20/what-now.html
2•SchwKatze•30m ago•0 comments

Show HN: Even Turns, track your families turns

https://eventurns.com
1•gdesplin•38m ago•0 comments

IVs, manicures and no bathroom breaks: 24 hours selling cards with Joe Hollywood

https://www.cllct.com/sports-collectibles/memorabilia/ivs-manicures-and-no-bathroom-breaks-24-hou...
1•starkparker•39m ago•0 comments

FCC rolls back cybersecurity rules for telcos despite state hacking risks

https://www.bleepingcomputer.com/news/security/fcc-rolls-back-cybersecurity-rules-for-telcos-desp...
1•sans_souse•39m ago•0 comments

Why an AI 'godfather' is quitting Meta after 12 years

https://www.bbc.com/news/articles/cdx4x47w8p1o
2•iamtech•41m ago•1 comments

Is Write­Process­Memory faster than shared memory for transferring data

https://devblogs.microsoft.com/oldnewthing/20251119-00/?p=111800
1•ibobev•42m ago•0 comments

GE to Acquire InteleRad for $2.3B

https://www.reuters.com/legal/transactional/ge-healthcare-acquire-intelerad-23-billion-2025-11-20/
2•lostlogin•43m ago•0 comments

Show HN: Ìkọkúkọ 0.1.0 – Reactive Form Validation for Compose Multiplatform

https://github.com/quantipixels/ikokuko
1•theblackngel•43m 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•6mo ago

Comments

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