frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Microsoft exec called AI scraping 'the largest theft of labor in human

https://techcrunch.com/2026/09/17/microsoft-exec-called-ai-scraping-the-largest-theft-of-labor-in...
1•sbulaev•1m ago•0 comments

NASA satellite discovers a new crater on the moon bigger than the Colosseum

https://www.cbc.ca/news/science/new-crater-moon-9.7348242
1•BiraIgnacio•6m ago•0 comments

Forget doomsday: The AI hacking crisis is here

https://www.axios.com/2026/09/17/ai-cyber-doomsday-hacking-threats
1•1vuio0pswjnm7•7m ago•1 comments

Base's B20 Bet Is Growing – Could the Next Billion-Dollar Project Be Built Here?

https://predx-article.fika.bar/base-s-b20-bet-is-getting-bigger-could-the-next-billion-do-01M2PW9...
1•joeymabia1•14m ago•0 comments

The FAA's plan to fix air traffic? $875M worth of AI

https://techcrunch.com/2026/09/17/the-faas-plan-to-fix-air-traffic-875-million-worth-of-ai/
3•danso•19m ago•0 comments

Red and Blue America Have Found Something to Agree On: Flock Cameras Must Go

https://www.wsj.com/us-news/red-and-blue-america-have-found-something-to-agree-on-flock-cameras-m...
5•johncole•19m ago•0 comments

LawConnect

https://lawconnect.com/en-au
1•oliviajameslaw•25m ago•1 comments

Email marketing from Grok Bot official integration

https://twitter.com/Migma_AI/status/2100617616704295197
1•AdamMigma•27m ago•0 comments

OSU's Bag Man - What was his bag, man?

https://oregonstater.org/osus-bag-man/
1•pseudolus•27m ago•0 comments

Mistral Hacked

https://frenchbreaches.com/blog/mistral-ai-de-nouveau-piratee-un-hacker-revendique-la-totalite-de...
2•orixilus•28m ago•0 comments

Dear developers, we are open‑sourcing our dictation app, Blurt

https://www.assemblyai.com/blurt
1•iharnoor•31m ago•0 comments

Can an AI chatbot save lives by answering texts about pregnancy?

https://www.npr.org/2026/09/17/nx-s1-5962840/artificial-intelligence-ai-chatbot-pregnancy-materna...
2•robglick•31m ago•0 comments

Publishers block the robots.txt path their own affiliate redirects live on

https://disclosed.info/the-index/
1•nchzingo•33m ago•0 comments

Productivity Effects Across Generations of AI Coding Tools

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6843118
1•fzliu•34m ago•1 comments

Talk to JEV

https://github.com/mkotlikov/jev-grug
1•mkotlikov•34m ago•0 comments

Typing Python, Gradually [video]

https://www.youtube.com/watch?v=eZbLUgy522s
1•matt_d•40m ago•0 comments

PPPlayer – An open-source music player built with Flutter

https://ppplayer.com
1•lucasveneno•41m ago•0 comments

We Need to Rewild the Internet (2024)

https://www.noemamag.com/we-need-to-rewild-the-internet/
2•jcbhmr•41m ago•0 comments

Egglog and Equality Saturation in a Production Tensor Compiler

https://egraphs.org/meeting/2026-09-17-luminal
1•matt_d•42m ago•0 comments

Fix It in Post

https://chuang.oncemarked.com/fix-it-in-post
1•ovspianist•42m ago•0 comments

Tech continues to be political (2025)

https://www.miriamsuzanne.com/2025/02/12/tech-ai-wtf/
1•jcbhmr•43m ago•0 comments

SHOW HN: I built the fastest PHP webserver in the world

2•EGreg•49m ago•1 comments

Show HN: A repo-aware architecture checkup for Rails apps

https://railsbaseline.com/checkup/run/
1•polysaturate•50m ago•0 comments

EA Safety

https://contraptions.venkateshrao.com/p/ea-safety
1•martialg•52m ago•0 comments

Union Alpha is Unbiased's Pareto

https://openrouter.ai/unbiased/pareto
1•algoth1•52m ago•1 comments

Show HN: 500 TB internet index in ClickHouse, with congestion pricing

