HN user

pitkali

88 karma
Posts0
Comments71
View on HN
No posts found.

Oh, yeah, the Snowfield itself is secret enough, but getting to the palace afterwards is just a matter of exploration. The teleport is not that hidden.

FWIW, after you get one half of the medallion, get invaded by Gideon's lackey and then talk to Gideon, he will tell you to look for the Albinauric woman, so at least they give you this much.

All in all, I find the quests in the base game relatively straightforward, but anyone with any prior experience in their games will have an inkling that if they care about quests' results, you need to double-check with the wiki.

All the speedrunners just kill the guy in the jar to get the medallion: you don't have to talk to him.

Also, all you have to do in the Snowfield is to take a teleporter: that's not very secret, is it?

The peasants did not live for long, though, did they? Hard to say if and how the diet contributed, but just because people rarely ate meat then, for example, doesn't necessarily mean it's better for your health. Even if we could agree that people these days eat too much.

People talk about how we spent generations adapting to certain aspects of diet, and so following the habits of old is surely safer, but seem to forget that evolution only really "cares" about producing offspring, not your longevity, or quality of life in old age.

I don't think the internal design is/was that similar. We switched from CVS to git, and were evaluating multiple choices. What tipped the scale in the end was our trust in the internal data model, which for git was the idea that it stores the snapshots, and they are immutable. The diffs you can get out of it are calculated on demand. Even if on-disk storage can end up using some diffs to save on space, the actual conceptual model of every operation is based on those snapshots, and that is also how every new commit is stored before repacking the repository.

This appealed greatly to us, and always meant that it is effortless to undo any operation because it only creates new snapshots, while the previous ones stay there for a while in case you need to recover the previous state.

This is in contrast with Mercurial, where the data store is (was?) a sequence of diffs, and then the state of the working tree at any time is reconstructed on demand from those diffs.

The non-professional flow you described does not require merging in git either. I suppose most teaching resources about git go deep into merging because it was created for distributed development where that's important, but it doesn't mean you have to teach it to a non-professional like that.

Not that I think mercurial didn't have "simpler" UI back then, but the arguments thrown around in this thread are pretty bollocks.

I got my first MacBook around 2010 because I was tired of fixing suspend to RAM every few Nvidia driver updates on my ThinkPad. Then I paid for a commercial VM to seamlessly run some Windows software I needed for my freelance work as a translator, removing the need to dual boot two operating systems. Everything just worked, and I could focus on things I wanted to do instead of continuing to tinker with the OS itself. And after years of playing with many different Linux distros, I realised that I did get tired of that. Moreover, a few games that I played, actually had native Mac versions. What's not to like?

These days I do have a Tuxedo laptop for fooling around, and I don't even use laptops on the regular, which is probably why it works well enough. That and integrated Radeon graphics, I'm sure.

What to Do 1 year ago

But because it hasn't become cannon in any group or culture, it's a bad idea in that it doesn't produce human flourishing.

I am not convinced that's certain. At best, we can tell that those cultures were outcompeted by others, but the healthy human cells are outcompeted by cancer as well. Additionally, I'd say that throughout most of the human history taking care of the world in the modern sense was not an existential matter because we had much more room for error.

Rampant misinformation certainly makes it harder to figure things out, but I disagree that it somehow removes people's right to vote for what's best for them or making an educated vote. I don't find that kind of rhetoric helpful.

Politics is complicated, and most people are neither interested nor qualified to determine what's "best." Even the experts often do not know or agree on how to "fix" things that are broken, so how should the voters? Most just want to be able to afford the groceries.

Sure, but a screen, even a touchscreen, is not mutually exclusive with buttons. My Toyota has both, and after setting up the navigation, I can go the whole way and do everything without touching the screen.

Because development costs money. Your "impossible to keep up" here is easily explained by Google simply investing more money in development and thus being able to "innovate" faster. The only way to compete is to invest more, but where do you get that money from?

The easy fix is to make them slow down development, but I fail to see how that's a good thing.

Because so many browsers are forks of Chromium v2 will disappear from a majority of browsers.

It rather sounds like a great marketing opportunity for anyone trying to compete with Chrome, whether they keep the v2 or just implement ad-blocking themselves.

I mean, in the world where chromium exists, maintaining your own entirely independent codebase of a full web browser does not make business sense. It's better and easier to reuse what you can and build on top of that.

Out of the Western Europe, I lived in Sweden and Germany, and I have not been impressed with the health care so far. I hear it's different when you're having a heart attack, but if you "just" tore some knee ligaments, for example, getting good care in a timely manner is a struggle.

Yes, the String is a list of characters. The Haskell code uses head and tail on it. In Racket, they provided string-first and string-rest (at the end) to replace those.