frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Halo BCA chat WhatsApp 0817395377

1•SirTrip•21s ago•0 comments

LLMs and the Semantic Revolution

https://apenwarr.ca/log/20251120
1•flancian•1m ago•0 comments

Why I Wrote Rmlx

https://hughjonesd.github.io/why-I-wrote-Rmlx.html
1•dash2•2m ago•0 comments

Quantum physicists have shrunk and "de-censored" DeepSeek R1

https://www.technologyreview.com/2025/11/19/1128119/quantum-physicists-compress-and-deconsor-deep...
1•donutloop•3m ago•0 comments

Cara Akses halo-BCA menggunakan layanan Call center WhatsApp 24 jam

1•SirTrip•4m ago•0 comments

Layanan Halo BCA Segera Hubungi Call Center Bank BCA

1•SirTrip•6m ago•0 comments

IBM: Scaling beyond our roadmap with networked quantum computers

https://www.ibm.com/quantum/blog/networked-quantum-computers
1•donutloop•6m ago•0 comments

IBM and Cisco Announce Plans to Build a Network of Quantum Computers

https://newsroom.ibm.com/2025-11-20-ibm-and-cisco-announce-plans-to-build-a-network-of-large-scal...
1•donutloop•6m ago•0 comments

So Long, Firefox, Part One

https://hackaday.com/2025/11/20/so-long-firefox-part-one/
1•HotGarbage•9m ago•0 comments

Cara Hubungi Layanan Bank BCA

1•tafseerkhazi•12m ago•1 comments

Show HN: Chaotic version of Flappy Bird coded 100% by Gemini 3.0

https://chaos-flappy.pagey.site/
2•freakynit•12m ago•0 comments

Halo BCA Hubungi 62.817.395.377

1•tafseerkhazi•14m ago•0 comments

Show HN: Git-evac – Offline Desktop App, JS free and written in Go with WebASM

https://github.com/cookiengineer/git-evac
1•cookiengineer•17m ago•0 comments

US economy adds 119,000 jobs in September as unemployment rate rises

https://www.aljazeera.com/economy/2025/11/20/us-economy-adds-119000-jobs-in-september-as-unemploy...
1•mgh2•18m ago•0 comments

AI Mathematical Olympiad – Progress Prize 3

https://www.kaggle.com/competitions/ai-mathematical-olympiad-progress-prize-3/overview
2•nabla9•22m ago•0 comments

AI-Assisted Reverse Engineering with Ghidra

https://github.com/biniamf/ai-reverse-engineering
1•mars_wonder•27m ago•1 comments

Show HN: Datamorph – A clean JSON ⇄ CSV converter with auto-detect

https://datamorphio.vercel.app
1•sumit_entr42•28m ago•0 comments

Study finds 41% of EV drivers would avoid Tesla over politics

https://techxplore.com/news/2025-11-ev-drivers-tesla-politics.html
2•pjmlp•29m ago•0 comments

Olmo 3: Charting a path through the model flow to lead open-source AI

https://allenai.org/blog/olmo3
3•mseri•35m ago•0 comments

Docs.python.org – Major Outage

https://status.python.org
2•no-reply•35m ago•0 comments

There's always going to be a way to not code error handling

https://utcc.utoronto.ca/~cks/space/blog/programming/AlwaysUncodedErrorHandling
1•ingve•38m ago•0 comments

Dopamine Response Explains Behavior Fatigue Patterns

https://www.legalreader.com/dopamine-response-explains-behavior-fatigue-patterns/
1•XzetaU8•40m ago•0 comments

Show HN: Nano Banana Pro – Next‑gen AI image model playground

https://www.nanobananapro.site
1•bryandoai•42m ago•1 comments

A new, high-definition look at our galaxy

https://nautil.us/new-ai-model-captures-the-milky-way-in-stunning-detail-1248505/
1•I_Nidhi•43m ago•0 comments

Streaming platform Twitch added to Australia's teen social media ban

https://www.bbc.com/news/articles/cx2n2955g10o
2•Erikun•48m ago•0 comments

Hacker claims to steal 2.3TB data from Italian rail group, Almaviva

https://www.bleepingcomputer.com/news/security/hacker-claims-to-steal-23tb-data-from-italian-rail...
3•fleahunter•57m ago•0 comments

Crypto's connections to the rest of the financial system

https://www.reuters.com/business/finance/cryptos-connections-rest-financial-system-2025-11-20/
1•1vuio0pswjnm7•59m ago•0 comments

Brute-Forceable Airline Reservation API Left Passenger Records Vulnerable

https://alexschapiro.com/blog/security/vulnerability/2025/11/20/avelo-airline-reservation-api-vul...
2•thunderbong•59m ago•0 comments

Finding an edge against the robots needs top human expertise

https://www.thetimes.com/business/entrepreneurs/article/prosapient-competitive-edge-human-experti...
1•petethomas•1h ago•0 comments

Tipping Point or Bubble?

https://www.reuters.com/business/tipping-point-or-bubble-nvidia-ceo-sees-ai-transformation-while-...
1•1vuio0pswjnm7•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•6mo 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 :-)