• 3 Posts
  • 133 Comments
Joined 3 years ago
cake
Cake day: August 2nd, 2023

help-circle









  • It is difficult to get a man to understand something, when his salary depends on his not understanding it

    My salary? I am a wage slave just like everybody else.

    Anyway, you didn’t address the main questions:

    • Do you think providing exclusive access to a house for the renter to live in is something that has no value?
    • This house didn’t just happen to fall in my lap. I put 250k of my own money in over the course of 30 years (10 years to save for the down payment + 20 years of mortage payments). Money that I worked for, doing a job. It’s literally the fruit of my labor. By what ungodly reasoning should I have to give that to you or anyone else for free?

    It seems you are the one here who is not making any effort to be understanding.


  • SpaceCadet@sopuli.xyztoA Boring Dystopia@lemmy.worldRent is theft
    link
    fedilink
    arrow-up
    2
    arrow-down
    5
    ·
    1 month ago

    Every single problem with current rent could be solved by … [theoretical solutions]

    Just because things could theoretically be handled differently doesn’t make landlords “thieves” as the title claims.

    I’m currently a home owner and not a landlord, but if I would become a landlord, it wouldn’t be in my power to implement any of your solutions, leaving in the middle whether they have merit or not.

    All I can do is try to live in the system that exists, and in that context there’s nothing unethical about charging rent to provide someone exclusive access to a property that I worked 20 years for to pay off plus 10 years to save for the down payment. Like, I’m just a wage slave myself and there’s literally over 250k of my own money in my house … why should I have to give that away for free? Seems to me that trying to take the fruits of my labor (i.e. the house that I worked for) for free is the thievery here.


  • land speculator

    Tendentious language.

    What service does the land speculator landlord provide to the tenant?

    You think providing exclusive access to a house for the renter to live in is not something that has value?

    Soon I will probably become a landlord, not because I want to but because it makes financial sense. My partner and I are pooling money to buy a place together so we can live together, she will sell her apartment and I will rent out my old apartment, which I bought with my own money and worked 20 years for to pay off. Are you suggesting I should just have to give the fruit of my 20 years of labor away to someone for free?

    You’re fucking insane.









  • SpaceCadet@sopuli.xyztoProgrammer Humor@programming.devSee MongoDB
    link
    fedilink
    arrow-up
    3
    arrow-down
    2
    ·
    7 months ago

    ACID is really just an arbitrary set of requirements for databases that made sense way back in the day when things were much simpler. ACID starts to hold you back when you want to scale out, because to have consistency you have to wait for your transaction to percolate through all the nodes of your system, and it doesn’t allow for things like a replicating node to be temporarily offline or lagging behind. Turns out though that not everything needs to be strictly ACID. For example, there are many cases where it doesn’t matter that a reader node has stale data for a second or two.

    The thing MongoDB does is that instead of being dogmatically ACID all the time it allows you to decide exactly how ACID your transactions and your reads need to be, through the writeConcern and readConcern parameters. If you want it to be completely ACID, you can, but it comes at a cost.

    Traditionally, ACID is where relational databases shine.

    Relational databases shine with ACID on single-node systems when they’re not trying to solve the scale-out problem that MongoDB is trying to solve, but when they are trying to do that, they actually do much worse.

    For example: most RDBMS systems have some kind of replication system, where you can replicate your transactions to one or more backup nodes either for failover or to use as a read-only node.

    Now if you consider that whole system, replicas included, as “the database”, none of them are ACID, and I don’t know of any RDMBS-es that has mechanisms to automatically recover from a crashed primary without data loss, or that can handle the “split brain” problem.