frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Dictionaries and Tables

https://www.defconq.tech/docs/concepts/dictionariesTables
1•mpweiher•4m ago•0 comments

Thermal Design for Spaceflight (NASA, 2022) [pdf]

https://ntrs.nasa.gov/api/citations/20230003714/downloads/Thermal%20Design%20for%20Spaceflight.pp...
1•jason_s•5m ago•0 comments

Em dashes are fucking amazing

https://psychotechnology.substack.com/p/em-dashes-are-fucking-amazing
3•lr0•5m ago•0 comments

Textmode Overlay – live ASCII rendering for browser video and canvas

https://extension.textmode.art/
1•eclypz•12m ago•0 comments

Female Promotions and the Academic Pipeline: Evidence from a Natural Experiment

https://cepr.org/publications/dp21325
1•paulpauper•15m ago•0 comments

Socialists should embrace luxury apartments

https://www.ft.com/content/d15171ec-6665-40c6-99df-6962bcf4c761
1•paulpauper•15m ago•1 comments

Huginn: An AI Agent Activity Console

https://github.com/tohuw/huginn
1•tohuw•15m ago•2 comments

AgentSpec: Testing framework for AI agents (Jest for non-deterministic behavior)

https://github.com/Ozperium/agentspec
1•pawfromoz•16m ago•0 comments

Generative AI Can Harm Teaching

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=7007339
1•rekabis•17m ago•1 comments

Xi Jinping Delivers Keynote Speech at World AI Conference 2026 in Shanghai [video]

https://www.youtube.com/watch?v=0Pbv5_7t1GQ
5•verdverm•19m ago•0 comments

A Note from Bethesda Game Studios

https://bethesda.net/en/article/7wrffyXajE4BmCLJVpOkcN/a-note-from-bethesda-game-studios
2•agluszak•22m ago•0 comments

Crosswords but using a graph instead of a grid

https://constellate.day/
1•imtoosly•23m ago•0 comments

FFmpeg gets 1.372x faster RGB24-to-RGBA conversion with AVX-512

https://www.phoronix.com/news/FFmpeg-AVX-512-1.372x
1•logickkk1•23m ago•0 comments

Self-Hosted Dynamic DNS

https://akr.am/blog/posts/self-hosted-dynamic-dns
3•Brajeshwar•27m ago•0 comments

Less Is More: Why Audio on SoundCloud Looks Different

https://developers.soundcloud.com/blog/less-is-more-why-soundcloud-low-passes-its-aac-transcodings/
4•1317•27m ago•1 comments

(Ab)Using Overload Sets to Create Ad-Hoc Template APIs in D

https://blog.dlang.org/2026/07/19/abusing-overload-sets-to-create-ad-hoc-template-apis/
2•WalterBright•28m ago•1 comments

A Tribute to Lorenzo Kristov: Designing the Grid from the Community Up

https://energyempirepodcast.substack.com/p/a-tribute-to-lorenzo-kristov-designing
1•mooreds•30m ago•0 comments

I have built a full-page screenshot tool with a built-in editor

https://chromewebstore.google.com/detail/scrollshot-pro-–-full-pag/lpelhlcjkdegabhilgaapjbneolg...
1•zzivic•30m ago•0 comments

Hackers abuse ViPNet software to target Russian govt agencies

https://www.bleepingcomputer.com/news/security/hackers-abuse-vipnet-software-to-target-russian-go...
1•sbulaev•30m ago•0 comments

Who Uses DIDComm?

https://blog.identity.foundation/who-uses-didcomm/
1•mooreds•30m ago•0 comments

AI Requires a Labor Market Bailout

https://www.thecareertoolkitbook.com/blog/ai-requires-a-labor-market-bailout
2•mooreds•30m ago•0 comments

Signal to Noise: The challenge of AI-authored text

https://calmdown13.substack.com/p/signal-to-noise
1•calmdown13•30m ago•0 comments

Nanocodex: Headless Rust Agents SDK

https://github.com/gakonst/nanocodex
1•handfuloflight•35m ago•0 comments

FIAF Disaster Handbook: Preparedness & Recovery for Audio-Visual Archives

https://www.fiafnet.org/pages/Publications/fiaf-disaster-handbook.html
1•mmooss•39m ago•2 comments

O2Ring Analyzer – CLI for overnight pulse-oximetry CSV exports

https://github.com/nighttimecf/o2ring-analyzer
1•warenstein•41m ago•0 comments

Z80 turns 50 as an open-source drop-in replacement nears DIP40 silicon

https://www.tomshardware.com/tech-industry/zilog-z80-turns-50-as-open-source-replacement-heads-fo...
1•logickkk1•44m ago•0 comments

A portal to random weird websites internet toys, and funny pages

https://openweird.com/
1•raytopia•45m ago•0 comments

What I'd Tell My Team About Competition

https://staysaasy.com/strategy/2026/07/16/what-id-tell-my-team-about-competition.html
1•thisismytest•45m ago•1 comments

"Professor" Jiang Is Not a Prophet [video]

https://www.youtube.com/watch?v=yxPd9ckVgck
2•Bender•46m ago•0 comments

Vladimir Putin's Internet Adviser Owns a Torrent Site (2016)

https://torrentfreak.com/vladimir-putins-internet-adviser-owns-a-torrent-site-160119/
4•Cider9986•48m ago•1 comments
Open in hackernews

Show HN: Open-lmake, a scalable, reliable build system with auto dep-tracking

https://github.com/cesar-douady/open-lmake
6•cd_fr91400•1y ago
Hello Hacker News,

I often hear people saying "all build-systems suck", an opinion I have been sharing for years, and this is the motivation for this project. I finally got the opportunity to make it open-source, and here it is.

In a few words, it is like make, except it can be comfortably used even in big projects using HPC (with millions of jobs, thousands of them running in parallel).

The major differences are that: - dependencies are automatically tracked (no need to call gcc -M and the like, no need to be tailored to any specific tool, it just works) by spying disk activity - it is reliable : any modification is tracked, whether it is in sources, included files, rule recipe, ... - it implements early cut-off, i.e. it tracks checksums, not dates - it is fully traceable (you can navigate in the dependency DAG, get explanations for decisions, etc.)

And it is very light weight.

Configuration (Makefile) is written in Python and rules are regexpr based (a generalization of make's pattern rules).

And many more features to make it usable even in awkward cases as is common when using, e.g., EDA tools.

Give it a try and enjoy :-)