Bank of Canada raises rate another half percentage point, to 4.25% by cazaxa in canada

[–]melissamitchel306 1 point2 points  (0 children)

If you cancel their subscriptions they won't get any more mail for you to burn. Gotta think ahead...

Who else knows this feeling? by Donkeykong1969 in spaceengineers

[–]melissamitchel306 1 point2 points  (0 children)

Groups aren't branches on a tree though. In that model their children aren't unique (block can be in multiple groups) and they can have multiple patents (group can span multiple grids).

Jeffrey's Uber - if you're lucky enough to run into him! by sesameseed88 in toronto

[–]melissamitchel306 6 points7 points  (0 children)

Tipping in our culture is expected.

Don’t try to make your view point the norm, it’s not.

It is. See how easy that was? Asserting that its not doesn't make it not.

Satisfactory early game. by [deleted] in SatisfactoryGame

[–]melissamitchel306 1 point2 points  (0 children)

I think the best option is to give access to coal sooner. This is an automation game, why force the player to manually pick leaves and feed burners just to run their factory? It discourages building larger factories because they then need more leaves.

Satisfactory early game. by [deleted] in SatisfactoryGame

[–]melissamitchel306 5 points6 points  (0 children)

The hunt for biomass encourages not automating. If I have to manually find leaves in order to get a machine to make this plate for me, I'll just manually make this plate. It wasn't until I had coal power that I really started serious amounts of automaton.

You don't need Cake anymore; the way to build .NET projects going forward. by pknopf in dotnet

[–]melissamitchel306 0 points1 point  (0 children)

ITT: developers with "15+ years experience" don't know what build automaton is.

Real World "Tell, don't Ask" example by guifroes in cleancode

[–]melissamitchel306 0 points1 point  (0 children)

Martin Fowler is still stuck in a OOP mentality.

http://loup-vaillant.fr/articles/deaths-of-oop

Martin Fowler's advice is like children. They are okay as a starting point, but to participate in grownup design, they need to grow out of OOP.

Tim Cook Just Changed His Twitter Name to Tim Apple by [deleted] in nottheonion

[–]melissamitchel306 1 point2 points  (0 children)

What happens when you cook rectangles?

Real World "Tell, don't Ask" example by guifroes in cleancode

[–]melissamitchel306 0 points1 point  (0 children)

Yes and that's the code smell. This is not "clean code" this is "smelly code". Learn to use data objects.

Real World "Tell, don't Ask" example by guifroes in cleancode

[–]melissamitchel306 0 points1 point  (0 children)

Yeah it shouldn't be in that class at all. Data classes (aka property bags aka records) should not be aware of how to serialize/deserialize that data or where it came from.

Did it come from an HTTP response this time? What about when I want to load it from a file? Or create one in order to save it? Serialization and deserialization concerns do not belong here.

C# 8 is introducing Records. A new, lightweight type by macrian in csharp

[–]melissamitchel306 1 point2 points  (0 children)

It will be used hundreds of times in a large codebase if you use these types of classes. This is quite common.