https://scry.io/
3•Xyra•52m ago•0 comments

Jev was trained on 100% synthetic data

https://twitter.com/CompleteSkeptic/status/2100617775823966680
2•doh•54m ago•0 comments

Reimagining research papers as interactive and reliable AI agents

https://www.nature.com/articles/s41586-026-11044-y
3•bucket2015•54m ago•0 comments

Is-odd-jev – check if a number is odd, with a calibrated probability

https://github.com/alxcrt/is-odd-jev
1•alxcrt•1h ago•0 comments

Zeek 9 – Zeek Network Security Monitor

https://zeek.org/2026/09/introducing-zeek-9/
2•happyopossum•1h ago•0 comments
Open in hackernews

SHOW HN: I built the fastest PHP webserver in the world

2•EGreg•49m ago
After over a decade of writing apps in PHP, I always wondered why we needed all that extra tooling around it just to serve websites. I suspected PHP alone could be faster. I didn’t realize how right I was.

It’s finally done! Two months after I initially announced it, Qbix webserver 1.2 is out. It is written in pure PHP, meaning you can run web applications without nginx for serving files and websites, certbot for certificates, cron for periodic tasks, node for realtime sockets, etc. It comes out of the box with a user friendly dashboard and control panel, too. There are even standalone binaries you can download for Linux and MacOS that can contain your entire web application:

https://qbixserver.com

Originally it was much faster than php-fpm, but now it is also faster than even the fastest PHP runtimes. And unlike those runtimes, it is able to run existing PHP apps without modification!

First, how it can be this fast:

The vast majority of PHP apps make blocking I/O calls (to the database, files, network calls etc) While that happens, the thread is blocked.

FrankenPHP, Swoole, amphp and others take the “evented” approach which is much faster, but require all I/O calls to be rewritten to use their async libraries. But most existing PHP code would need a lot of work to be ported to async style, and even if it was, sometimes the async libraries don’t handle everything the mainstream ones do.

Qbix Webserver takes a different approach: it spawns hundreds, sometimes thousands of processes on Linux, Mac etc. When a process is blocked waiting on I/O, the rest of the application can handle thousands of concurrent users.

The reason this works is that that Qbix server allows apps to preload files and classes before it forks the worker processes. It can do this while being written in pure PHP.

While php-fpm can prefork workers, this causes each worker to take up a lot of memory, eg 40MB, duplicating all the bytecode from your entire framework and app. By contrast, Qbix Webserver is able to spawn workers that are around 140KB each for a typical Wordpress app. This is because pcntl_fork on Linux and MacOS only copies on write, so 4-16KB memory pages are only copied when you make a change to a variable. If all the variables are on one page (eg in one array) you can even have workers weighing 4-16KB total, allowing you to run TENS OF THOUSANDS of workers on a 4GB machine.

If you use composer install amphp, your code will use epoll instead, causing your app on Qbix Server to be even more efficient.

Second, the other features:

This is 2026. It would be great if your PHP was able to work with the latest socket.io and handle rooms and socket connections. Imagine a chat server that’s entirely in memory, and also able to handle 40,000 simultaneous users and connections.

Well, now you can. Qbix Webserver handles HTTP Requests, Websockets and rooms, even HTTP Push (for streaming AI tokens etc).

It also can manage your TLS certificates, run cron jobs, and more.

It supports headers like X-Accel-Redirect which lets you serve files with access control done by your app. (Though these aren’t as fast as nginx because PHP lacks support for sendfile, so if you want additional 2x boost in speed for protected static files, you should proxy these headers to NGINX. For public static files, just use a CDN.)

It even supports something new I invented, X-Cache-Tree allowing your code to cache parts of a webpage. Yes, that’s right — you are no longer required to render an entire page again if only a couple parts of it got invalidated. The X-Cache-Invalidate header can intelligently invalidate many pages at the same time!

How do I try it?

Visit qbixserver.com and grab the actual server. Launch it with PHP, and use the visual dashboard in your browser to manage your apps. Enjoy! It’s MIT licensed.

Comments

NuclearPM•20m ago
I like the idea of this, but PHP is such an ugly language.