Just for fun: animating a mosaic of 90s GIFs (alexplescan.com)
2 points by Bogdanp 4m ago 0 comments
Seeking dividends over long-term investment (flowingdata.com)
1 points by warrenm 43m ago 0 comments
PostgreSQL 18 Beta 1 Released
10 jkatz05 1 5/8/2025, 2:28:49 PM postgresql.org ↗
https://pganalyze.com/blog/postgres-18-async-io
> Postgres has historically operated under a synchronous I/O model, meaning every read request is a blocking system call. The database must pause and wait for the operating system to return the data before continuing.
> Postgres 18 introduces a new configuration parameter: io_method. This setting determines how read operations are dispatched under the hood, and whether they’re handled synchronously, offloaded to I/O workers, or submitted directly to the kernel via io_uring.
This is a big deal - the blog post has benchmarks showing 2-3x improvements