• 0 Posts
  • 38 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle


  • I don’t really think it’s any of those things in particular. I think the problem is there are quite a few programmers who use OOP, especially in Java circles, who think they’re writing good code because they can name all the design patterns they’re using. It turns out patterns like Factory, Model View Controller, Dependency Injection etc., are actually really niche, rarely useful, and generally overcomplicate an application, but there is a subset of programmers who shoehorn them everywhere. I’d expect the same would be said about functional programming if it were the dominant paradigm, but barely anyone writes large applications in functional languages and thus sane programmers don’t usually come in contact with design pattern fetishists in that space.



  • I really don’t understand all these articles either, I’ve been playing a lot of recent games and IMO this is one of the best years for gaming in nearly a decade. Tekken 8, Helldivers, animal well, and lethal company are all very recent games I’ve had a blast with this year. Maybe it feels bad because of consolidation under Sony and Microsoft, but I feel like nearly all the buyouts I’ve seen have been studios that were on life support creatively, if not monetarily. ActiBliz hadn’t released anything other than trendchasing crap and COD installments since overwatch, which went to shit long before OW2. The last good game Bethesda publiahed was prey and you’ve gotta go even further back for a good first party title.




  • Probably the worst game launch in my memory, like the Arkham game that was pulled from steam but it wasn’t just broken on AMD cards. Game would crash every 5 - 10 minutes, servers would rarely make it through a match without crashing so your progression wouldn’t be saved, performance issues, etc. It took them over a year to get it stable, but after they fixed it it was a great game.









  • A dedicated server is needed because something needs to keep a catalog of the smart devices available on your network and ideally be accessible to many people in one household. You could make a system that went phone -> device but you would need to set up each device on each phone you wanted to use, which isn’t a great user experience. You could also run into issues where devices would need to handle multiple conflicting commands from different users coming in at once. Since smart devices are usually trying to use as little power as possible, that extra complexity would hurt you in that department. The third reason is that having a separate server enables automated workflows that would depend on an always online server that orchestrates multiple devices. For example, let’s say you have some automatic insulating blinds, a smart thermostat. You want to raise and lower the blinds to maximize your energy efficiency. Since you have the dedicated server, that server can check the temperature set point of your thermostat, current weather, and sunrise\sunset times. If it’s sunny out, and your set point is higher than the outdoor temperature, the server can raise the blinds to let warm sunlight in, and vice versa. If only your phone could control the devices a workflow like this couldn’t work when you were out of the house.