HackerTrans
TopNewTrendsCommentsPastAskShowJobs

MispelledToyota

no profile record

comments

MispelledToyota
·5 lat temu·discuss
Presumably capital changing ownership will tend towards ownership by those who can deploy it more productively, so it doesn't seem like bits shifting around is positive evidence that it's value neutral or negative in real terms.

Obviously there are lots of ways this pretty story breaks down, but I think the "just moving bits" reason isn't that strong a criticism.
MispelledToyota
·5 lat temu·discuss
presumably if a transaction is taking place, the parties involved value the state of affairs after the transaction more than they did what came before, so value is being created, even including the transaction cost.
MispelledToyota
·5 lat temu·discuss
Software Engineers use assembly.
MispelledToyota
·5 lat temu·discuss
Yes, we will have to see. I think my own attachments to liberal values don't provide much guidance for how humanity will be best served. But I hope whatever emerges or wins out does it somehow by making people live meaningful lives, and not by leading us to something like Derek Parfit's repugnant conclusion.
MispelledToyota
·5 lat temu·discuss
You're at the mercy of powerful actors regardless of whether you consent to it. A law will affect me the same way regardless of whether I believe in it. A rock blocking my path blocks it whether I consent to it being there. Maybe I can go around, or maybe I need to move it, but my consent isn't really important. By the way, most governments do not forbid dropping out.

Hegel is doing the continental thing of waving hands and converting a collection of individuals into a People who Consent. But if you have 80% of the people not consenting, but 80% of the power supporting the government, consent doesn't matter.

I think you're also leaving out the possibility of a Nash equilibrium, where nobody likes the government, but there is not a way to coordinate a transition to something better without a high likelihood of something worse.

But in the end I don't think we disagree too much, just some quibbling around the edges. Maybe I'm wrong though.
MispelledToyota
·5 lat temu·discuss
well said
MispelledToyota
·5 lat temu·discuss
I think this is magical thinking about what a government is.

The social contract theory is a just-so story. It's not real. Governments exist because they are a tool for concentrating power and out-compete other social groupings in terms of economic strength and capacity for violence. But good governments want to incentive happy, productive citizens, so they use pre-existing language, or invent new language, to discuss how to achieve that. "Rights" are an example of this.

Governments don't exist from the consent of the governed, but rather from the lack of force sufficiently strong to dissolve them. Just because I don't have this force doesn't mean I have consented to being governed.
MispelledToyota
·5 lat temu·discuss
Then yes, rights don't exist at all.

What we do have is something else, let's call it "rights(tm)", which are a social construct used to privilege and protect individuality. We use it as a tool when making decisions about how to treat others and what laws are legitimate. They are contestable, and allow the tradeoff to be adjusted based on circumstances and the priorities of societies.
MispelledToyota
·5 lat temu·discuss
If rights are unlimited, and only their expression can be limited, then it seems like it is a category that excludes nothing and so is basically vacuous.
MispelledToyota
·5 lat temu·discuss
The only right that seems even remotely plausible and socially independent was Hobbes's claim that we have a right to defend ourselves from being killed.

Anything else just seems too ontologically and epistemologically suspect.
MispelledToyota
·5 lat temu·discuss
Rights are only a concept that exists within societies, so it seems like societies will either define rights broadly and then discuss tradeoffs, or they would need to define rights very narrowly so a tradeoff isn't conceivable. But then few things would be bona fide rights. If you define a right as inviolable, then privacy isn't a right by that definition unless you have some extreme individualist/anarchist worldview.
MispelledToyota
·5 lat temu·discuss
I don't think that's how prototypes work in JavaScript though. The newly created objects refer to a chain of prototype references, and changes to the underlying prototypes will affect already existing objects.
MispelledToyota
·5 lat temu·discuss
I think Kyle Simpson's You Don't Know JS does a good job about this. But on the other hand, it seems like it's usually safer to keep it simple, treating it more or less as classical and using classes, to make a codebase that others can relate to well.
MispelledToyota
·5 lat temu·discuss
I think the idea behind it is the parenting approach. A hypothesis about it is that it results in children earning more money, but that's not inherent to the concept.
MispelledToyota
·5 lat temu·discuss
The question was about how someone should form their opinions, and whether we can tell others how they ought to do that. Lots of our opinions do affect others (e.g., if they should be hired, if one should help them, how we treat their reputations), so it's appropriate to point out what good and bad criteria are.

If an opinion being held doesn't have any practical ramifications for others, it's not really a big deal to have opinions formed on a questionable basis, except that good judgment tends to be a habitual process, so doing it with bad criteria with low stakes could affect how we form them when the stakes are higher.
MispelledToyota
·5 lat temu·discuss
You can tell someone what good criteria are for wines, why not forming opinions? They're not obligated to listen to you, but I don't get saying that you can't advise.

Beyond that though, when our opinions have consequences, we have an obligation to form them carefully when they affect others. Not being able to force someone to behave well doesn't mean there aren't reasonable criteria available for them.
MispelledToyota
·5 lat temu·discuss
The whole point of accounting is to force black and white distinctions, especially in ambiguous situations. But in fact there is no ambiguity about this. Owing someone money doesn't earn you money. Owning an asset that you may have acquired with a loan is what earns you money.
MispelledToyota
·5 lat temu·discuss
Just because a mortgage is a liability doesn't mean it's a bad financial decision to incur a mortgage to own a house, agreed.
MispelledToyota
·5 lat temu·discuss
I totally agree. I'm making the narrow point that a mortgage is a debt, and classified as a liability. A house is an asset. The benefit of purchasing real estate with leverage vs cash doesn't change how they sit on a balance sheet.

Personally I argue to everyone they should put down as little as possible for the reasons you're stating.
MispelledToyota
·5 lat temu·discuss
that's a bit confusing. While you can sometimes get away with leaving out dependencies, and then you don't have to useMemo or useCallback as often, it seems like there is a much larger downside to having potentially stale values in your effect. Leaving them out to me would result in the potential for weird future bugs and race conditions.