frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Qwen-Image-3.0: Rich Content, Authentic Details, Deep Knowledge

https://qwen.ai/blog?id=qwen-image-3.0
205•ilreb•3h ago•100 comments

New US homeownership measure puts people first

https://www.minneapolisfed.org/article/2026/new-homeownership-measure-puts-people-first
8•throw0101a•22m ago•0 comments

Incremental – A library for incremental computations

https://github.com/janestreet/incremental
250•handfuloflight•8h ago•45 comments

Who's afraid of Chinese models?

https://stratechery.com/2026/whos-afraid-of-chinese-models/
723•mfiguiere•1d ago•530 comments

Kimi Work

https://www.kimi.com/products/kimi-work
592•ms7892•19h ago•248 comments

Jelly UI: Soft-body physics for native HTML form controls

https://jelly-ui.com/
544•baldvinmar•19h ago•162 comments

Arduino Launches Plug-and-Play Modules for Long-Range Sensor Projects

https://www.allaboutcircuits.com/news/arduino-launches-plug-and-play-modules-for-long-range-senso...
34•WaitWaitWha•3d ago•12 comments

Human mathematicians are being outcounterexampled

https://xenaproject.wordpress.com/2026/07/20/human-mathematicians-are-being-outcounterexampled/
376•artninja1988•17h ago•168 comments

Running Doom on Our Custom CPU and Going Viral

https://www.armaangomes.com/blogs/doom/
90•arghunter•8h ago•20 comments

How to pack ternary numbers in 8-bit bytes

https://compilade.net/blog/ternary-packing
37•JoshTriplett•6d ago•19 comments

The Growing Compute Shortage

https://www.apollo.com/wealth/insights-news/insights/2026/06/growing-compute-shortage
49•dmitriy_ko•4d ago•43 comments

Nativ: Run frontier open models locally on your Mac

https://blaizzy.github.io/nativ/
299•aratahikaru5•18h ago•102 comments

Python 3.15's Ultra-Low Overhead Interpreter Profiling Mode – Ken Jin's Blog

https://fidget-spinner.github.io/posts/ultra-fast-tracing.html
8•rbanffy•6d ago•0 comments

Show HN: Immersive Gaussian Splat tour of grace cathedral, San Francisco

https://vincentwoo.com/3d/grace_cathedral/
197•akanet•16h ago•44 comments

VTubing: How a Japanese Phenomenon Is Going Worldwide

https://www.tokyodev.com/articles/vtubing-how-a-japanese-phenomenon-is-going-worldwide
48•pwim•8h ago•31 comments

A Koi Pond Mosaic Made from 10 Pounds of 3D Printer Waste

https://www.instructables.com/A-Koi-Pond-Mosaic-Made-From-10-Pounds-of-3D-Printe/
43•sudo_cowsay•8h ago•36 comments

I wrote an bash enumerator because I was sick of xargs

https://numerlab.org/2025/07/20/bashumerate-enumerator/
151•wallach-game•16h ago•134 comments

Agent swarms and the new model economics

https://cursor.com/blog/agent-swarm-model-economics
220•jlaneve•18h ago•99 comments

Show HN: Ex Situ – Open-source spatial index of displaced cultural artifacts

https://exsitu.app/map
38•hbyel•7h ago•24 comments

Launch HN: Bloomy (YC S26) – AI-powered mastery learning for K-12

90•alexsouthmayd•19h ago•92 comments

China’s open-weights AI strategy is winning

https://werd.io/american-ai-is-locked-down-and-proprietary-its-losing/
1140•benwerd•22h ago•860 comments

The Psychology of Software Teams

https://www.routledge.com/The-Psychology-of-Software-Teams/Hicks/p/book/9781032963389
110•dcre•5d ago•32 comments

You only need the frontier model for one single edit

https://stencil.so/blog/prewalk
174•jxmorris12•6d ago•52 comments

I Stopped “Creating Content”

https://refactoringenglish.com/blog/why-i-stopped-creating-content/
204•mtlynch•20h ago•159 comments

Shinjuku Station in 3D

https://satoshi7190.github.io/Shinjuku-indoor-threejs-demo/
239•Gecko4072•22h ago•53 comments

Perfection is not over-engineering

https://var0.xyz/posts/perfection-is-not-over-engineering.html
252•var0xyz•22h ago•111 comments

The Power of Awareness: Overcoming Surveillance Capitalism

https://www.scottrlarson.com/presentations/overcoming-surveillance-capitalism-with-awareness/
124•trinsic2•16h ago•23 comments

