Time complexity may be O(lines), but a compiler can be faster or slower based on how long it takes. And for incremental updates, compilers can do significantly better than O(lines).
In debug mode, zig uses llvm with no optimization passes. On linux x86_64, it uses its own native backend. This backend can be significantly faster to compile (2x or more) than llvm.
Zig's own native backend is designed for incremental compilation. This means, after the initial build, there will be very little work that has to be done for the next emit. It needs to rebuild the affected function, potentially rebuild other functions which depend on it, and then directly update the one part of the output binary that changed. This will be significantly faster than O(n) for edits.
Also, while Youtube claims that adblockers are also against their Terms of Service, if you actually go read https://www.youtube.com/t/terms you'll see that their claim is not supported by the actual language of their ToS. They forbid you to "access, reproduce, download, distribute, transmit, broadcast, display, sell, license, alter, modify or otherwise use any part of the Service or any Content" without their express permission. But adblocking is not altering the Content of the service, it's blocking certain videos while letting other videos through. If there was a service that detected "here's a word from our sponsors" parts of the video and removed them, that would be altering Content. But the ads are not part of any given video, rather they're external videos inserted at certain points into the video you're watching. Selectively blocking video A while watching video B is not forbidden by any part of Youtube's Terms of Service.
So go ahead and use uBlock Origin with a clear conscience, unless you can find the part of their Terms of Service that actually forbids blocking certain videos while letting others through.
This exists and it's called SponsorBlock. It automatically skips past sponsored segments. Debatable if that is altering content though
For instance, I'm fine with video creators having sponsored sequences because I can skip them if I want. And there's no way for them to know if I watched the ad. In fact, they don't care because they already got paid.
The "capability" you see is for the LLM to recognize its a human typed random string since human typed random strings are not very random. If you send it an actual random word then it typically fails.
We live in a euphemistic world where "satisfactory" is presented to failures to not hurt their feelings, but the word also and originally means it's good enough, i.e. delivers an unbiased shuffle.
As a former Firebug fan: Chrome/Chromium has had superior browser dev-tools experience for over a decade now.
Show me something that is obfuscated and works.
It's clear to a moderator who sees the comment, but the user asking for a summary could easily have not seen it.
alias ..='cd ..'
alias ...='cd ../..'
alias ....='cd ../../..'
alias .....='cd ../../../..'
alias ......='cd ../../../../..'
alias .......='cd ../../../../../..'