frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

To bot or not to bot: My personal rules of engagement with AI

https://code2yugen.substack.com/p/what-i-use-ai-for-and-what-i-never
1•anukin•1m ago•0 comments

Logic, Rhetoric and Legal Reasoning in the Qur'an

https://www.routledge.com/Logic-Rhetoric-and-Legal-Reasoning-in-the-Quran-Gods-Arguments/Gwynne/p...
1•handfuloflight•1m ago•0 comments

Smartwatch is lying to you about how many calories you burned, Study finds

https://news.fiu.edu/2026/your-smartwatch-is-lying-to-you-about-how-many-calories-you-burned-in-y...
1•DeepLogin•7m ago•0 comments

One-Handed Hyperbolic Clock

https://jpivarski.github.io/hyperbolic-map/clock.html
1•mathgenius•9m ago•0 comments

ChatGPT desktop app bundles a full copy of the LibreOffice

https://twitter.com/simonw/status/2094864223683903800
1•hisamafahri•9m ago•0 comments

Presage – Kubernetes autoscaling that forecasts demand with TimesFM

https://github.com/breezycourses/presage
1•subhamkts•14m ago•1 comments

New Google AI Model Said to Narrow Gap on Coding Ability (Gemini 3.8 Flash)

https://www.wsj.com/tech/ai/new-google-ai-model-said-to-narrow-gap-on-coding-ability-264c6052
1•petilon•17m ago•0 comments

FTC alleges Amazon illegally made $20B by rigging billions of ad auctions

https://arstechnica.com/tech-policy/2026/09/ftc-alleges-amazon-illegally-made-20-billion-by-riggi...
2•kurthr•17m ago•0 comments

BallGOAT – Play a whole football career in 5 minutes

https://theballgoat.com/
1•snowbol•19m ago•0 comments

Coin and Bullion Melt Value Calculators

http://coinapps.com/
1•gregsadetsky•21m ago•0 comments

Perplexity launches privacy-minded 'hybrid compute' AI feature for Mac

https://9to5mac.com/2026/09/01/perplexity-launches-privacy-minded-hybrid-compute-ai-feature-for-mac/
2•DGAP•22m ago•0 comments

FBI Probes Service Selling 153M+ Drivers Licenses

https://krebsonsecurity.com/2026/09/fbi-probes-service-selling-153m-drivers-licenses/
3•tatersolid•22m ago•0 comments

Nvidia's Anthropic Deal: Just Don't Call It 'Circular Financing'

https://www.barrons.com/articles/nvidia-stock-price-anthropic-deal-ai-circular-financing-6be908a3
3•doener•23m ago•0 comments

Show HN: Notes Plus – A Markdown Apple Notes Clone with Latex, Excalidraw etc.

https://notesplus.io/
2•sliqqq•23m ago•0 comments

Google vs. Canva

https://vector.news/google-takes-aim-at-canva/
1•artur_makly•24m ago•0 comments

Improving our alignment and security efforts

https://www.anthropic.com/news/improving-alignment-security-efforts
1•reasonableklout•27m ago•0 comments

Show HN: Secure agentic email infrastructure with beta desktop client

https://github.com/adecubed/gigamail
2•Adecubed•32m ago•0 comments

OpenAI delayed its new model's development after the Hugging Face hack

https://www.theverge.com/ai-artificial-intelligence/987695/openai-astra-unreleased-model-cybersec...
4•sbulaev•33m ago•2 comments

Rust Function Overloading – Call for Experimentation

https://blog.rust-lang.org/inside-rust/2026/08/19/overloading-experiment/
2•birdculture•40m ago•0 comments

The ColorChecker, photography's most important 24 squares, turns 50

https://www.dpreview.com/news/the-colorchecker-photographys-most-important-24-squares-turns-50/
2•sohkamyung•46m ago•0 comments

Open Source Access Control Management Application

https://github.com/Simkura-tech/loudin
1•jackmerrifield2•46m ago•1 comments

World's biggest dark matter detector spots a single weird particle

https://www.science.org/content/article/world-s-biggest-dark-matter-detector-spots-single-weird-p...
3•zzzeek•47m ago•0 comments

Claude Preserved thinking – Modifying a conversation now results in an error

https://platform.claude.com/docs/en/build-with-claude/preserved-thinking
2•sippeangelo•50m ago•0 comments

Don't allow Gemini AI access to your Gmail

https://tuta.com/blog/google-gemini-ai-email
7•bwidlar•51m ago•0 comments

AI Coding Agent Skills for Real Engineers

https://github.com/mattpocock/skills
2•gurjeet•51m ago•0 comments

Copilot code review can now approve pull requests

https://github.blog/changelog/2026-09-01-copilot-code-review-can-now-approve-pull-requests/
1•fourfire•52m ago•0 comments

The Future Is Not Tech-Forward

https://www.thetechbubble.info/p/the-future-is-not-tech-forward
1•doener•54m ago•0 comments

What's within a 10-minute walk in 50 European cities

https://strado.info/
3•bookofjoe•54m ago•0 comments

Library of ODE Solvers

https://solvers.milanrother.com/
3•skywalqer•54m ago•0 comments

How to Build a Notion AI Chatbot for Your Help Center

https://quickchat.ai/post/notion-ai-chatbot-help-center
1•piotrgrudzien•55m 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 :-)