frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

DeepSeek open-sources inference optimizations with 60–85% faster generation [pdf]

https://github.com/deepseek-ai/DeepSpec/blob/main/DSpark_paper.pdf
4•aurenvale•2m ago•0 comments

The White House's post-quantum executive order is an important milestone

https://blog.cloudflare.com/post-quantum-eo-2026/
1•taubek•3m ago•0 comments

Beer CSS – Build material design in record time

https://www.beercss.com
1•Seb-C•15m ago•0 comments

Show HN: Fognitix – an autonomous desktop browser that drives itself

https://www.fognitix.com/
1•fognitix•16m ago•0 comments

Show HN: Waitlio – The waitlist software for your next launch

https://waitlio.com
1•543310•16m ago•0 comments

An extension of the traditional PDF standard

https://github.com/AlexandrosGounis/pdfx
1•SVI•16m ago•0 comments

JEP Draft: Deprecate the macOS/X64 Port for Removal

https://openjdk.org/jeps/8386091
1•Tomte•19m ago•0 comments

NYC's last horse track, Aqueduct, ending live races

https://apnews.com/article/nyc-horse-racing-track-closing-aqueduct-c52bac4978ba99d2c921408ffdf05f13
1•geox•29m ago•0 comments

What Everyone Gets Wrong About AI and Learning [video]

https://www.youtube.com/watch?v=0xS68sl2D70
1•thunderbong•32m ago•0 comments

How much does a token cost?

https://www.erikjs.com/experiences/llm-token-counter
1•csgod•35m ago•0 comments

A New Fossil Discovery Just Rewrote 150 Years of Evolutionary Theory

https://www.404media.co/a-new-fossil-discovery-just-rewrote-150-years-of-evolutionary-theory/
1•susiecambria•41m ago•0 comments

The "Digital Cash Envelope": Making Crypto Gifting as Easy as Cash

https://www.indiehackers.com/post/the-digital-cash-envelope-making-crypto-gifting-as-easy-as-cash...
1•mybucks_online•46m ago•0 comments

Eyes Do More Than See (1965) – Isaac Asimov

http://www-graphics.stanford.edu/~tolis/toli/other/eyes.html
1•kegenaar•47m ago•0 comments

Fine-tuned a model on Advaita Vedanta text

https://huggingface.co/aaravshirpurkar/turiya-model
2•aaravshirpurkar•50m ago•1 comments

Plane slams into Beijing's tallest building, sends debris raining down [video]

https://www.youtube.com/watch?v=YNJYR_HE8uo
2•Imustaskforhelp•53m ago•0 comments

Search SDK – Integrate web search into agents

https://search-sdk.dev/
1•haxzie•55m ago•0 comments

Sequence Modeling with CTC

https://distill.pub/2017/ctc/
1•diginova•57m ago•0 comments

WebSite Grader and Analytics for Small Businesses

https://stackra.app/
1•LBeck84•58m ago•0 comments

Show HN: PhoneCode: Local-First ADE Running Natively on Android

https://github.com/dttdrv/phonecode
1•dttdrv•59m ago•0 comments

A model-free runtime that holds photonic/quantum hardware steady under drift

https://compute.neophotonics.ca/
1•quantumbum•1h ago•0 comments

Higher rate limits on the Claude API

https://platform.claude.com/docs/en/api/rate-limits
1•thedebuglife•1h ago•0 comments

Show HN: Cyclearchive.com – search vintage cycling magazines

https://cyclearchive.com/search/
1•alastairr•1h ago•0 comments

How to evaluate multimodal VLMs for your video use case

https://labs.videodb.io/research/how-to-evaluate-multimodal-vlms-for-your-video-use-case
1•notTechy•1h ago•0 comments

Show HN: Brytlog – AI logger

https://github.com/Guy-Sela/brytlog
1•guy-sela•1h ago•0 comments

The US lock of the Web – ache

https://ache.one/notes/the-us-lock-of-the-web
3•abdelhousni•1h ago•0 comments

World Cup fans frustrated by 'confusing and expensive' tipping culture in US

https://www.bbc.com/news/articles/clyxgjykx7lo
8•theanonymousone•1h ago•2 comments

I owe my life to a 1913 road rage incident

https://blog.plover.com/2026/06/27/#andor
2•Tomte•1h ago•0 comments

Early Computer Viruses Spread Before the Internet

https://comuniq.xyz/post?t=1328
1•01-_-•1h ago•0 comments

Ask HN: Has Ilya Sutskever spoken publicly lately?

4•aurenvale•1h ago•0 comments

The Calculator Discipline – AI-Assisted Disclosure Hallucinations

https://zenodo.org/records/20393083
1•ethical•1h ago•0 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 :-)