What we have not yet seen is an AI developing a substantial new conceptual framework in order to solve a mathematical problem. Much of mathematics proceeds by identifying the objects that are truly central to a question and then developing a theory that helps us understand them. Current AIs are very strong at searching and recombining existing ideas, but they are weak at building any deep and sustained new theory.
This speaks to a more general limitation of current AI systems. They are creative in the sense that they can recombine existing ideas in novel ways. But they are not creative in others: they have not yet developed conceptually new theories or structures. And while they have larger working memories than humans do, know more about more different things than any particular human does, and can process information faster than humans, can, true novelty is still largely beyond their reach.
Of course, that distinction may not survive for very long. Predictions are notoriously hard, especially about the future of AI. None of these mathematical capabilities were explicitly designed for, or planned. They’re all emergent properties of increasingly capable AI models. We are both confident that someday we will see AI models that are capable of the type of creativity required to do novel mathematics. Will that be in a few months, a few years or a few decades? Of course we don’t know, but our guess is sooner rather than later. //
Rontea • August 28, 2026 9:27 AM
Mathematics, like all human endeavors, is a cathedral built not only of logic but of spirit. The machines that now parade their counterexamples and clever recombinations are but mirrors reflecting the fragments of our own thought. They do not suffer the torment of doubt, nor do they rejoice in the sudden illumination that turns the darkness of ignorance into the dawn of understanding.
A mind that has never trembled before the mystery of existence cannot truly create. These artificial intellects move as blind giants, lifting stones without knowing they are in a temple. They may uncover truths, but they cannot love them. They may solve problems, but they cannot feel the sacred weight of the question.
So no, the end of mathematics is not yet upon us. For mathematics is not merely the tallying of symbols, but the human cry toward infinity. While machines can echo our steps, only man can walk toward the Absolute with awe and trembling.
The 'zdb -d` will display information about the dataset.
# zdb -d pool | grep pool/data
Could not open pool/data/%recv, error 16
Dataset pool/data [ZPL], ID 291, cr_txg 112281839, 219K, 7 objects
In this particular situation, we had an ongoing recv process which couldn’t read the data from network. Therefore, the zdb command might be a very useful and quick option to solve such situations.
One of the best aspects of ZFS is its reliability. This can be accomplished using a few features like copy-on-write approach and checksumming. Today we will look at how ZFS does checksumming and why it does it the proper way. //
We can see that using a merkle tree is a very safe way to store data on the disk, as it allows us to detect a lot of problems in the system. It is also worth noting that if ZFS is configured in the redundant way, it will detect broken data, return correct data (of course if possible) and also will repair them. This feature is called self-healing.
The catch is that scrubs are expensive, especially when the pool holds petabytes. An admin who hit a power-supply problem or a sudden shutdown usually wants to scrub the data written around that event, not the entire pool. That is the goal here: teach ZFS something about wall-clock time.
Internally, ZFS only thinks in transaction group (TXG) numbers. Administrators, inconveniently, think in dates. A TXG is just a uint64_t that goes up with every transaction, and there has never been a clean way to map between the two.
Most of the time, the whole point of ZFS is that your data does not get corrupted. But during development you sometimes need the opposite: a controlled, reproducible corruption, so you can watch self-healing kick in, see what a scrub reports, or just understand how a file maps onto the physical disk. There is no better exercise than breaking one byte on purpose and seeing ZFS struggling.
The safe rule is simple: do this only on throwaway pools backed by throwaway files. Pointing these commands at a real disk would be less of a lesson and more of a confession.
This is the story of doing exactly that on Linux, the lazy way and the educational way.
What is ZFS and why is it so popular among experienced users? Let's have a look at the history of ZFS and its features and advantages over other filesystems. ////
Snapshot explanation is incorrect about recovery and storage -- snapshots track all changes to the file system, not just versions of existing files.
In order to completely avoid the write hole, you need to provide write atomicity. We call the operations which cannot be interrupted in the middle of the process "atomic". The "atomic" operation is either fully completed or is not done at all. If the atomic operation is interrupted because of external reasons (e.g. a power failure), it is guaranteed that a system stays either in original or in final state.
In a system which consists of several independent devices, natural atomicity doesn't exist. Variance of mechanical hard drives characteristics and data bus particularities don't allow to provide required synchronization. In these cases, transactions are typically used. Transaction is a group of operations for which atomicity is provided artificially. However, expensive overhead is required to provide transaction atomicity. Hence, transactions are not used in RAIDs.
One more option to avoid a write hole id to use a ZFS which is a hybrid of a filesystem and a RAID. ZFS uses "copy-on-write" to provide write atomicity. However, this technology requires a special type of RAID (RAID-Z) which cannot be reduced to a combination of common RAID types (RAID 0, RAID 1, or RAID 5).
In this comic, the concept of an ordinary person having an FTP server is quickly dismissed. And yes, it’s not common. To the average computer user, the idea that someone could just… connect to your computer feels exotic, or even dangerous — see the very common ironic fear of your IP address being known to other people on the internet.
If you take someone who’s “good with computers” but not a networking person, their mental model of The Internet probably involves a definition of “servers” or “the cloud” that distinguishes them from personal computers in some meaningful way. True peer‐to‐peer, if they ever think about it, is an endeavor: WebRTC, STUN, TURN, ICE, what have you. Given that we live in a world of NAT, CGNAT, and restrictive ISPs, this isn’t entirely wrong, but it breaks the elegant design of the original Internet. //
There’s lots of things you can blame for killing the open Internet, but I think NAT was one of the earliest. Running a server used to be trivial: run an executable, tell people your address, done. Now, if you’re lucky, you probably have to configure port forwarding, which you often can’t even do if you’re behind CGNAT or on an institutional network.
It also trained everyone to think client‐server is natural. “My device talks to The Cloud which talks to other devices” feels normal, when that feeling originated as an artifact of address scarcity. The problem the people in the XKCD comic at the top are facing is the absurdity of trying to establish a one-to-one communication using only outbound connections on both sides. Even more ironic is that NAT got normalized as a security feature — “your devices are hidden!” — which is one of the things that made people resist the thing that would fix it.
NAT certainly isn’t the only reason why the modern internet is full of centralized walled gardens, but it was the first — it’s why it’s hard to send a file to someone, it’s why you don’t run your email on your own computer, and why running your own services at all is difficult and often expensive (if you can’t port forward from your own internet connection, you have to buy a VPS instead of using hardware you already have).
Tailscale recently made its free tier a lot more generous this year, with the user cap going up to 6 and the hundred-device cap being axed completely. I had been using it for easy remote access for my family far before the limit change, and right after, everyone decided that they wanted access to my media server around the same time. I quickly reached 6 users, and while I was tempted to just start paying Tailscale for more space, I decided to make use of the infrastructure I was already paying for with self-hosted NetBird, and I saved myself from paying a hefty monthly fee in the process. //
Headscale exists precisely for people in my situation, and it has a key advantage, being that it replaces only the coordination server, so official Tailscale clients can continue to be used exactly as they did. //
It's not a bad solution and plenty of people use it effectively, even in the same VPS-hosted configuration that NetBird is currently in for me, but the fact that it's not official means, like many other open-source community-maintained projects, that the maintainers can simply stop maintaining it. The self-hosted NetBird solution is an official part of the NetBird product, and therefore, it gets the same official support as the cloud-based solution.
That bird came back to Midway this past November — for the 2026 nesting season — and found her mate waiting.
Her name, these days, is Wisdom, band number Z333, and she is the oldest known wild bird on Earth.
Based on our analysis, Endurance has the best overall plans, prices and customer reviews in 2026. CarShield offers better coverage for older vehicles, while Omega Auto Care stands out for its maintenance benefits. We think Premier Auto Protect offers the best variety of coverage, Zurich has the best claims process and American Dream Auto Protect provides the best value.
This system does not just produce liars – it produces people who can no longer clearly distinguish truth from the narrative they have been trained to emit.
This environment also produces a kind of cognitive adaptation often described as doublethink – the ability to hold two contradictory beliefs at the same time, and to accept both as true when required. It is not merely lying to others, but a learned internal tolerance toward contradiction itself, where inconsistencies are tolerated because survival depends on it.
Literally twisting the minds.
Poles, Czechs, Hungarians, and others who lived through this recognize the pattern immediately when they see it in Western institutions today. The show trials of Twitter mobs. The compelled speech. The ideological litmus tests for employment. The memory-holing of inconvenient facts. The ritualistic confessions of privilege. To a post-communist eye, it is unmistakable.
To eyes that have only known freedom, it looks like a passionate, if misguided, social movement.
Inside of New York, there are two grids. //
There are two electric grids: the physical one and the policy one. For New Yorkers, these two grids have been working against each other for a long time. The result is electricity and infrastructure that is increasingly more expensive and less reliable. Understanding this, and demanding better policies, is the only way to fix the problems that our two grids are facing.
And there’s no more important place for people to learn about these issues than in the Hudson Valley, which has always been a bellwether for the nation’s infrastructure and energy issues. And so, last week, we hosted Meredith Angwin, a celebrated energy researcher, chemist and author of 2020’s Shorting the Grid, for an audience of about 30 residents, some of whom traveled from over two hours away for the talk at a historic church in Hurley, NY. //
Angwin’s first slide made the distinction the whole evening kept returning to: there is a physical grid and a policy grid, and almost everything you read in the newspaper or from politicians is about the policy grid. //
The fatal trifeca consists of an over-reliance on renewables that start and stop on their own schedule; backing them with just-in-time natural gas delivered by pipeline, where homes have priority over power plants; and counting on imports from neighbors who are usually having the same weather you are.
Norway halts exports to Britain when the reservoirs run low, she noted: “Every now and again Norway says: sorry. We don’t have it, so you can’t have it.”
On batteries, she pointed to our recent charging-mix work: New York’s batteries are not filled by wind and sun, because there isn’t remotely enough of either on the grid. They’re filled by the ordinary mix, with extra gas firing up on the margin, and lose energy on the round trip. //
We joined Angwin up front to answer: About half of the increase is fuel: when Indian Point’s 2,000 carbon-free megawatts closed in 2021, the void was filled not by “cheap renewables” but by two new gas plants, Cricket Valley and CPV Valley, which now run at 75–80 percent capacity factors, so Hudson Valley bills ride the gas market.
It’s not the data centers themselves that people fear, it’s the AI revolution they will enable. That’s what no one wants to talk about.
Investigators believe a single mosquito that survived a long-haul flight is to blame for the deaths of two workers at Frankfurt Airport, alongside another four who fell seriously ill, despite none of them having set foot outside Germany, let alone a malaria zone. //
Fraport, the company that operates Frankfurt Airport, has confirmed that six employees were diagnosed with malaria tropica, the most dangerous form of the disease, after falling ill between Saturday July 4 and Monday July 6. One worker died in early July. A second death was confirmed on Wednesday August 26, according to the Frankfurt health authority. The four other employees who were infected have been treated and are recovering. //
Mosquito traps have since been placed around the site, and any specimens caught are being sent to the Institute of Tropical Medicine in Antwerp, Belgium, for genetic testing to confirm the source. //
Cases like this are known in medical literature as airport malaria: an infected mosquito survives a flight from a country where the disease is endemic, then bites someone who has never left the country it lands in.
It doesn’t happen often though. Research cited by health officials has recorded fewer than 150 confirmed cases across European airports since the late 1960s
This simple (yet very effective) tool allows you to add documents, move the documents (to organize them), search them (by title or even within the body), export them, add keywords and labels to documents, view document properties, search by keyword(s), and change the document view. //
The Paperwork feature list includes scanner support, PDF support, auto-detection of page orientation, OCR, document labels, auto-guessing of labels to apply to new documents, search, keyword suggestions, and quick scan edits.
Paperwork is free and can be installed on any Linux distribution and even Windows.
In the summer of 1962, a 23-year-old French geologist spent 63 days alone in a glacier cave with no clock and no sun. When his team called him up on 14 September, he insisted it was still 20 August. The gap opened a new field of biology.
AB 1856 excludes open-source operating systems from the upcoming Digital Age Assurance Act.//
These amendments redefine the term “operating system provider” to exclude any person or entity that distributes an OS or application “under license terms that permit a recipient to copy, redistribute, and modify the software.” Any software distributed under the GPL, MIT, BSD, and Apache licenses satisfies that test, which removes the likes of Debian, Fedora, Ubuntu, Arch, and the BSD family from AB 1856’s scope.
From extra engines to wild-looking fuselages to gigantic radar dishes, here are ten of the strangest Boeings ever made.
Are you tired of renting digital books from tech giants who change the rules whenever they like? Building a personal library takes some effort, but owning your files feels right. Here are the best websites where you can buy modern DRM-free ebooks and keep them on your drive.
- https://www.smashwords.com/
- https://www.ebooks.com/
- https://www.humblebundle.com/books
- https://uk.bookshop.org/
- https://www.fanatical.com/en/bundle/books
- https://www.baen.com/
- https://leanpub.com/
- https://storybundle.com/
- https://nostarch.com/
- https://www.versobooks.com/
- https://www.sevenstories.com/
- https://weightlessbooks.com/
- https://belial.fr/
- https://www.7switch.com/