Can someone explain the process for polling? Do they call people on phones? How many? And the only people who pick up phones are old people so does this not count young people?
Can someone explain the process for polling? Do they call people on phones? How many? And the only people who pick up phones are old people so does this not count young people?
“FBI, OPEN UP!”
“Oh this is about Elon? Carry on.”
Aww, Chuck Bartowski is a Trumper? That’s a shame, I liked him.
It would not. There is already a pact with a bunch of states that say once they have enough support they will put their electoral votes towards the popular vote of the country not the popular vote of their state. If enough states get on board the EC becomes powerless. Because the states determine how they vote.
https://en.m.wikipedia.org/wiki/National_Popular_Vote_Interstate_Compact
They are getting close. A couple more states needed for activation.
Even if the 10 largest cities all voted Democrat that would only account for 8% of the vote. And not everyone votes the same way in a city either. There are plenty of republicans voting in major cities but their vote doesn’t matter because of the college. Long Island went to Trump. NYC still got 400,000 votes for Trump. All this means is more people get a voice.
Why the hell would you use any identifying information on a porn account? I’m a nobody and I still use a burner email account with a fake name for logins on NSFW sites.
“The United States, the 59th* most free country in the world” doesn’t really have a ring to it. FreedomHouse does a deep analysis every year. Finland, Sweden, and Norway are the places to be.
*USA is 17th if you want to account for ties.
As long as they aren’t committing treason for her. The bar has been set pretty low lol
She has 284 MILLION followers. And the Swifties are also like a cult. Granted a more sensible one. But people will support her through anything. And many of those supporters are gen z and just entered the voting pool. The GOP does not want a huge influx of voters.
I’ve been doing $10 a week since Biden dropped out. I do have a steady job so it’s just lunch a week basically. I like feeling like I make a difference.
Excellent thumbnail. It looks like he’s laughing at the Republicans.
They’d argue that the people don’t directly choose the VP just the presidential nominee. In fact Vance wasn’t even on the ticket during the primaries.
I hate that I read this in his voice.
This is actually a brilliant strategy then. It’s a lose-lose.
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.
Anus is way too sophisticated a word for them.