shiftymccool
@shiftymccool@programming.dev
- Comment on aerodynamics 1 week ago:
Lobsters go the other way though…
- Comment on Fritz Haber moment 2 weeks ago:
It’s basically the main reason we are able to support a global population in the billions
Ah, so now I know who to blame
- Comment on Worst amusement park ever. 4 weeks ago:
I was literally just thinking today, “I wonder where I could get some pallets…” I guess the universe has spoken
- Comment on Ailanthus 1 month ago:
Or garlic mustard
- Comment on GrapheneOS now officially supports Pixel 9, 9 Pro, and 9 Pro XL | GrapheneOS is a private, secure mobile operating system with Android app compatibility, developed as a non-profit open source project 2 months ago:
So? Bad people can make good things. We should all stop using Linux because Torvalds is a dick?
- Comment on San Francisco says ‘good riddance’ as X prepares to leave 2 months ago:
I think it would awesome if it failed so much, Musk was forced to sell. Then, it explodes in popularity
- Comment on Haiku OS is what Linux used to be. 2 months ago:
No, it’s what BeOS used to be. I miss the BeBox, just out there flaunting its true multi-processor usage with LEDs
- Comment on IQ Test 3 months ago:
We, unfortunately, aren’t subject to natural selection anymore. We have been left to our own stupidity
- Comment on Middle-schoolers after pronouns are successfully banned once and for all (A conservative utopia) 3 months ago:
I can’t agree more
- Comment on 3 months ago:
I do not have to learn the intricate details of how to code a frontend with the fucking retarded functions
I hope this isn’t your job…
If you don’t know what you’re doing, you have no idea if chatpt is doing it right. Spoiler alert, it isn’t. Chatgpt RARELY gets things even remotely right, it’s worse than a junior dev in that you have to keep an eye on it to make sure it’s not doing something super-stupid.
Source: full-stack developer for 20+ years
- Comment on Wearables linked to ‘pathologic’ heart disease symptom monitoring 3 months ago:
OR, are people that monitor symptoms and stress about it more likely to buy a wearable that allows them to do that?
- Comment on I still crie evrytiem 3 months ago:
- Comment on poni 4 months ago:
Santa Clarita Diet
- Comment on Docker network internet access 4 months ago:
I’m referring to docker bridge networks.
old_main
is in the 10.2.1.0/24 subnet and i’m trying to move everything to a new bridge network on a subnet of 10.0.0.0/24. sorry, i’m not exactly sure what other info would be useful - Submitted 4 months ago to selfhosted@lemmy.world | 7 comments
- Comment on Cloudflare is bad. Youre right. 4 months ago:
That makes sense, except Google kinda does the same thing. Everything they have is technically just a “free tier” of the Google One subscription, right? I guess I’m saying that “free tier of paid product” doesn’t automatically qualify a company as trustworthy for me. Is there something else that sets Cloudflare apart?
- Comment on Cloudflare is bad. Youre right. 4 months ago:
Why does Cloudflare get a pass on “if it’s free, you’re the product” mantra of the self-hosting community? Honest question. They seem to provide a lot for free, so…
- Comment on Should I use Microsoft Copilot? 5 months ago:
I treat it like a junior dev, it gets the gist but may make mistakes and I work it into something usable.
I also like it to save keystrokes, like when I’m building an object, it knows the structure of that object, so it ends up being tab/enter/tab/enter/… Same process for creating converters between types.
I don’t expect much from it, but it does save time and keystrokes
- Comment on Ordered back to the office, top tech talent left instead, study finds 6 months ago:
I did, best move ever
- Comment on What's stopping you from using Ecosia? Your searches could plant trees! 6 months ago:
Don’t have children
A+ my friend. Solve this one, and you solve most of the others.
However, eating animals isn’t inherently bad on its own. It’s the SCALE at which we do it. Animals have been eating animals since there were animals, and as long as there is a natural balance, this can be a good thing. Factory-farming for billions of humans is where it all falls apart (much earlier than that, actually)
You either care about
the future of humanity and their place onEarth, or you don’t.I couldn’t give less of a fuck of humans make it or not, but the Earth and its other inhabitants don’t need to go down with the shitty ship humans built.
I agree with your overall point, though, but I think the main solution to the problem is simply to use a condom. Most of the rest will sort itself out or be much easier to solve after there are less of us.
- Comment on Traefik conditional certificate for same URL 6 months ago:
When I turn off Wi-Fi, I’m not on the same network as my server, it’s my carrier network so all the internet hops are expected.
The way it’s working now is I have a domain (example.com) that is set up on cloudflare DNS. I added a tunnel in cloudflare zero trust, which generates certificates you add to your server to encrypt traffic from your server to cloudflare. I have added these to traefik to be served with my service url (service.example.com). Then, I added a route in cloudflare for service.example.com.
This works fine. But, what I’ve also done is add a local DNS entry for service.example.com so when I’m on my LAN, I access it without going out to the internet and back (seems like a waste). However, this is serving the origin server certs from cloudflare, which causes trust issues
I’m using docker for everything: traefik, cloudflared tunnel, and my services on the same hardware. The tunnel just runs, and it’s configured on cloudflare zero trust to talk directly to the container:port over the docker network.
- Comment on Traefik conditional certificate for same URL 6 months ago:
That’s what I’m settling on. However, it’s not just about trust, some of the services I’m exposing deal with moving files and I’m mostly interested in higher speeds associated with local transfers as well as not using up my internet data cap.
- Comment on Traefik conditional certificate for same URL 6 months ago:
You’re right, I’m using the cloudflare DNS challenge to get let’s encrypt certs. I’m definitely hitting traefik. I’m testing by turning the Wi-Fi on my phone off/on and opening the page after. I get the same cert every time but it’s not trusted when on Wi-Fi. This makes sense since it’s the origin server cert which is meant to encrypt traffic between my server and cloudflare. To add more certainty, when Wi-Fi is on, a traceroute shows only one hop to my server and shows a bunch of hops when it’s off.
- Comment on Traefik conditional certificate for same URL 6 months ago:
Barring any Traefik tricks that allows me to accomplish what I’m after, I was thinking of going with your “third” option of just letting it use Cloudflare for everything but, I had to check with the experts first before just doing it.
I have some apps that complain or, in one case, flat out doesn’t work if the cert is invalid. I’ve been working around it (sort of) but it would be nice to have it set up “correctly” for once. If routing all traffic through Cloudflare is the answer, so be it ¯_(ツ)_/¯
- Comment on Traefik conditional certificate for same URL 6 months ago:
If I use the Cloudflare origin server certs, the browser shows insecure and the message is “certificate not trusted” which is the same message as self-signed, if I’m not mistaken. I’m not sure what other details are relevant as I’m still new-ish to the networking portion of this home server thing. I’m happy to answer any questions if you suspect something.
- Comment on Traefik conditional certificate for same URL 6 months ago:
I’m not using self-signed anymore, I’m getting them from Cloudflare via DNS challenge
- Submitted 6 months ago to selfhosted@lemmy.world | 17 comments
- Comment on Google employees question execs over 'decline in morale' after blowout earnings 6 months ago:
- Comment on Craiglist's jokes forum is something else 6 months ago:
This comment is the best part of this post
- Comment on Windows 10 reaches 70% market share as Windows 11 keeps declining 6 months ago:
Candied Windows