frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

US stocks just suffered one of their most stunning reversals in 32 years

https://sherwood.news/markets/us-stocks-just-suffered-one-of-their-most-stunning-reversals-in-32-...
1•avonmach•1m ago•0 comments

PolyAgora v1.0 – A Natural-Language Multi-Axis Cognitive OS (Whitepaper, DOI)

https://zenodo.org/records/17675442
1•takeshi_sakamo•2m ago•0 comments

Token Efficiency

https://www.june.kim/token-efficiency
1•speckx•3m ago•0 comments

Made a tool to detect process injection

https://github.com/pandaadir05/ghost
1•pandaadir05•3m ago•1 comments

The Future of Codewars

https://www.codewars.com/post/the-future-of-codewars-a-message-from-our-ceo
1•captn3m0•4m ago•0 comments

The Battle for the Soul of the University

https://macleans.ca/longforms/the-battle-for-the-soul-of-the-university/
1•binge_thinking•4m ago•0 comments

How PDF became the past, present and future of consent forms

https://formesign.com/fillable/fillable-pdf-to-form-merge.html
1•QueensGambit•7m ago•0 comments

Researcher's Smuggling Arrest Casts Light on Dispute over Chinese Students

https://www.nytimes.com/2025/11/21/world/asia/chinese-students-us.html
1•perihelions•8m ago•0 comments

You can make smells with ultrasound

https://writetobrain.com/olfactory
6•exr0n•14m ago•0 comments

Voxel Duke Nukem 3D

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

What humans are meant to do

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

Xbox Content Archive Tool (XCAT)

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

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

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

Indiana Pi Bill

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

From idea to funding. Follow this

1•MCWiggy•20m ago•0 comments

Federate Away from GitHub

https://lambdaland.org/posts/2025-11-18_federate_your_forges/
1•speckx•20m 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•22m ago•1 comments

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

1•tcodeking•23m ago•0 comments

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

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

Leave the Em Dash Alone

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

Freelance Marketplace for African Software Developers and Virtual Assistants

https://devdey.com
1•captainXYZ•26m 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•28m 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...
3•Venn1•30m ago•0 comments

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

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

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

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

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

2•aliparnan•34m ago•0 comments

Next general training environment for superintelligence?

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

Block Lamp

https://arslan.io/2025/01/25/my-first-lighting-design-block-lamp/
3•wonger_•36m 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•37m 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•37m ago•0 comments
Open in hackernews

Using C++ type aliasing to avoid the ODR problem with conditional compilation

https://devblogs.microsoft.com/oldnewthing/20250501-00/?p=111134
5•signa11•6mo ago

Comments

cherryteastain•6mo ago
Cool trick but why wouldn't you just put the Log method without the ifdef in the header, and put the conditionally compiled bits in a .cpp file? The method in the article already puts both Widget<true> and Widget<false> in a .cpp file.
stop50•6mo ago
The thing that is complained on by the linker is not the method, its the m_logger attribute. because of that the two structs mismatch. But since Widget<true> and Widget<false> are two different structs in the typing system they don't interfere with each other