I always found these a pain to clean. I had both types. And it’s another single use device. I switched to a pot on the stove and never looked back. Bought a special pot that has vented holes on the side so the popcorn doesn’t steam and get chewy.
I always found these a pain to clean. I had both types. And it’s another single use device. I switched to a pot on the stove and never looked back. Bought a special pot that has vented holes on the side so the popcorn doesn’t steam and get chewy.
Oh no! Not boobies. My impressionable mind!
For under it’s because they have cats. If it’s over cats can pull it down and unroll it entirely.
I’ve heard effect and affect so many times but never this one.
If Greendale Community College was a University.
I think that’s because legally it can’t be called bread because of the sugar.
What are you going to do in the bathroom? Just stare at the wall like a caveman?
Vance is also a DEI hire. They didn’t want two geriatrics on the ticket so they chose someone young. Diversity in age. DEI can be spun many ways. It’s not a bad thing.
Jeans are mid comfort for me. They look good when out but honestly I don’t want to lay down on my couch in jeans. Especially summer. Usually I change into gym shorts, sweatpants, or underwear.
I think taking off a pair of jeans is a better equivalent for guys. Or any piece of clothing that isn’t comfortable.
Ah well that’s good. But is the 24 hour window still there?
Well this is depressing to learn.
Bumble is terrible for meeting people. Once you match someone they have 24 hours to respond. I’m fine with the woman needing to message first, but if you don’t respond in that 24 hours their match is removed. What if that woman has a life and didn’t open the app that day? Oh but you can spend money to extend that window. So if she’s on vacation yay you get to buy extensions for a week. It’s just a scam.
Unless you’re match.com where they charge you to like or even message people. Don’t ever use Match. OkCupid has been the most genuine one I’ve seen.
That’s why I’ve been using Emby. Works just fine for free.
I only use it for reverse proxies. I still find Apache easier for web serving, but terrible for setting up reverse proxies. So I use the advantages of each one.
I updated my comment above with some more details now that I’m not on lunch.
Reverse proxy is actually super easy with nginx. I have an nginx server at the front of my server doing the reverse proxy and an Apache server hosting some of those applications being proxied.
Basically 3 main steps:
Setup up the DNS with your hoster for each subdomain.
Setup your router to port forward for each port.
Setup nginx to do the proxy from each subdomain to each port.
DreamHost let’s me manage all the records I want. I point them to the same IP as my server:
This is my config file:
server {
listen 80;
listen [::]:80;
server_name photos.my_website_domain.net;
location / {
proxy_pass http://127.0.0.1:2342;
include proxy_params;
}
}
server {
listen 80;
listen [::]:80;
server_name media.my_website_domain.net;
location / {
proxy_pass http://127.0.0.1:8096;
include proxy_params;
}
}
And then I have dockers running on those ports.
root@website:~$ sudo docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
e18157d11eda photoprism/photoprism:latest "/scripts/entrypoint…" 4 weeks ago Up 4 weeks 0.0.0.0:2342->2342/tcp, :::2342->2342/tcp, 2442-2443/tcp photoprism-photoprism-1
b44e8a6fbc01 mariadb:11 "docker-entrypoint.s…" 4 weeks ago Up 4 weeks 3306/tcp photoprism-mariadb-1
So if you go to photos.my_website_domain.net that will navigate the user to my_website_domain.net first. My nginx server will kick in and see you want the ‘photos’ path, and reroute you to basically http://my_website_domain.net:2342. My PhotoPrism server. So you could do http://my_website_domain.net:2342 or http://photos.my_website_domain.net. Either one works. The reverse proxy does the shortcut.
Hope that helps!
Off-site backups that are still local is brilliant.
Interesting. I actually thought of it as a replacement for Google. With Google search being broken for years it’s the only easy way to get information now.