

I live in a very warm and wet climate, and have never had this issue.
Clean your house bro
I live in a very warm and wet climate, and have never had this issue.
Clean your house bro
I think it went like this:
So you see, it’s just another example of the kind of tragedies that can befall society when sarcasm isn’t clearly labeled on the internet.
GrayJay most of time asks for login because Google indicates it is a bot
Whenever it does that, I just open the Google login page and start clicking links (like the privacy policy, FAQ, reset password, etc) to “prove” that I’m human. That usually works at least for one video, if not more.
Yeah personally I much prefer Freetube’s UI over Grayjay (on desktop at least). For example, the subscription feed has an annoyingly huge list of subscribed channels that takes up like 25% of the screen real-estate, and you can’t hide it. It’s also pointless because there’s another list of your subscriptions on the left side of the screen. It also can’t be launched automatically when opening a YT link with the LibRedirect firefox extension, whereas Freetube can.
But besides design issues like that, Grayjay is much more reliable than Freetube when it comes to bypassing Youtube’s bot protections.
Wow, I thought that was just a weird bug with my system config. It actually started working a couple of weeks ago, but for the longest time I could only launch it by double-clicking it through dolphin lol
I’ll admit I only have a shallow familiarity with VLC, but I’d be surprised if it was capable of doing these things:
ffmpeg commands are one of the best use cases for ChatGPT
Consider what the disassembly would look like. There’s no fast way to do it.
It’s also unnecessary since 8 bytes is a negligible amount in most cases. Serialization is the only real scenario where it matters. (Edit: and embedded)
Which model did you use to generate this, and what tool did you use?
ez pz:
#!/usr/sbin/nft -f
table inet filter {
chain input {
type filter hook input priority raw; policy accept;
iif "lo" accept
ct state established,related accept
iif "enp1s0" udp dport 51820 accept
iif "enp1s0" drop
}
chain forward {
type filter hook forward priority raw; policy accept;
iif "lo" accept
ct state established,related accept
iif "enp1s0" udp dport 51820 accept
iif "enp1s0" drop
}
chain output {
type filter hook output priority raw; policy accept;
}
}
My new strategy is to block EVERY port except WireGuard. This doesn’t work for things you want to host publicly ofc, like a website, but for most self host stuff I don’t see anything better than that.
This is one of those radical ideas that people are terrified of, because it would kill the business models of a lot of massive corporations. It’s easy to spin that as the death of the game industry, rather than what it is: the death of a business practice.
Like the laws against underage smoking probably wiped out billions in shareholder value, but that was objectively a good thing. Banning (or heavily regulating) in-game purchases would also be a good thing, no matter how much it affects existing players. If it leads to the death of name brands like EA, Ubisoft, etc. then who cares? The market will readjust and new players who were able to adapt to the changed environment will take their place.
ok boomer
I never got around to using anything except git, partly because of all the hate people would throw at the other competitors back in the day. Even if the criticisms were not fair, and even if it was all a secret conspiracy to kill git competitors, it definitely worked out for the best. Imagine the hell we’d be in today if we had to constantly deal with different VCS solutions.
There’s nothing ‘archaic’ about git’s CLI. I think you might just be opposed to CLI’s in general, which is fine for a regular computer user, but paints a grim picture of your competency if you’re a developer.
I made a game engine and a game back in highschool, but all that code is lost because I didn’t know how to use git. I knew git existed (and even knew enough to know it was better than mercurial or svn), but I was too lazy to learn.
Wow, that was an awesome rabbit hole, thank you for the link.
If you want to change someone’s mind, they have to see you as in-group.
Maybe a less manipulative-sounding way to phrase that might be that we should remind people that we’re all in it together. The far right media and their billionaire buddies have spent the past decade and a half dividing us, and they succeeded. Idk what it would take to unite this country again, but it at least is a little comforting to have a clear problem statement.
Was a transgender arc ever on the table?
Sublime Text + sometimes LSP is all you need. It might be difficult for people who don’t know how to use a build system directly, but those people are underachievers anyways.