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/)XA
Posts
2
Comments
916
Joined
2 mo. ago

  • Why the hell does everything have to be AI for you people to be happy? I just plain don't understand it. We know that AI hurts your critical thinking and reasoning skills, and we continue to just pack AI into everything... Doesn't make sense. Sooner or later you're gonna need to ask ChatGPT whether or not you need to wipe your own ass or not.

  • Is it technically feasible to target those systems with any political action as a response to the tariffs levied by the US?

    Not generally. There's no current drop-in replacement for these systems available. So if you piss off these private corporations, you're going to significantly harm trade within the EU if they decide to take offense to it. When was the last time you used cash?

    Now imagine you must use cash, because Visa, MasterCard, Google Pay, and Apple Pay refuse to work inside of the EU because they're being targeted with ire for things the US President and Government are doing.

    It's not as easy a situation as you describe here.

  • Because he's distancing himself from her politically to be able to run without their performance in the 2024 election dragging him down--and whomever wrote the article clearly has an issue with him and doesn't want the stunt to do what it was designed to do.

  • This crash has to be so bad that the next US President that even so much as hints at wanting to use tariffs for any purpose other than what they're intended for, would be personally walked to the gallows.

  • That's not how it works, though. He's already been deported, and is in another countries custody. The US can lobby to get him back, but they can hardly demand it.

    This US citizen has essentially been expatriated by ICE. I'm sure they forced him to sign documentation that he's in some violent gang, as well. There's no getting him back unless El Salvador decides to let him go.

  • The last time the US did wide sweeping tariffs it plunged a stagnant economy into the great depression. That was 95-96 years ago. Trump does the same thing expecting different results, gets even greater depression.

    It's funny because you have every expert known to man saying "this will be devastating for the economy" and no one listened. Now everyone's 401k evaporates and they care all of a sudden. They were told this would happen and no one cared.

  • Caddy does not need 80 and 443.

    By default and all measurable expectation it does. Unless you can't use privileged HTTP/HTTPS ports, there's no real reason to use unprivileged ports.

    Besides, op doesn’t mention having problems with ports

    OP said he was having issues, and this is a common issue I've had. Since he was non-descript as to what the issues were, it's really not stupid to mention it.

  • The biggest issue I have with Caddy and running ancillary services as some services attempt to utilize port 80 and/or 443 (and may not be configurable), which of course isn't possible because Caddy monopolizes those ports. The best solution to this I've found is to migrate Caddy and my services to docker containers and adding them all to the same "caddy" network.

    With your caddy instance still monopolizing port 80 and 443, you can use the Docker expose or port parameters to allow your containers to utilize port 80 and/or 443 from within the container, but proxify it on the host network. This is what my caddy config looks like;

     caddy
        
    {
            admin 127.0.0.1:2019
            email {email}
            acme_dns cloudflare {token}
    }
    domain.dev, domain.one {
            encode zstd gzip
            redir https://google.com/
    }
    *.domain.dev, *.domain.one {
            encode zstd gzip
            @book host bk.domain.dev bk.domain.one
            handle @book {
                    reverse_proxy linkding:9090
            }
            @git host git.domain.dev git.domain.one
            handle @git {
                    reverse_proxy rgit:8000
            }
            @jelly host jelly.domain.dev jelly.domain.one
            handle @jelly {
                    reverse_proxy {ip}:8096
            }
            @status host status.domain.dev status.domain.one
            handle @status {
                    reverse_proxy status:3000
            }
            @wg host wg.domain.dev wg.domain.one
            handle @wg {
                    reverse_proxy wg:51820
            }
            @ping host ping.domain.dev ping.domain.one
            handle @ping {
                    respond "pong!"
            }
    }
    
      

    It works very well.