Not sure if that’s what you are referring to as destructors, but they added a new way to have code run at resource collection in go 1.24
Not sure if that’s what you are referring to as destructors, but they added a new way to have code run at resource collection in go 1.24
True, and more generally I would not recommend drinking out of plastic containers anyway
They don’t even really look that good. A 3d printer could probably have similar output in an afternoon for less than 10 bucks of filament
The source engine does not handle case sensitivity when loading assets from disk. On windows it’s not an issue but on Linux it will silently fail to load assets if the case doesn’t match. I lost so many hours trying to fix some weapon animation that had 0 seconds run time when porting a mod dedicated server to Linux.
For Android tv there’s also Smart tube next
I have multiple Firefox windows with around 1-1.5k tabs on each, and they have been opened (and re opened) since about a year.
I ❤️ tabs, they make me feel all warm on the inside
I use mine to run VJ software and do light shows at music events.
Since the deck is a powerful computer, and the form factor is quite compact, I find it better than laptops for the task.
Agree to disagree. For me the story and main/side quests were amazing and rarely has a game captivated my attention as much as cp2077 did.
I’m curious, if you consider them average, what game has good or great side quests ?
Depends on what you’re used to. I have lost too much time trying to get a python or js program to run on my machine.
Of course if the project is well written and with decent documentation it’s easier, but in general I have had too many incompatibilities with versions of the tooling and the dependencies which may be too ancient to work properly. On the other side, go code that was written a decade ago still compiles fine without thinking about it.
Hell I even had a js project that was working then 6 months later, without changing any code in it, wouldn’t build. Talking to a front end dev at work he immediately said “oh yeah node was probably updated and you need to do x and y to make it work”. Sorry but I have other things to do than massaging bad tooling to build this.
Btw, even containers are not a bullet proof solution. I had a python container straight up not work even though it was distributed like that.
I agree in general, if you need something specific then there is no way around it. But when I’m looking for something I evaluate all possible solutions, and being written in a language that has issues like this is a mark against it. Sometimes it’s easier to write the thing myself in some language I master than to wrangle python or Js dependencies.
In my experience there is rarely only one solution written in python or Js for my use cases.
You’re not wrong, but you have offended the python guys for suggesting they use something other than their toy language.
I personally look away when I find programs I want to use that are written in python. I don’t have time to play with all that BS just to run a small software on my machine. Go is my go-to (heh) but any other modern language would be fine.
From the incident report it seems the impact was limited to VMs in one DC in one region to be stopped, as the power was lost. And some service degradation in the region.
So not that much impact. Of course resources in this DC would stop working, but the rest of the region was still working properly. If you built your infra in this region in a resilient manner, your services should not have been impacted that much
It’s a game of cat and mouse. I’d be willing if I needed to use win11 myself but for my parents it’s either gonna be Linux or a new computer
Yeah I work in tech and I’m the only one that cares enough to use Firefox. All my colleagues use chrome or chrome with makeup.
Maybe ad blocking will be what broke the camel’s back, but I doubt more than a few will care enough to switch.
Seems like valve read this post :D
https://steamcommunity.com/games/1675200/announcements/detail/4674264042200389436
You playing with a controller? I always thought the driving was optimized for the controller as I can’t half press acceleration on a keyboard.
It’s a little bit better after the updates, but it’s still suboptimal I think.
I think it’s related to the monitor I was plugging on HDMI. With a different screen it works better.
But I still have sometimes the displayport screen not turn on after sleep, and the deck crashing when unplug/replugging it :(
I wasn’t clear in my post, but I have a monitor plugged via HDMI too, and that’s the one having trouble either turning on, or being stuck in 480p. I will try with a different monitor or cable.
With only the displayport monitor it works well
It’s false if I remember correctly. Steam prohibits you from selling steam keys outside the store for less than the price on steam. They don’t forbid you from selling cheaper elsewhere
Thanks for taking the time to explain it. Indeed the new runtime method does not guarantee when the resource will be cleaned, so something like that Drop trait would be quite useful