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

help-circle




  • 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.











  • 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.




  • I wouldn’t recommend it. The Git documentation itself doesn’t recommend rebase for more than moving a few unpushed commits to the front of a branch you are updating. Using it by default instead of merge requires you to use --force-push as part of your workflow which can lead to confusing situations when multiple developers end up commiting to the same branch, and at worst can lead to catastrophic data loss. The only benefit is a cleaner history graph, which is rarely used anyway, and you can always make the history graph easier to read with a gui without incuring any of the problems of rebase.