95% of the people in a dictatorship like the dictator! That’s crazy
Yo whatup
95% of the people in a dictatorship like the dictator! That’s crazy
Okay? I’m well aware. I do so all the time
/
is used to separate the same branch in different repos. For example origin/main
and remote/main
. Surprising that the other stuff is legal though
I poked around in the registry a bit too much awhile ago and managed to delete my only user. Oops! Completely bricked my install, couldn’t even unfuck it with safe mode shenanigans. Had enough space to clone my entire drive so I just lost a couple days of time fiddling with it, only a couple hours actually copying my shit back and forth.
Ah, r/unpopularopinion one of the subs I almost never visited cause 90% of the stuff on there was just plain stupid.
For my part, I don’t think there’s a large gulf between racist opinions on the two platforms, just on decorum regarding slurs.
Yeah. I’d probably make the argument that 4chan is just open about the racism while other platforms like reddit have at least some enforcement leading to it being less blatant.
I mean like most of us I came from Reddit. If I knew which sub the post was in I’d have a pretty solid opinion but as is I’d assume they probably got downvoted to hell for some unfair reason. Happened to anyone active on occasion so it wouldn’t be surprising. Since it has so many up votes I can’t imagine, without the context of the particular sub, that they weren’t just getting piled on.
I’m sure as long as you aren’t a Jew or one of those very icky brown people 4chan is very welcoming
Nah standard libraries are great but C++ has a lot of… cruft. Maybe don’t plonk a lot of Rust in there despite all the positives
Gonna need to start calling it C++++ at this point. So much extra shit in the standard library
Eh? How’s that work. I’m not going to sit here and say there isn’t too many factories in Java but as a concept it’s extremely useful. You hand off a “factory” to something which actually creates the object. This is really useful in for example serialization. How so? You could register factories (mapped to some sort of ID) which get passed the serialized data and return some sort of created object. Now the core serialization code doesn’t know nor care how exactly any particular type gets serialized. Pretty nifty huh?
Some languages have better ways to encapsulate this functionality but that’s what the factory concept is
No python is statically typed. You have type hints, which makes the language tolerable but like their name implies it’s a hint at the type. You can perfectly legally pass in something completely different that doesn’t conform whatsoever.
The primary thing static languages provide is static typing, that being the ability to determine before runtime that all the types are valid. A good example of this is how C++ programs will refuse to compile if you try to invoke a method that doesn’t exist on the type. That’s because it’s statically typed. At compile time you know that the code is wrong. Dynamic languages fundamentally don’t work like that. You cannot know until runtime if the method you called or the field you are trying to touch exists or not. Again type hints help a lot with this but that doesn’t change how the language actually operates.
They specified statically typed languages. Python would be dynamically typed
So the big important part of git is that it’s a collection of commits. A branch is just a labeled commit and each commit is a list of what changed from the parent. Rebasing (the most confusing one for people) is when you fiddle with a commit from underneath yourself. Or in even more simple terms editing a parent commit. Rebasing is extremely powerful but most useful for when you notice a bug you wrote a couple commits ago. Fixing such issues via rebase (or !fixup
commits you auto squash at the end) keeps your history clean. It’s as though you never wrote the bug. The other thing you do a lot with rebasing is moving your branch up in the history cause somebody updated the remote.
Wealth issue (not really shits cheap)
Yup, libraries should usually let the consumer chose what to do with an error, not crash the program without a choice in the matter. The only real exception is performance critical low level code such as the core of a graphics or audio driver. Though in those cases crashing also often isn’t an option, you just power through and hope things aren’t too screwed up.
Permits is only required when the compiler can’t see the extending classes. IE inner classes can extend without needing to be written out in a permits
clause. This isn’t really that useful but I’ve taken advantage of it more than once so who knows
Nah bro that’s just the memory leaks, your supposed to force close and reopen it every so often so the OS cleans up after their shitty application
ReVanced is a modded YouTube (and others) app. IE normal YouTube but you fuck with it locally to skirt what got the original Vanced guys. Adblock, OLED black theme same old thing Vanced provided. I’ve used NewPipe very little but I’d summerise a comparison as ReVanced has better user experience (thanks to Google making the app) and you can sign in/get notifications ect
Removed by mod