frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Kula – a family health platform that makes sense of your data

1•samuraikmc•1m ago•0 comments

Apple discontinues $599 base Mac mini. Entry-level model starts at $799 with 512

https://macdailynews.com/2026/05/01/apple-discontinues-599-base-mac-mini-entry-level-model-now-st...
1•apparent•3m ago•1 comments

Pake: Webpage to desktop app in one command using rust

https://github.com/tw93/Pake
1•AbuAssar•7m ago•0 comments

Learning Randomized Reductions

https://arxiv.org/abs/2412.18134
1•matt_d•9m ago•0 comments

Stock Market Course

1•Apextrading•11m ago•0 comments

The Vision of Harmandeep Singh Kandhari in Premium Housing

https://harmandeep-singh-kadhari.wuaze.com/
1•KirtiKKapoor•16m ago•0 comments

9social: A Social Network for Plan9

https://www.youtube.com/watch?v=q6qVnlCjcAI
2•dharmatech•21m ago•0 comments

High Performance Motor Control from the Ground Up – Field Oriented Control (FOC) [video]

https://www.youtube.com/watch?v=ujofKWmGChw
2•num42•24m ago•0 comments

Use Cheaper Models with Claude

https://gist.github.com/gitcloned/1929590e2fa0d0267919c6826808da2c
1•ashish0112•26m ago•5 comments

The Engineering Constraints of Distributed LLM Inference over the Open Internet

https://siliconandsoul.substack.com/p/the-engineering-constraints-of-distributed
1•essenceX•26m ago•0 comments

Practical Electronics Course

https://practicingelectronics.com/practical-electronics-course/
2•ofrzeta•54m ago•2 comments

Humanoid Robot Actuators: The Complete Engineering Guide

https://www.firgelli.com/pages/humanoid-robot-actuators
6•ofrzeta•1h ago•0 comments

IPv4 Tools – IP Lookup, PTR Search, CIDR, ASN

https://worldip.io/tools
1•tuxxin•1h ago•1 comments

Show HN: Maxcred – app to maximise your credit card rewards

https://maxcred.vercel.app
1•theoo21•1h ago•0 comments

BrowserQuest – Mozilla's HTML5 MMO is back

https://korben.info/browserquest-mmo-mozilla-html5-retour.html
3•threejin•1h ago•1 comments

I Automate Everything

https://effective-programmer.com/how-i-actually-automate-everything-0d97ed624a34?sk=f8a15ad7e32cd...
1•naveed125•1h ago•1 comments

StartupLaunchPage – One Page 1500 Fixed Boxes Checkbox Puzzle Game

https://startuplaunchpage.com
3•vnyarongi•1h ago•0 comments

Show HN: TTSC – TypeScript-Go compiler and runner with transform plugins

https://github.com/samchon/ttsc
1•autobe•1h ago•1 comments

Entrepreneurs Flocked to Colorado. Now Red Tape Is Driving Some Away

https://www.wsj.com/business/entrepreneurs-flocked-to-colorado-now-red-tape-is-driving-some-away-...
2•bookmtn•1h ago•2 comments

Real Linux in a Browser Tab

https://linuxontab.com/
1•kilian-ai•1h ago•0 comments

The Scooter and the Bike

https://maxmautner.com/2026/04/12/scooter-vs-bike.html
1•mslate•1h ago•0 comments

HyperList: A powerful TUI for creating, editing, and managing HyperLists

https://github.com/isene/hyperlist
2•thunderbong•1h ago•1 comments

LegalEase – plain-English incorporation guidance for Canadian founders

https://legalease.dev/legalease.dev/
1•margikoca•1h ago•0 comments

The Tech Stack in 2026 (pic)

https://i.imgur.com/w8Ziffp.jpeg
2•ivewonyoung•1h ago•0 comments

Spirit Airlines shuts down; says it can't keep up with higher oil prices

https://apnews.com/article/spirit-airlines-trump-bailout-bankruptcy-37a4818e1b71c0905d022f669d85948c
2•ZeidJ•1h ago•1 comments

Big Tech cut 80k jobs, blamed AI; experts say firms are overstaffed 25%-75%

https://finance.yahoo.com/sectors/technology/articles/big-tech-cut-80-000-211500038.html
2•ZeidJ•1h ago•1 comments

Show HN: Sync agent skills across devices, projects or teams

https://privateaiskills.com/
1•arewethereyeta•1h ago•0 comments

Cozy.Talk – Old web inspired discussion community

https://cozy.talk/
2•rickcarlino•1h ago•0 comments

Ex-DeepMind David Silver Raises $1.1B for AI Startup Ineffable

https://www.cnbc.com/2026/04/27/deepmind-ineffable-intelligence-record-seed-funding-nvidia-google...
2•gmays•2h ago•0 comments

Coffee appears to rewire the gut-brain connection

https://www.sciencedaily.com/releases/2026/05/260502233911.htm
13•loh•2h ago•7 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•1y ago

Comments

cherryteastain•1y 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•1y 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