Hikaru is either in a slump or his skill is starting to age: hasn't won Titled Tuesday since November, hasn't won Freestyle Friday this year, came last in Speed Chess Championship, etc.
We'll see how well he does in Candidates this year to see if he's still a top contender. Although I do believe this is his last chance to fight for the world title.
To be clear, "came last in Speed Chess Championship" actually means he came in 4th out of 16. He still made it to the semifinals. Even then he barely lost to Alireza, who is pretty universally considered a top 3 speed chess player. The loss to Lazavik was a lot worse, but it was still a close match against a strong player. He hasn't won a Titled Tuesday this year but he hasn't scored worse than 8/11 and he's still made the top 10. That's not as much of a slump as you imply IMO.
Sure he's still one of the top players, but he's not as strong this year and OP is suggesting he still has an edge against the GOAT, who this year:
- Has won Freestyle WC
- Has won SCC
- Has won 2x Titled Tuesday's
- Has won a Freestyle Friday
Hikaru can snipe a win off Magnus here and there, but I don't think there's any time control or format where he could win a long series of chess matches against Magnus.
He could win bullet. No increment means his years of streaming bullet will let an edge when moving in the endgame, so he just needs to draw out the game long enough to get Carlsen either to 0 or in trouble. Somehow we got a chess format where mechanics matter :)
His record in bullet in the Speed Chess Championship against Carlsen is rather unremarkable, although that is 1+1. Perhaps he would fair better at 1+0.
It isn't a slump at all, really. He had his first kid in December. He's preparing for the Candidates in March. Weekly chess.com tournaments are just, you know, going to be relegated to streaming content for a bit.
He's up there for sure, but not clearly the best. According to him both he and Magnus think Alireza Firouzja is the best in longer matches of multiple bullet games.[0] I suspect he would give the edge to Magnus in a shorter match, but I haven't found evidence for this.
Candidates prep and also the entire Freestyle chess experiment has been a bit of a mess. Here's what he told chess.com[0]:
A few months ago I was invited to the first leg of the 2026 Freestyle Tour with the same format and prize fund. I let everyone know that I'd be playing there.
Just a few days ago I received news that there will be no year-long tour for Freestyle. The format for the only event to be held will be only three days and only rapid formats. Instead of the tour that was planned, Freestyle has joined forces with FIDE and are now calling it a World Championship. I think it might hold the record for most rushed arrangement for a World Championship title in history.
I truly enjoyed the first event in Weissenhaus in 2025, and it's a shame that the classical length format wasn't continued. Furthermore, this all feels like a hastily arranged tournament with less than 1/3rd the prize fund it originally had, and now it's attached to FIDE, which isn't a positive development in my opinion.
Despite many phone calls and messages from the organizer, I have decided to decline my slot in this event. I have an important tournament in the end of March/April to focus on, and that is where my attention will be.
> Hikaru Nakamura, the 2022 Fischer Random World Champion, declined his invitation to the event, citing the changes in the format, rushed arrangement, reduced prize fund, and his focus on the upcoming Candidates Tournament 2026. He said he had been invited to the first leg of the 2026 Freestyle Tour, with the same format and prize fund as the 2025 tour; however, a few days before the announcement of the world championship, he was informed there would be no year-long tour. Instead, only a three-day event with rapid time controls would be held, and it would be called a World Championship. He called it a "hastily arranged tournament with less than 1/3rd the prize fund it originally had", and lamented that the classical length format from the first event in 2025 wasn't continued.
It's a very short, 3 day event: You have Fabi sitting right there in second place, and I don't think anyone is more focused on the candidates than he is.
Hikaru is getting older too, and it shows: I don't think he has a freestyle edge at all.
Well OK then! Let's tell all the physicists they can close up shop now. They might not have realized it, but they're done. All their little "theories" and "experiments" and what not have taken them as far as they can go.
> Let's tell all the physicists they can close up shop now.
Yes, that's part of the plan. I mean, not to all the physicists, just to those whose work doesn't bring in results anymore, and it hasn't for 30 to 40 years now. At some point they (said physicists) have to stop their work and ask themselves what it is that they're doing, because judging by their results it doesn't seem like they're doing much, while consuming a lot of resources (which could have been better spent elsewhere).
We're already in the realm of virtual particles, instantaneous collapse, fields with abstract geometric shape and no material reality, wave particle duality, quantized energy etc. The project of physics was to discover what the universe was made of. None of these things can answer that. If intelligibility was the goal, we lost that. So in an important sense, they might as well have closed up shop. If you're interested in the specific value of a certain property to the nth decimal place, there is work to do, but if you're interested in the workings of the universe in a fundamentally intelligible sense, that project is over with. What they're doing now is making doodles around mathematical abstractions that fit the data and presenting those as discoveries.
By observing the discrepancies between theories we are accessing those layers. Whether we can access them with instruments is a different matter but with our minds we apparently can.
Guix looks really tempting to me because i find guile scheme so much more pleasant than nix. But i heard there are not that many packages in Guix. I wonder if some sort of transpiler from nix derivations to guix package definitions would be possible.
I've never felt the need myself. If something is missing, I add it and I think that is the real fun in running Guix because creating your own well defined package or service is deeply rewarding.
Anyway, you can find people using it in the wild either by search engine[1] or with Toys[2] which is also handy for finding examples of missing packages too.
You can just visit https://repology.org/ and see that GNU Guix has the 5th largest repository, ahead of Fedora and Gentoo. This does not include any proprietary packages, which can be added using https://gitlab.com/nonguix/nonguix (though gitlab seems to be dying for me right now?)
I've been running GNU Guix for five years now, after lots of distro hopping, including to and from NixOS. I left Nix because I found the documentation (particularly regarding the language) to be a struggle to work with (though I imagine it's improved since then).
GNU Guix + nonguix + flatpak is perfectly suitable for everyday use.
The nix language is maximally lazy. It does not evaluate things it does not need to. This is good because you don't want it to burn CPU building things (very expensive expressions!!) that it will ultimately not need for final derivation. I'm wondering if guix scheme is suited well for this task:
(a) evaluation is eager
(b) lots of variable mutation.
But perhaps lazy evaluation and lack of variable mutation in guix scheme is not such a problem after all for a nix _like_ system -- I don't know.
I'm still new to both Guile and Guix, but I've been reading the Guile and Guix reference manuals recently and I think some of your concerns about eager vs. lazy evaluation of packages are addressed by Guile's quoting mechanism, more specifically "quasiquote" [1]. This quoting mechanism allows passing around references to package definitions and whatnot, without actually evaluating those expressions until build time.
Guix extends quasiquote to create something called "G-expressions" [2], which are even more so fitted to something like the Guix/Nix build system.
Im very familiar with Nix or the language, but why would interpreting guile scheme for package management be expensive? What are guix and nix doing that would require evaluating everything lazily for good enough performance?
I checked the spec and Scheme R5RS does have lazy evaluation in the form of promises using "delay" and "force", but I can see why explicitly having to put those everywhere isn't a good solution.
I don't even disagree that nonfree software is bad, but blaming the users who often have no choice in the matter (e.g. drivers) is the wrong way to go.
nonguix is similar to debian's non-free sources. It's also maintained by many of the same contributors to guix. Enabling it is also similar to how you enable it for Debian. I have never seen anyone blamed or shamed for using nonfree drivers by the guix community, which I can say has been a very warm and welcoming community.
but the attitude has been changing recently from active shaming for even mentioning non-free stuff, to passive acceptance of pragmatically pointing a newcomer to nonguix.
That's good to hear. The intolerance to non-guix (or, possibly, my perception that it was intolerance) made me shy away from the project. This was especially so because I use repaired devices with proprietary HW that would otherwise have been binned by their owners.
we need to speak up for common sense. i did, maybe too much even, and it has cost me some standing with the project lead... but it must be done nevertheless!
people need to understand what freedom means. sure, do inform others about the downsides of using non-free stuff... but it's very hard to help freedom by shaming and alienating people for trying to use hardware they already own.
It's a little inconvenient but for example my Framework laptop Intel WiFi chip requires a binary blob and I want aware of this. Now that I am, I can make better hardware purchasing decisions. There are plenty of alternatives that don't require that blob and it's the only thing I need from the no free channel.
Are there really a lot of alternative Wifi chips that don't require closed blobs? Do you have a list?
Are they found in any laptop that is reasonably available on the market?
I don't think that Guix is punishing users by not supporting non-libre hardware. They are making a choice in what they develop and anybody of similar mind can join their effort.
The nonguix folks are practical. It just stinks that nothing ships with a Wifi chip that doesn't require nonguix pragmatism.
Unfortunately, it's hard to be sure when you buy a WiFi device whether it has the right chipset. Also, most laptops come with Intel WiFi, and that requires non-free firmware.
I really don't think you can gain much realistic freedom going without the blob. The powers that be will never let you have a freely modifiable radio transceiver.
The blob is better viewed as a part of the hardware in this case. What's most likely to happen to get rid of the blob is to just put it on the non-modifiable parts of the device. Viewed in this way, the blob is at least something you can practically inspect, unlike the firmware on the chip itself.
They all run proprietary blobs inside and out. It's ridiculous gatekeeping to say that on the kernel level it's bad, but below it I just put my head in the sand and disregard the millions of lines of closed-source code.
IMHO the stupidest GNU policy is that if a proprietary blob is stored on a flash chip in a gadget, it's ok, but if it's transmitted to the gadget at startup, it's not.
Now if we could just get people to combine Guix and other guile scheme packages that are awesome like mcron into their stacks, and then backfeed more fixes into the ecosystem, we have a real chance at helping GNUland!
I compile nix derivations to well-posed effect/coeffect/graded monad algebra so I can do real bill of materials and build on an action cache engine maintained by professionals, but that's mostly for long-tail stuff.
These days with a la carte access to all of the container ecosystem primitives as nice, ergonomic, orthogonal operations I don't really see the value in nixpkgs. Don't really see the value in a container registry either: a correctly attested content addressable store with some DNS abbreviations is 100 lines of code because mostly it's git and an S3 shim.
The category error at the heart of nixpkgs is that the environment in which software is compiled need resemble the environment in which it executes. Silly stuff. So whether you're a patchelf --rpath ... Person or an unshare --bind-mount Enjoyer (isomorphic), just remember, in 2026 the guy with the daemon that runs as root does not want you to have nice things.
Not distracting at all, it feels nostalgic to me. Id rather have these flashy things than a million popups and registration forms following you around, which is basically the modern web. I hate it so much. This site is pure balsam for my soul.
Here is the latest and in my opinion the best interview with Ed Witten [1]
Things he talks about go mostly over my head. What disappointed me a little bit is that he seems to be a materialist. But that is pretty common position among physicists anyway, so not that surprising.
If materialists disappoint you, then you should check out Deepak Chopra, for all your self affirming quantum woo needs and desires. He will make your dreams come true! Just buy lots of his books, and you both will be very happy.
"But as Deepak Chopra taught us, quantum physics means anything can happen at any time for no reason. Also, eat plenty of oatmeal, and animals never had a war! Who's the real animals?" -Professor Hubert Farnsworth
reply