It would instead instantly make it extremely obvious how uneven my floor is.
- 0 Posts
- 12 Comments
Norwegians complaining/bragging about high alcohol prices is basically a meme. But it’s true that prices have shaped the way we treat going out and partying. BYOB is fully expected at private parties unless anything else is announced. People rarely head out to nightclubs without being properly boozed up from a preparty at someones home. A store bought 0.5L beer could be as low as $2-$3, while a beer at a bar or a club is expected to be ~$12 at a very minimum, but typically slightly above $15.
I found it to be tense and interesting while playing. But looking back, I can’t really put my finger on what made it that way. I swam around and gathered resources to build boats, make food and fresh water - I can’t really ser what the big drive was. But I certainly loved it enough to finish it, which is rare for me regarding most games.
OddMinus1@sh.itjust.worksto Ask Lemmy@lemmy.world•Europeans, how far do you walk for groceries?14·9 days agoIn Norway. Technically in a city, but it’s very rural. About 30 minutes of walking with a descent of ~150 meters. Carrying groceries back up that hill is a big test of stamina, so we very rarely do it. We mostly drive to the store.
Your friend is full of shit. 3km is a very long distance for walking to get groceries, and I can imagine that you have to deprioritize heavier groceries all the time due to that distance. I’d recommend getting a bike or electic scooter or something to cover that distance. Basically no one in Norway would have 3km to their nearest store with walking as their only option.
I have one that is smart, and you are spot on. It was nice to use in the beginning to get an idea of what pressure is recommended and time spent on each section. But I have uninstalled and been running app free for several years now - with zero issues.
I think you might be mixing up with the skateboarder.
I’m so happy to have grown up in a country where not learning to cook isn’t an option.
OddMinus1@sh.itjust.worksto News@lemmy.world•Zohran Mamdani says 'I don't think we should have billionaires'3·17 days agoMy experience is from Norway where the taxes on the rich is balancing on a line. A lot of rich Norwegians have already moved to Switzerland to avoid annual taxes on their wealth. I would expect to see something similar if USA introduced reasonable taxes, unfortunately.
OddMinus1@sh.itjust.worksto News@lemmy.world•Zohran Mamdani says 'I don't think we should have billionaires'12·18 days agoBut could this really be done? As far as I’ve understood, billionaires typically don’t have a billion liquidized and ready for spending. Rather, their value is distributed in ownership of several companies. How would the 100% taxes on ownership in companies be applied?
Don’t get me wrong, I would love to see it work, but I feel like it’s a lot more complicated than stated. And if a good way of applying those taxes would be introduced, I’m sure the billionaires would either find new ways to make the money untouchable or personally move to a country with looser tax laws.
I’m sure I was sufficiently notified, but I am not big on reading updates on ny instace, so this came as a surpise just now.
Thanks for the server! Onwards to the next!
Could also be done recursive, I guess?
boolean isEven(int n) { if (n == 0) { return true; } else { return !isEven(Math.abs(n - 1)); } }