frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Algebraic Dynamical Systems in Machine Learning (2024)

https://link.springer.com/article/10.1007/s10485-023-09762-9
1•measurablefunc•1m ago•0 comments

OpenAdServer – A self-hosted ad server in Python, aiming to replace Revive"

https://github.com/seanZhang414/openadserver
1•root414•1m ago•1 comments

The Slow Grind That Sets You Free

https://medium.com/@naveensky/the-slow-grind-that-sets-you-free-97abd8b9bf2c
1•naveensky•9m ago•0 comments

What kind of grownup I want to be

https://sashachapin.substack.com/p/what-kind-of-grownup-i-want-to-be
1•eatitraw•18m ago•0 comments

Rock Paper Scissors Is Not Solved, in Practice

https://inchpin.substack.com/p/rock-paper-scissors-is-not-solved
1•eatitraw•19m ago•0 comments

Better GitHub Notifications Dashboard

https://github-notifications.dev/
2•shrimalmadhur•19m ago•0 comments

Crypto hoarding company shares under pressure as risk appetite wanes

https://www.reuters.com/business/finance/crypto-hoarding-company-shares-under-pressure-risk-appet...
2•1vuio0pswjnm7•21m ago•0 comments

Italy's Competition Watchdog Broadens WhatsApp AI Policy Probe

https://www.wsj.com/tech/ai/italys-competition-watchdog-broadens-whatsapp-ai-policy-probe-64c904cd
2•1vuio0pswjnm7•24m ago•0 comments

X402 – protocol for micropayments and the rise of an agentic economy

https://oasis.net/blog/x402-https-internet-native-payments
1•adrianwaj•27m ago•1 comments

Show HN: Tacopy – Tail Call Optimization for Python

https://github.com/raaidrt/tacopy
1•raaid-rt•32m ago•0 comments

CrowdStrike: Security Flaws DeepSeek-Generated Code Linked to Political Triggers

https://www.crowdstrike.com/en-us/blog/crowdstrike-researchers-identify-hidden-vulnerabilities-ai...
2•fosco•32m ago•1 comments

Harvard Database Hacked in Latest Ivy League Cyberattacks

https://www.bloomberg.com/news/articles/2025-11-22/harvard-hacked-in-most-recent-case-of-ivy-leag...
1•1vuio0pswjnm7•37m ago•0 comments

Best Free Headshot Generator 2026: 9 AI Tools Tested and Compared

https://www.aiheadshotreviews.com/articles/best-free-headshot-generator
1•naveensky•43m ago•1 comments

Why Jailbreaking Calculators Is (Unfortunately) a Thing Now [video]

https://www.youtube.com/watch?v=3a-X6FZfl2Y
2•josephcsible•45m ago•0 comments

Discord for LLMs in a single 3.7k-line HTML file

https://modelarena.xyz
2•Estrick•46m ago•1 comments

Onion AI – AI Poster Maker

https://onionai.so/en
1•ovelv•53m ago•0 comments

Ask HN: How can we measure AI's impact on global developer productivity?

2•obilgic•56m ago•1 comments

Listen to music like it's 2005

https://lukecyca.com/2025/listen-to-music-like-its-2005.html
2•ireflect•1h ago•0 comments

Dennis Sullivan: Simplicity Is the Point (2014) [video]

https://www.youtube.com/watch?v=ixc0TNfT0ks
1•vismit2000•1h ago•0 comments

"Many students are simply refusing to do *anything*."

https://bsky.app/profile/jesbattis.bsky.social/post/3m6pvvkojqk2l
6•dougb5•1h ago•0 comments

AI just proved Erdos Problem #124

https://twitter.com/vladtenev/status/1994922827208663383
4•nl•1h ago•0 comments

Decoding Ageing: Blueprint Theory of Ageing [video]

https://www.youtube.com/watch?v=SQAFLDTvQfM
1•escargot•1h ago•0 comments

Show HN: LLM Newsletter Kit – A TypeScript Framework for AI Newsletters

https://github.com/kimhongyeon/llm-newsletter-kit-core
1•hongyeon•1h ago•0 comments

Kopi Luwak

https://en.wikipedia.org/wiki/Kopi_luwak
5•thunderbong•1h ago•0 comments

Tom Stoppard, Award-Winning Playwright of Witty Drama, Dies at 88

https://www.nytimes.com/2025/11/29/theater/tom-stoppard-dead.html
5•mitchbob•1h ago•1 comments

The Markets Aggregating Political Reality

https://freesystems.substack.com/p/inside-the-markets-aggregating-political
1•gwintrob•1h ago•0 comments

Adolescence lasts into 30s – new study shows four pivotal ages for your brain

https://www.bbc.co.uk/news/articles/cgl6klez226o
1•ifh-hn•1h ago•2 comments

Show HN: I built a Web 1.0 budgeting tool, Budget Pro 3000

https://budgetpro3000.com
1•adrianvxyz•1h ago•0 comments

Do we need a new GitHub for AI coding era?

https://github.com/memovai/memov
2•ssslvky1•2h ago•2 comments

Welcome to My Andrew Lloyd Website

https://andrewlloydwebsite.neocities.org/
1•nxobject•2h ago•0 comments
Open in hackernews

Would you believe try-catch-finally works in plain old C?

4•mf_taria•6mo ago
I was digging through some of my old repositories and found a C language extension I wrote years ago. Even now, I think it’s kinda cool — and I’d love for you to check it out.

https://github.com/simpart/c-try

It recreates `try {}` / `catch {}` / `finally {}` in plain C using just macros and global variables. There's also a `$` macro to propagate errors between function calls — a bit like a mini DSL for error handling.

You can find a working example in `test.c`.

It doesn't support nesting or multithreading, and yes, it abuses macros. But hey, it's C.

Comments

actionfromafar•6mo ago
Finally!