The scenario described in the OP does not involve commenting on a private video. It involves commenting on any public video, then the uploader clicks on a suggested prompt in YouTube Studio which supposedly processes the comment and creates a URL with the title of a different video.
HN user
Crestwave
Check out Scroll Reverser; it's a tiny, open source app that solves exactly this.
There are some other alternatives like BetterTouchTool if you want some other changes like gestures, but as far as this specific problem goes you can just `brew install scroll-reverser`, set up the settings you want and forget about it. Life is too short to deal with this nonsense which is clearly designed to sell the Magic Mouse.
little do they know Ruby is a slower language than Go
Isn't it generally expected for a feature-packed interpreted language to be slower than a minimal compiled language?
`caffeinate` is primarily designed to prevent sleeping due to inactivity. It doesn't prevent sleeping due to lid closure while on battery.
`sudo pmset -b disablesleep 1` (0 to revert) works, although it doesn't exactly roll off the tongue.
Not really. From my understanding, in AP, your account belongs to an instance and your data is then synced to other servers. If the instance goes down, your account is gone.
In ATP, your data is stored in the "Atmosphere", hosted on decentralized "Personal Data Servers" (PDS). The app then simply parses and filters that data. They can apply moderation actions by choosing not to display or read certain posts, but your data still exists and another app could choose to display it. Similarly, if the app goes down, your data is still perfectly intact in the Atmosphere.
It might then seem like the PDS is equivalent to an AP instance, but as mentioned, they are decentralized. Identity is verified through signatures, so if your PDS goes down, you can migrate to a new one as long as you have your signing keys. Therefore, the account belongs to you and not any specific server.
Ah, right. It would have to be `strings -n 1`, then.
The implication is that the random-looking data did not contain ASCII characters other than the parts of the flag
Wouldn't strings(1) have worked for this?
That would be expected for encodings or container file formats. Straight-up encryption like AES produces results that are visually indistinguishable from random data.
It works often enough for the company to be wildly successful. They can simply cut their losses and withdraw from industries where it hasn't, such as EVs.
Yeah, user edits/deletes are locked after 2 hours. You can email hn@ycombinator.com to request an edit past the initial window.
Here's an in-depth analysis (also linked in the OP): https://tonsky.me/blog/tahoe-icons/
Static linking packs the dependencies into the executable. This is basically dynamic vendoring.
Good to hear. What hypervisor are you using (UTM, VMWare, Parallels)?
A "free side" means being exposed on the left or right, matching your Wikipedia quote. On the other hand, OP's implementation checks if it can be moved up or down.
I quite like Shelter [1]. Shelter apps are installed in a separate work profile, which essentially sandboxes it from the rest of your data. It also has a neat feature to automatically disable (freeze) specific apps and seamlessly re-enable them when you launch them through Shelter.
What edition are you using? The home edition straight-up has pop-up ads[1] for random Xbox games, even on a clean install with all notification settings turned off.
[1] https://www.reddit.com/r/WindowsHelp/comments/1j77ro8/window...
Thanks for the clarification (and your work on Olauncher)! I knew I should have checked the source code before posting my comment. I don't think they need to be removed, but I would appreciate an option to disable them.
The launcher itself is also very clean and minimal, with a text-only UI. You can pin up to 8 apps to the home screen and the rest are accessible through search. You trigger search with a swipe, and when only a single matching app remains for your query, it automatically opens it, making it pretty efficient.
E.g., if you don't have Firefox pinned, you can swipe and type "fir" (or any other unique substring) and it will open just like that. It's great for muscle memory.
My only complaint with it is that the developer sometimes sends messages (e.g., happy new year) and there doesn't seem to be any way to disable it. I don't see why a minimal launcher should have internet access at all.
Yes, but Anthropic is specifically claiming their implementation is clean-room, while GNU never made that claim AFAIK.
Clean-room design is extremely specific. Anyone who has so much as glanced at Windows source code[1] (or even ReactOS code![2]) is permanently banned from contributing to WINE.
This is 100% unambiguously not clean-room unless they can somehow prove it was never trained on any C compiler code (which they can't, because it most certainly was).
[1] https://gitlab.winehq.org/wine/wine/-/wikis/Developer-FAQ#wh...
[2] https://gitlab.winehq.org/wine/wine/-/wikis/Clean-Room-Guide...
Nope, it comes with apt. You might be referring to iSH on iOS, which does use Alpine in a VM.
The script you posted is only portable in theory and not in practice. Executing it while using a non-POSIX shell like Elvish (even without having it as a default shell) makes it immediately fail.
Meanwhile, `#!/usr/bin/env` is completely portable in the practical sense. Even systems with non-standard paths like NixOS, Termux and GoboLinux patch in support for it specifically.
Oh wow. Your original comment is pretty darn prophetic.
`#!/usr/bin/env bash` is the most portable form for executing it from $PATH
It makes a lot more sense when you consider that Apple's business model relies heavily on keeping customers locked into their ecosystem.
Clearly a Mac user should also have an iPhone, or face the repurcussions for using a non-Apple device.
It is a valid strategy for privately owned companies. Look at Valve—they have their flaws, but they're investing into open technologies and actually improving their product because they know they're sitting on an infinite money printer.
If they went public, no amount of profit would be enough. They would have to squeeze every last cent out of their users for the quarterly reports.
There are lots of ways to cook oysters, which significantly lessens the briny taste and gelatinous texture.
While it's true that their rise in the West was mostly from clever marketing, oysters are just considered normal seafood in many countries and are cooked into dishes.
But yes, the premium price due to the raw oyster trend makes it not worth it if you live far away from the sea.
If you take a peek at the commit history [1], you'll see that the project started only last week with some very vague commit messages. The code is also quite messy and unoptimized. It's a cool project but not exactly industry-level software.
It doesn't, no? You create virtual environments using Python's venv module, not pip. The newer alternatives like uv do handle it, though.