Traister101

joined 1 year ago
[–] [email protected] 2 points 1 day ago (1 children)

It's like Dragon Maid right? Please have it be like Dragon Maid and they transform...

[–] [email protected] 1 points 4 days ago

Gotta remember Satella killed Emelia before his from Zero loop, that shit is traumatic. Though course since he's interacted with Satella during the tea party I feel like it's fair to think she might not punish him anymore? I can't remember Subaru actually getting punished since then but I didn't re-watch season 2 so it's been quite awhile since I've seen it now.

[–] [email protected] 9 points 1 week ago (8 children)

And yet I know people who think they are friends with the Discord chat bot Clyde. They are adults, older than me.

[–] [email protected] 43 points 1 week ago (2 children)

I'm sure as long as you aren't a Jew or one of those very icky brown people 4chan is very welcoming

[–] [email protected] 1 points 1 week ago (1 children)

So again. Profit is the excess revenue (this time in bold and italicized) that isn't needed to run the business. Believe it or not stock buy backs aren't required to run a business. Weird huh?

[–] [email protected] 1 points 1 week ago (3 children)

No. That's not what that means. Profit by definition is the excess revenue that isn't required to run the business.

[–] [email protected] 6 points 2 weeks ago (1 children)

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

[–] [email protected] 10 points 2 weeks ago (7 children)

Gonna need to start calling it C++++ at this point. So much extra shit in the standard library

[–] [email protected] 14 points 2 weeks ago (1 children)

Buddy. I don't care what they say. It's plainly obvious they are lying. They are just brown hat hackers

[–] [email protected] 57 points 2 weeks ago (4 children)

Yes they are a "pro-Palestine" Russian based hacker group... Nothing funny going on here no sir

[–] [email protected] 2 points 3 weeks ago

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

[–] [email protected] 4 points 1 month ago (5 children)

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.

view more: next ›