Why the fuck do their help videos have motion blur?
What's next? Shaky cam?
Why the fuck do their help videos have motion blur?
What's next? Shaky cam?
No!
PopOS switched to Cosmic which only just came out.
Recommend PopOS to users with experience, who know how to fix/avoid problems.
But, hold off from recommending PopOS for beginners until around the 27.10 release when most of the papercuts are sanded over.
although I’m a little bit skeptical about having to integrate additional extensions and workflows
Just to allay your fears, it's not a mishmash of random extensions and brittle workflows.
11ty was originally built in a more all-in-one box style, but it was kind of annoying to have 10+ templating languages to choose from (and all the dependencies that came along with them), when you only wanted one.
Every update, the author does two things:
You can see that here: (data taken from here: https://www.11ty.dev/blog/dependency-watch/#full-history)
| Version | Deps (3rd-party) | Change | node_modules Size | Change |
|---|---|---|---|---|
| v0.2.0 (2018 January) First npm release! | ×401 (400) | n/a | 51 MiB | - |
| v0.12.1 (2021 March) | ×362 (360) | -9.70% | 68 MiB | +33.30% |
| v1.0.2 (2022 August) | ×360 (357) | -0.50% | 71 MiB | +4.40% |
| v2.0.1 (2023 March) | ×213 (208) | -40.80% | 35 MiB | -50.70% |
| v3.0.0 (2024 October) | ×187 (174) | -12.20% | 27 MiB | -22.80% |
| v3.1.2 (2025 June) | ×134 (123) | -28.30% | 21 MiB | -22.20% |
| v4.0.0-alpha.1 (2025 July) | ×130 (116) | -2.90% | 16 MiB | -23.80% |
| v4.0.0-alpha.6 (2025 December) | ×105 (89) | -19.20% | 14 MiB | -12.50% |
The first-party plugins are all compatible with each other and all use the same 11ty config with the same sensible defaults, and 11ty is built with all of the first-party plugins in mind.
You can add them all in if you still want the all-in-one-box approach, but this way lets your environments be smaller.
It's basically pre-computed tree shaking.
There's also a security argument for it. By splitting everything apart, you isolate security issues. If one of the random 10+ templating languages got a security issue (e.g. supply-chain attack, redos, misglobbing, etc...), it will only affect the projects that decided to use that templating language.
I haven't used Hugo.
I went with 11ty a few years ago because I wanted to stay as close to the actual web standards as possible (so, HTML/CSS/JS).
The main reason why is that every additional abstraction layer and every invocation of "magic", is just extra hidden complexity which makes things harder to debug, extend, and maintain.
Having a SSG in go/python/rust would have been an extra layer.
The "maintain" point above is something most others don't think about until it comes back to bite them. Nothing is more frustrating than reopening a project that worked fine a few years ago, and even though you haven't changed anything, nothing works, and when trying to update it you end up with Frankenstein's monster.
11ty went out of it's way to remain as simple as possible. Here's your input directory, and here's your output directory. That makes the maintenance and backwards compatibility really easy.
Then you can add the minimum required complexity/abstraction layers only when you need them.
In my case, I use:
I'll say the one thing I don't like about 11ty is that it's written in js, not ts. The author is all about simplicity and reducing layers of complexity. But now typescript has a typescript-lite version with the erasableSyntaxOnly flag, which basically allows it to run on node (deno and bun already ran typescript), so the next version (or one after), may be migrated to typescript.
The --self-extracting flag in deno compile --self-extracting looks awesome.
I could compile my 11ty stack into a single executable that I could send anywhere, but it would still be able to read external markdowns so semi-technical coworkers can make content changes without the maintenance overhead of a CMS and without the coworkers needing to learn modern web dev.
It would also be super awesome for all the internal tools I've built that need to run offline.
CSS has been considered turing complete for a long time.
So this isn't a shocking revelation, but it is cool.
Fork.dev on Windows and Mac
git log vs git log --graph --all --remotes --decorategit fetch vs git fetch --prune --allgit stage -p vs nothing (git cli still doesn't have a good way to specify lines correctly, only hunks that can't be split properly)Fork.dev is just what you get when the defaults are set up correctly by default, with more powerful control over staging, and with automatic branch/stash backups whenever your doing risky actions.
The only thing it doesn't have built in support for is git log -S for when you're searching for a specific file or commit and don't know the file or commit, but know a substring in the commit itself. But it doesn't matter since you can add that as a custom command into fork.dev
It's going to be right next to Cavil Ave, the bar and club tourist road!
Just imagine all the schoolies and just tourists in general taking a shit on the front steps of any building with trump in the name.
There's so many tourist drones flying every night, you're going to get FPV drones launching bags of dog shit, buckets of paint, and spray painting giant cocks on the side of the building.
Gold Coast mayor says he looks forward to considering a ‘formal development application’
Maybe, maybe not.
Tom Tate has a history of being an utter whore for real estate developers.
He'd slather himself in horse diarrhea with a smile on his face if he thought it would get him a new bribe.
But an association with Trump might shock enough people to give him a hard chance to get re-elected.
So he's probably considering if he can get a big enough bribe to retire so it doesn't matter if he doesn't get back in.
Bruh, just click the reader button on your browser.
It's a garbage article.
It's not checking other's claims, it's not saying anything new, it's not even listening to the majority of the parties.
For each of the parties (node, deno, bun): they are incentivised to only release benchmarks that make themselves look good, and are disincentivised to release benchmarks that make themselves look bad.
This article only uses benchmarks from one party then declares it the winner.
So, it's garbage.
Not exactly,
They said that they APIs were copyrighted, and that the way that Google had reimplemented the API fell under fair use doctrine (the original work was still copyrighted and they were allowed to use it without authorization).
As for using an LLM to reimplement a program, you're going to end up with a derivative work which can only be created/authorized by the original copyright holder. If you don't have the authorization, you are infringing on someone else's copyright.
If however, you used an LLM to read a program's source code, sort each word alphabetically then output the result, you're going to have something that while based on an original copyrighted work no longer functions as a program. It has been transformed to such a degree that it is considered a transformative work, and thus falls under the fair use doctrine.
TL;DR: Simply getting an LLM to regurgitate source code back out to you does not remove the licence of the original source.