Jellyfin founder Andrew leaves team

https://forum.jellyfin.org/t-project-leadership-changes
275•swat535•13h ago•234 comments

Corners Don't Look Like That: Regarding Screenspace Ambient Occlusion (2012)

https://nothings.org/gamedev/ssao/
177•firephox•21h ago•72 comments

Hacker wipes Romania's land registry database

https://news.risky.biz/risky-bulletin-hacker-wipes-romanias-entire-land-registry-database/
662•speckx•22h ago•371 comments
Open in hackernews

A PHP server that can handle 10x as many concurrent requests as Nginx+PHP-fpm

https://github.com/Qbix/webserver/blob/main/README.md
27•EGreg•10h ago

Comments

oriettaxx•7h ago
I am very curious about it

it looks great, but too new of course: waiting for others'feeds

blain•5h ago
I wonder if it would be possible to run Wordpress on this. The issue with Workermen or Swoole is that they doesnt provide request data through globals and some headers are absent which Wordpress is a heavy user of.
andai•5h ago
Several of the WordPress sites I've worked on were CPU bottlenecked, so I'm not sure if this would have helped. (We had one that took 10+ seconds to build the page... I joked that we were running a static site generator on each HTTP request. My joke was not appreciated!)
znpy•4h ago
> so I'm not sure if this would have helped.

maybe not on cpu but surely on memory

EGreg•48m ago
Should absolutely be possible, yes. What headers are usually missing?
edelbitter•5h ago
At the expense of being unreachable if a single client does not play nice?
EGreg•4h ago
Not at all. You are probably thinking of evented programming that happens in Node, Swoole or FrankenPHP. Qbix server makes sure each PHP process is isolated, so you also don’t leak any memory or secrets across requests.

Out of all runtimes powering web servers today, I like PHP the most for its shared-nothing architecture, preventing a whole lot of security bugs by default. I think making it evented for HTTP is clutching defeat from the jaws of victory. You win very little, because most web servers code is I/O bound.

With 8GB RAM and no virtual memory swapfile, Qbix Server allows you to handle, say, 1600 concurrent HTTP requests and 40,000 websocket connections simultaneously, so having an HTTP handler PHP process exit and be respawned via fork is cheap (0.5ms to reset it to a state with all the bootstrap already done). Processes simply yield when doing I/O and you let the OS handle the I/O waiting instead of green threads in an event loop. It’s almost as fast, and frankly, dynamic PHP can be 2% or less of all your requests, when you start aggressively sending Cache-Control headers causing this Qbix webserver to cache your PHP results, as well as nginx/varnish and CDNs upstream too.

sceptic123•4h ago
I'm curious on the goal of releasing software like this, it's making some crazy claims right out of the gate, but is obviously not production ready or battle hardened. There's some reasonably obvious security issues and not a single test of any kind in the project.
bfoag•3h ago
I could understand your criticism if this was link to a flashy marketing page or a blatant attempt to sell something - but this is a github repo with an MIT license, what exactly is the problem?

I have no particular interest in using this piece of software, but I would still celebrate and defend the notion that people can have little ideas like this, get something working and then share it with others to move forward with.

sceptic123•2h ago
I'm questioning what the purpose is of pushing it at this point in the project lifecycle. It may not have a fancy website but it is making flashy marketing claims in that readme. How about being upfront about the maturity of the project before making the kind of comparisons that it does.
mixdup•58m ago
I mean this thing is "Part of the Qbix platform" and there is an offer to sell services related to the "Qbix platform"
EGreg•51m ago
The goals are several:

1. To share an innovation we developed for ourselves, that can help the wider PHP community (after all, 80% of the Web still runs on PHP!)

2. To pioneer a new approach that can help a bunch of people, like Caddy or FrankenPHP had once pioneered its own approaches

3. To show that PHP by itself can be enough to not only build a decent web server, but actually surpass NGINX together with PHP-FPM both in memory and speed, which surprised us. The memory particularly turns out to be the bottleneck and Qbix Server finally helps solve the 10K issue for PHP!

4. To make a new and very simple way to cleanly build websites and APIs that leverage both HTTP Requests and WebSockets: simply drop appropriately named files in the right places! It is optionally opinionated so the shapes of new codebases using the server, instead of all being ad-hoc, can be standardized along the same lines our own are.

5. To get feedback from the HN community. Speaking of that:

Could you please list the reasonably obvious security issues, so they can be fixed?