Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)N
Posts
2
Comments
744
Joined
1 yr. ago

  • People have been talking about "post scarcity" since forever.

    Yes, in the far distant future people will be able to have things they need and not have to work. AI will also exist in that future.

    However, I don't think anyone believes that future will arrive in the next decade.

  • I'm not saying Trump doesn't have dementia, but I don't feel like this outburst is really evidence of that?

    He doesn't like women. Doesn't like journalists. Doesn't like smart women. Doesn't like being asked questions.

    His base loves this stuff. No one is going to hold him accountable. He can say anything he likes with impunity.

  • In most jurisdictions you cant claim depreciation if the property is not available to rent.

  • If you have multiple properties the risk of a single tennancies damages exceeding the deposit is manageable.

  • Can you cite statistics that show vacant properties increase in value more quickly? Im incredulous.

    Renting a property is work and risk, but in exchange you receive rent income.

    If you have a portfolio of properties, you're not about to leave that free money on the table.

    The issue here is that youre thinking like an idiot.

  • Rehab doesn't magically solve people's problems.

  • I feel like most people in this thread have never interacted with the homeless people they want to offer houses to.

  • Sure ok. By that definition every human since the dawn of time is greedy. Well done.

  • What do you mean "what if"? Of course thats what they're going to do.

  • I've been saying this since the start. The Trump administration will never release anything damaging to Trump.

    They'll just release some fairytale. They've had months to get it in order.

  • Are you trying to make a case that a gross tenant who doesn't pay rent is the same as a nice tenant who does pay?

  • Some cities in Australia have a vacant property tax. It makes sense in some areas.

  • If you owned a house you wouldn't let a homeless person live in it for free. That doesn't make you greedy.

  • I was wondering what the actual underlying reason is.

  • Thats not what depreciation means.

    If youre trying to say the wear and tear decreases the property's value, it wouldn't decrease much more than a rented property, and the investor would have all that rent income.

  • IDK about the American tax system but here in Australia this argument gets trotted out a lot but it just doesn't hold water.

    Why wouldn't an investor want to rent their property and make more money?

  • This isbprobably a philosophical question that i dont know the answer to, but its still a waste.

  • This is really just a guess but... I think "agent" in this context means a personalised AI.

    Training gen AI models requires huge amounts of resources. Its not practical to train an AI for your personal use.

    Creating an agent is something like, taking an existing model, asking it to keep your entire browser history in mind while you ask it to do your homework.

    IMO its actually one of the big limitations of gen AI, but somehow the word is supposed to mean the opposite. As in, the current approach has reached a dead end requiring exponentially more resources for less and less improvement. So because we can't make a model that just knows or learns everything, we have to make agents that know lots about specific things.

  • I've never used tailscale but use wireguard extensively.

    There's not much of a learning curve for you as the administrator. You have to discard some misconceptions you might bring from other VPNs but really after 30 minutes of looking at configs you'll get it.

    I use wireguard for my small team of 5 people to access self hosted services. You install wireguard, load the config, and then it just works.

    The trick, if it can be called that, is using public dns for private services.

    On your server, suppose you have service-a service-b and service-c in containers with ip addresses in the 10.0.2.0/24 range. Then you'd have a reverse proxy like traefik at 10.0.2.1. You'd also create a wireguard container with an IP in that same 10.0.2.0/24 range, and configure it's wireguard adapter to be 10.0.12.1 or soomething so you have "2" for the containers and "12" for the wireguard clients.

    Then in wireguard configurations you direct all traffic for 10.0.2.0/24 through the tunnel but everything else just uses their devices normal internet connection.

    Finally create a public dns record pointing to the reverse proxy like *.mydomain.com > 10.0.12.1

    now whatever.mydomain.com will resolve to your reverse proxy but is still only available to devices connected to the wireguard container on your server.