

Who can even afford that.
I’m assuming this doesn’t include maintenance or insurance?
Who can even afford that.
I’m assuming this doesn’t include maintenance or insurance?
Really you should have it direct to a clone of the site, but with fake accounts pushing whatever agenda you want.
Yeah, that would be my recommendation too. Anything else will produce a worse experience (laggy and slow) and more complexity to get setup/maintain.
I mean, this has always been true, the drones only close the gap by miles. The big issue with the drone attack was Ukraine ability to sneak explosives deep into Russian territory. The delivery mechanism of drones may make it more accurate, but it could have been rockets/mortars and the effect would have been the same.
Yeah, I was going to say that TV wasn’t much of a news source to begin with. The real issue is that social media for news is probably worse - now everyone can be spoonfed the news they want.
Some of the commands I use a lot for debugging containers, in case you go down that route:
docker run --rm -it --entrypoint bash <image_name>
docker exec -it <container_name>
Once you know how to use docker/containerization it’ll be the only way you want to deploy applications. Most popular applications will also have good guides on how to setup/config the container, but sometimes you’ll need to read up on docker and Linux to figure things out.
I didn’t know this one wasn’t well received until just now. To me it’s one of the few good 3D sonics. The plot, stage design, intersecting stories with varied play styles. All of that made it feel like playing in a full world.
That being said, I’m hit or miss on sonic in general, so maybe I like it for not being a traditional sonic game.
Personally the movement mechanics and the tropical overworld were amazing in this game.
While the water jetpack may seem like a gimmick, I thought it really changed the platforming in a good way.
Additionally, I’m a sucker for a good overworld and the amount of things you can unlock or discover in delphino plaza turns it into its own sort of level.
There is definitely some jank and padding (blue coins) in the game, but it holds up better than Mario 64 in my opinion (just due to the camera issues IN Mario 64).
Lil Gator is also a great game!!
Edit: There is a “sequel” dlc being released soonish - https://store.steampowered.com/app/3205060/Lil_Gator_Game_In_the_Dark/
Yeah, combat is it’s weakest point. I’m sorry that held the game back from you, because the overall “puzzle” of the world/game is very rewarding.
Maybe?
For C at least it doesn’t have the actual words, so you need to know what the specific symbols are var = condition ? a : b
. In that expression we don’t know what a or b are in regards to the condition.
Python literally is a if condition else b
, so it reads out what is being done.
I think the idea is it reads more naturally, so you can read it like this return A if statement is true else return B
Maybe it’s not a bad tutorial, but it is long and slow.
Ah my bad, that’s definitely a good point.
My opinion is that in the game you should have collected rooms over time, but be able to build the house with whatever tiles you have.
This would still require multiple playthroughs, as you need to rebuild the house for different puzzles, but also removes some of the RNG by tying it to finding new rooms rather than at every door.
I’m not sure if I agree on the “full price” comment, it’s not much different in quality than Myst or Outer Wilds.
Outside of that I agree, the real deciding factor is how much RNG annoys you. I loved the puzzles and gameplay, but gave up after the “first” ending because there were a ton of puzzles I knew how to solve, but couldn’t get back to or get the right resources for them. Some might argue the RNG is part of the puzzle, but for me it felt more punishing than it should be.
I love rougelites/likes, but for me the issue was the RNG. When you have the knowledge to solve a puzzle, but can’t get the resources or rooms to line up right it just feels stupid.
The game wouldnt be half the length if I could just define the layout myself each day.
Oh yeah, Zelda has a special place in my heart, but tunic just did such an amazing job revealing just enough to keep you hunting for the next step.
If you haven’t loom up some of the speed runs for Tunic. A lot of the game can be skipped simply by knowing what you already need to do, a bit like Outer Wilds.
Yep, bind mount the data and config directories and back those up. You can test a backup by spinning up a new container with the data/config directories.
This is both easy and generally the recommended thing I’ve seen for many services.
The only thing that could cause issues is breaking changes caused by the docker images themselves, but that’s an issue regardless of backup strategy.