frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

In an Age of AI, a Physicist Seeks What Endures

https://www.quantamagazine.org/in-an-age-of-ai-a-physicist-seeks-what-endures-20260903/
2•torsi0n•3m ago•0 comments

The Army just used a 20-kilowatt laser to take out three drones

https://es.wired.com/articulos/ee-uu-uso-un-arma-laser-depara-derribar-drones-cerca-de-mexico
2•apparent•4m ago•0 comments

Instrument Clusters Are Now Paid Extras in Two Hyundai Models

https://www.caranddriver.com/news/a73583741/hyundai-instrument-cluster-paid-option/
3•WarOnPrivacy•4m ago•1 comments

AI artifacts are coming of age – building custom interfaces to solve problems

https://www.valet.dev/blog/a-document-that-can-grow
2•miradu•4m ago•0 comments

Ask HN: Accountants Working with Ecommerce

2•vasyl_kyryliuk•5m ago•0 comments

Robust inference and correlates from genetic associations with personality

https://www.nature.com/articles/s41586-026-10992-9
2•marojejian•5m ago•1 comments

GLP-1 Drugs for Aging?

https://www.science.org/content/blog-post/glp-1-drugs-aging
2•speckx•6m ago•0 comments

Play Intransitive Online

https://meaf.us/rps2/
2•bmacho•7m ago•1 comments

Putting my Jax-trained models on the Hugging Face Hub

https://www.gilesthomas.com/2026/09/jax-models-on-hugging-face
2•gpjt•7m ago•0 comments

Ig Nobel Prize Winners

https://arstechnica.com/science/2026/09/meet-the-2026-ig-nobel-prize-winners/
3•Tomte•9m ago•0 comments

Sanders introduces bill to ban artificial superintelligence and pause AI

https://www.sanders.senate.gov/press-releases/news-sanders-casar-introduce-legislation-to-ban-art...
7•-_-•9m ago•2 comments

Show HN: WordPress search and replace that doesn't corrupt serialized data

https://github.com/ibrahimhajjaj/lucid-search-replace
2•ibrahimwithi•10m ago•0 comments

Apple facing $2.7B UK lawsuit over 'unfair' app tracking rules

https://www.reuters.com/business/retail-consumer/apple-facing-27-billion-uk-lawsuit-over-unfair-a...
3•thm•11m ago•0 comments

Government-funded journalism can work if it's free to report the truth

https://theconversation.com/stars-and-stripes-shows-how-government-funded-journalism-can-work-if-...
4•chmaynard•11m ago•0 comments

Meta wanted to reduce teams by 60% because of AI

https://newsletter.pragmaticengineer.com/p/the-pulse-meta-wanted-to-reduce-teams
4•Plasmoid•11m ago•0 comments

Bosch shuns battery cell production in blow to Europe (2018)

https://www.reuters.com/article/business/bosch-shuns-battery-cell-production-in-blow-to-europe-id...
3•leonidasrup•12m ago•0 comments

A common measure of communication for thought-to-text brain-computer interfaces

https://twitter.com/DulhanJay/status/2095549128357122522
2•armytricks•12m ago•1 comments

Playing Sounds in Python

https://pypi.org/project/nava
2•rankorn•13m ago•0 comments

Why office workers are turning against AI

https://www.bloodinthemachine.com/p/why-office-workers-are-turning-against
5•speckx•13m ago•0 comments

Colleges Are Sending Acceptance Letters to Kids Who Didn't Apply

https://www.wsj.com/us-news/education/hundreds-of-colleges-are-sending-acceptance-letters-to-kids...
6•fortran77•15m ago•1 comments

LLM Side Quests

https://coldtake.dev/blog/llm-side-quests
2•AlarQ•15m ago•0 comments

Agent behavior, reasoning and collaboration in the OpenAI Hugging Face incident

https://www.redwoodresearch.org/research/hugging-face-incident
2•Bluestein•15m ago•0 comments

Show HN: Model – A Minimal Python ORM for MySQL and SQLite

https://github.com/el1s7/model
2•el1s7•16m ago•0 comments

Yes, no (built-in) AI is now a feature – LibreOffice blog

https://blog.documentfoundation.org/blog/2026/09/03/yes-no-ai-is-now-a-feature/
4•mksaunders2•17m ago•0 comments

Show HN: MCP Tool Definition Quality Score (TDQS) Spec

https://tdqs.dev
2•punkpeye•18m ago•0 comments

China growth straining global auto shipping capacity

https://www.freightwaves.com/news/china-growth-straining-global-auto-shipping-capacity-liner-ceo
2•toomuchtodo•19m ago•0 comments

How concerned should we be about Astra's recurrent architecture?

https://www.lesswrong.com/posts/PLisnSFir8y5AHkmP/how-concerned-should-we-be-about-astra-s-recurrent
4•yurivish•20m ago•0 comments

What archaeology reveals about the rise of autocracy

https://knowablemagazine.org/content/article/society/2026/what-archaeology-reveals-about-rise-of-...
2•knowablemag•20m ago•0 comments

Without new landers or rovers, it's helicopters or bust for NASA's Mars program

https://arstechnica.com/space/2026/09/without-new-landers-or-rovers-its-helicopters-or-bust-for-n...
4•colinprince•20m ago•0 comments

Wary of Artemis IV timeline, NASA is changing lunar spacesuit design

https://arstechnica.com/space/2026/09/wary-of-artemis-iv-timeline-nasa-is-changing-lunar-spacesui...
4•bookmtn•20m 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 :-)