Like I said I was expecting some sort of borderline legal scam. It’s just that the meme only mentions that you have to pay them which in itself is not a scam.
Like I said I was expecting some sort of borderline legal scam. It’s just that the meme only mentions that you have to pay them which in itself is not a scam.
Well, I am sure there is a scam, because there’s money involved and it’s happening in this day and age, but talking is free, listening is free, yet the phone company makes both sides pay so they can talk and listen, and I wouldn’t consider that a scam.
At my first job I was working on an MMO and we had a DatabaseManager class with 10k+ lines of code. Less than the first 200 lines actually used any of the members of that class.
you’d never have player movement in the GameManager class
You want to bet? (Source: I teach game programming on a college level.)
But yeah, your comment about the gear icon is sadly more true than people may realize. Game developers do questionable things. => Engine developers cater to people. => Students argue that if something is supported it can’t be that bad. Sometimes it feels like fighting windmills.
The real naming fail is calling the class “GameManager”, still my number one pet peeve. With a class name as vague as that you would have to add tons of information into the variable name. (Also the class name begs for unorganized code. I mean name one function or variable that you could not justify putting into the “GameManager” class. After all if it’s managing the game it could justifiably perform any process in the game and access any state in it.)
Once you put the first bool into a class with a name like AccessibilitySettings, calling it something like HighContrast is completely sufficient.
You may enjoy having a look at F#. It says that it’s “functional first”, but I think a better description would be “an opinionated version of C#”.
For example it doesn’t have a “const”-keyword. Instead it has a “mutable”-keyword, because everything is const by default.
No, actually C#'s answer should be: “What Java said - hold on, what Python said sounds good too, and C++'s stuff is pretty cool too - let’s go with all of the above.”
C#, or as I like to call it “the Borg of programming languages”.
I am surprised no one mentioned my all time favorite: The Fly by David Cronenberg with Jeff Goldblum.
Most horror movies present you with an external threat. The good protagonist is threatened by external forces like zombies, murderers, psychopaths etc. The Fly is different in that there isn’t really a bad guy. You identify with the monster just as much as with their victim.
For me that makes a much more powerful horror experience, because in my day to day life I don’t have any meaningful external threats. Sure, there are thieves, murderers, angry mobs etc. in our world, but it’s not like I woke up hoping that today I wouldn’t meet one of them.
But this fear of losing control over yourself, lashing out at your children, saying something wrong at work or losing control in a very different way like finding out you have a tumor that has been growing inside of you for a long time - those threats are much more real to me.
This is something I really don’t understand. Maybe you can explain it to me.
For me a “normal” day would be one where earth looks like the moon. The fact that we have all kinds of plants and animals is amazing and the fact that we have buildings, technology and culture is something to be very proud of, because every day that you don’t run around killing people or doing other horrible things is a day where you overcame your instincts and helped hold up culture. So to me every day, even one that you would deem “shit that happens in your life”, is absolutely amazing and something to be proud of.
But for someone who believes that there is a God a normal day would be one where everything works out great, and it would just be because God took care of it. A bad day would mean that for whatever reason this God decided to let you suffer. And this is supposed to make you feel good?
Isn’t it uplifting to say that you can’t explain why bad things happen to you? Do you really think it’s uplifting to think that bad things happen to you because an all powerful being decided that you deserved it?
Of course trickle down works. I just don’t get how people came to believe that the rich people (i.e. the place with all the money/water) is the top of the mountain and the poor people were the ocean.
There are so many reasons why money constantly trickles from the poor all the way down to the rich.
Completely agree. I am German and it’s utterly ridiculous.
Visual studio has been the best IDE for a long time, and OneNote is still the best note taking application.
My hot take: There is no such thing as 0-index. If you start with 1 it’s an index, of you start with 0 it’s an offset.
That doesn’t make it spaghetti code though. In well-written OOP code you shouldn’t care where a function is implemented. The problem is a much too high level of abstraction. If your high level code is so abstract that it is only running tasks and handling messages there’s no way to write it in a way that prevents mistakes because you couldn’t possibly know what the actual implementations do.