frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Navier-Stokes fluid simulation explained with Godot game engine

https://myzopotamia.dev/navier-stokes-fluid-simulation-explained-with-godot
1•myzek•51s ago•1 comments

US Court Summons Pro-Censorship Brazil Judge Moraes in Rumble Lawsuit

https://reclaimthenet.org/us-court-summons-moraes-in-rumble-lawsuit
3•anonymousiam•2m ago•0 comments

Why some children have iPad-induced rage

https://www.thecut.com/article/children-tech-tantrums-psychology-parenting.html
2•bookofjoe•4m ago•2 comments

American Airlines to install Starlink, the fastest Wi-Fi in the sky

https://news.aa.com/news/news-details/2026/American-to-install-Starlink-the-fastest-Wi-Fi-in-the-...
3•madjam002•4m ago•0 comments

Why did T. rex have tiny arms? A new study may finally have the answer

https://www.cnn.com/2026/05/25/science/t-rex-tiny-arms-function
2•breve•5m ago•0 comments

Agile V: Turning AI Agents into Verifiable Engineering Systems

https://github.com/Agile-V/agile_v_skills
1•kochc•6m ago•0 comments

Investigating the hidden moat behind all the LLM apps

https://simianwords.bearblog.dev/investigating-the-hidden-moat-behind-all-the-llm-apps/
1•simianwords•7m ago•1 comments

The Collaborative Exoskeleton of AI Science

https://asimovaddendum.substack.com/p/the-collaborative-exoskeleton-of
2•JohnHammersley•8m ago•0 comments

Microsoft Lens 3.8B-parameter text-to-image diffusion model

https://github.com/microsoft/Lens
1•lastdong•9m ago•0 comments

Chinese Astronauts May Build a Base Inside a Lunar Lava Tube

https://www.universetoday.com/articles/chinese-astronauts-may-build-a-base-inside-a-lunar-lava-tube
2•CGMthrowaway•10m ago•0 comments

Germany's regulator considers rule requiring platforms to boost "trusted" media

https://apollo-news.net/so-bauen-die-medienanstalten-an-einer-pflicht-zur-bevorzugung-verlaesslic...
1•CGMthrowaway•11m ago•0 comments

The End of Coding as a Profession

https://mikkersten.substack.com/p/the-end-of-coding-as-a-profession
3•azhenley•11m ago•0 comments

University of California IT employees form biggest tech worker union in the US

https://www.bloodinthemachine.com/p/they-just-formed-the-biggest-tech
1•cdrnsf•12m ago•0 comments

My Deaf Experience in Japan

https://www.tokyodev.com/articles/my-deaf-experience-in-japan
1•pwim•13m ago•0 comments

Amber Alert Sends Spam URL

https://idiallo.com/byte-size/amber-alert-with-spam-link
2•firefoxd•14m ago•1 comments

AGA on AmiCube is finally running

https://www.youtube.com/watch?v=xomKSwgBA08
1•doener•16m ago•0 comments

From Rust to Ruby

https://xlii.space/eng/from-rust-to-ruby/
2•xlii•19m ago•0 comments

Transpiler : The best of every language, in one. And LLM ready

https://amalgame.me/en/
1•bmouget•19m ago•0 comments

Geometry Dash triggers were too hard, let's use assembly instead [video]

https://www.youtube.com/watch?v=FvMM29MO1qw
1•Jotalea•22m ago•0 comments

France24 live stream is down

https://www.france24.com/en/live
3•lastdong•24m ago•1 comments

Show HN: MPEE – Offline route calculations and optimization

https://github.com/punnerud/mpee
2•punnerud•25m ago•0 comments

Nexus – open-source AI gateway for enterprise LLM traffic

https://github.com/AlphaBitCore/nexus-gateway
3•jjrhodes•25m ago•0 comments

Bouncy Castle Communism Is the Solution

https://www.laborpolitics.com/p/bouncy-castle-communism
3•mooreds•30m ago•1 comments

The Tail End (2015)

https://waitbutwhy.com/2015/12/the-tail-end.html
2•chistev•30m ago•0 comments

VoIP service provider anti-patterns (2019)

https://blog.evaristesys.com/2019/08/22/voip-service-provider-anti-patterns/
1•mooreds•31m ago•0 comments

Pavona open source sillicon ecosystem

https://pavona.org/
1•RealityVoid•33m ago•1 comments

The Five Pillars of AI Agent Accountability

https://www.tigera.io/blog/the-five-pillars-of-ai-agent-accountability-a-diagnostic-framework-for...
2•baroiall•34m ago•0 comments

Building a safe, effective sandbox to enable Codex on Windows

https://openai.com/index/building-codex-windows-sandbox/
1•gmays•39m ago•0 comments

Show HN: Visual composer for Claude Code multi-agent workflows

https://github.com/fayzan123/claude-workflow-composer
2•FayzanMalik•39m ago•0 comments

Show HN: I turned my personal website into a bash shell (with Vim)

https://darrikonn.com
2•darrikonn•41m ago•1 comments
Open in hackernews

Docker on Windows Server Felt Easier After I Tried VisualDock Server

https://www.virtualizationhowto.com/2026/05/docker-on-windows-server-finally-felt-easier-after-i-tried-visualdock-server/
7•chemodax•43m ago

Comments

akotti•28m ago
Having an AIO installer is a nice thing. On Windows, the Microsoft recommended way is the install-docker-ce.ps1 script without an ability to do an actual upgrade other than with full uninstall/reinstall.
chemodax•19m ago
Maybe an unpopular opinion, but I am missing the old Microsoft these days. How did we end up in the world where technologies like Windows Installer are replaced with PowerShell scripts that downloads software from the Internet?
rinrab•15m ago
Haha, I might have written almost the same thing but late by 2 minutes :)
rinrab•11m ago
What has changed since these days of Microsoft? I’m pretty sure when it came to setting up complicated systems, you had to follow a 158 pages document with all dialogs you had to click to (if you’re lucky enough to have a document like this)

In this sense a predictable powershell script is IMO an improvement

chemodax•6m ago
May be it's a fashion? Like using Electron/Edge for Start Menu.
akotti•8m ago
Writing a script has always been simpler than making a proper installer, because you need to adhere to various transactional rules, implement a proper rollback mechanism, worry about making your components have correct keys that still work after an upgrade. And e.g. if you need to install a Windows service, most of the standard options (even those provided by Wix) don't cover all cases out of the box. So to some extent using a script means replacing a more complex, but complete solution with an ad-hoc thing that may work in general, but fails a lot of corner cases.
chemodax•49s ago
One quite convenient thing is that Windows Installer packages can be installed via Group Policy, making deployment for new nodes work like a charm. How is a sysadmin supposed do this with scripts?
rinrab•16m ago
I personally don’t understand overall situation of software development that we ended up at. Why do we need third parties to package software products? I think it’s made so complicated for devs when you have to take care of million different platforms and each of them makes it so painful to package for.