

Whatever happened to going the whole nine yards?
Whatever happened to going the whole nine yards?
No one.
Sheeran Showerin’… with a corn dog?
Obviously those hours are taken back by the babies with the balls to be born after the redistribution.
Vibe coding is error driven development.
Lol, standards 🙄
I use Arch by the way.
Except when everyone pushes to main at the same time and now you have conflicts.
Strike that, reverse it.
Dalton Wilcox
It’s the most beautiful thing I’ve ever seen.
Exactly. Here’s a thought… and I’m just spitballing here: tariffs. Then take them away. Then add them again. Then take them away. Then add them again. /s
deleted by creator
That’s what Emby thought.
I want to see more oligarchs on the receiving end of assassination plots
in movies. I really liked Day of the Jackal. More of that, please.
I’ve never had that happen, but I suppose it’s possible.
In restaurants they keep plates warm under heat lamps. Microwaves don’t actually transfer heat the way heat lamps do. They heat things up by “vibrating” the molecules (it’s more complicated than that, but that’s the idea). Things with less rigid molecular bonds (like liquids) tend to heat faster because the molecules can vibrate more readily. Using the microwave dry can potentially damage things because there isn’t anything to absorb the microwave energy.
We have a name for that now.
DOGE?
Assuming your local service is accessible from the nginx server, you can proxy the request to it:
server {
listen 80;
location / {
proxy_pass http://10.100.100.2:3000/;
}
}
…where 10.100.100.2
is your local IP on the VPN and 3000
is the local port your service is listening on, and 80
is the public port your nginx server listens on. Everything that hits your nginx server at http://yourserver.com/
will proxy back to your local service at http://10.100.100.2:3000/
. Depending on what you’re hosting, you may need to add some things to the config.
Homonyms