

What makes you think the “loud minority” wasn’t the people who voted for Trump in the first place?
What makes you think the “loud minority” wasn’t the people who voted for Trump in the first place?
Interesting… if that’s true, then you can know what temperature each setting on the knob is.
I wonder if this is true for all electric ranges?
Is this true?? I always assumed that electric ranges simply had a variable duty cycle controlled by the knob. That would mean that if you want to get a pot up to a specific temperature, the fastest way is to set the knob to high until you reach the temperature, then reduce the knob to the desired temperature.
This is different from how an HVAC works, where you set an actual temperature and the HVAC runs until that temperature is reached.
But I could be totally wrong about how electric ranges work.
Parker, specifically the Jotter. I still have and use a stainless steel one that I bought in 1999 because I kept losing pens, and I thought that if I spent a little more on one I might take better care of it. It’s my favorite by far.
I’m assuming this is meant to be an example of a real-world scenario, and I suspect it would be helpful to hear the actual scenario so that we can comment on the nuances of the specifics rather than wondering if the nuances of the example are relevant or not.
But, to take your example at face value: no, I don’t believe the expelled rose-lover is correct about the tulip lover’s club being an echo chamber. The tulip lover’s club is about tulips… it’s in the name, and that’s why it’s members gather there. The rose-lover is coming in talking off-topic to the point that the members of the tulip lover’s club have found it distracting. It’s nothing to do with an echo chamber. I would probably expel someone from my chess club if they showed up and constantly tried to get everyone to play monopoly instead.
How do you counter the arguments about strategic votes in Cardinal voting systems? Those arguments are explained here: https://betterchoices.vote/Cardinal
Put simply, Approval is still subject to strategic voting that undermines the purpose of the system. In practice, nobody is going to approve of a centrist candidate from the other party because that approval vote might be the only reason that their party loses.
I’m so glad I found this site! I think I’ve been converted to a Consensus Voting proponent instead of Instant Runoff.
You can read more about it here: https://betterchoices.vote/ConsensusVoting
Do you have a link that explains what you’re talking about? I’m having a hard time reconciling my understanding of Ranked Choice (with instant runoff) with the downfalls you describe.
Edit: I came across this: https://betterchoices.vote/Cardinal It explains the spoiler problem with Ordinal voting systems, but also illustrates problems with Cardinal voting systems. Interesting stuff.
Gotcha… as long as you understand that any device that receives that traffic can see exactly what’s in it! (no sarcasm intended at all… if you’re informed of the risk and OK with it, then all is well!)
What’s your reason for using HTTP? That seems like a really bad idea this day in age, ESPECIALLY if that’s something you’re going to make available on the internet.
A reverse proxy is basically a landing place that acts as a middle man between the client and the server. Most people set it up so that all traffic on 80 or 443 go to the reverse proxy, and then the reverse proxy gets the correct website based on the host header of the request.
If you are currently serving multiple websites on your server, then that means you are serving each website on a different port.
So, just make sure that the reverse proxy is serving on a port that is not used by your other sites. It will only respond on it’s own port, and it will only serve the site(s) that you have configured in the proxy.
You’ll be fine!
I run a Nextcloud instance on my Unraid server.
I hear you… it’s definitely not about one tasting better than others, but maybe more about the eating experience. I do think there’s a legitimate argument about how different pasta shapes encourage different pasta to sauce ratios, but at the end of the day it’s just the two elements coming together and the taste is what it is. We should all enjoy it the way we want to! I just wanted to explain why some people talk about certain sauces and certain pasta shapes “belonging” together.
It has everything to do with the consistency of the sauce and how well it sticks to the pasta. For example, spaghetti with a meat sauce isn’t a great choice because the meat won’t actually stick to the pasta and you’ll have to scoop up that meat “manually.” Better is pappardelle, which has a huge surface area that causes the meat to stick to the pasta.
Indeed. A wise wizard once said: “It is a curious thing, Harry, but perhaps those who are best suited to power are those who have never sought it.”
It was not a prediction of victory… it was a 71% chance of winning the electoral college. Said another way, they gave her a 29% chance of losing.
https://projects.fivethirtyeight.com/2016-election-forecast/
ahhhh yes, that makes perfect sense… thank you for pointing that out! Especially since I’m not good enough with vi
to know how to bulk delete the first character in specific lines, I had to manually arrow and delete.
I successfully migrated postgres 15 to 16. I followed the general idea of the guide you posted, but I found it a little easier to do a slightly different process. Here’s what I did:
docker-compose down
for the lemmy instance2. edit the docker-compose.yml
file and comment out all of the services except postgres. In addition, add a new volume to the postgres service that looks something like this: - ./volumes/miscfiles:/miscfiles
docker-compose.yml
file and add a new volume to the postgres service that looks something like this: - ./volumes/miscfiles:/miscfiles
docker-compose up -d postgres
(this starts just the postgres
service from the docker compose file)docker exec -it [container name] pg_dumpall -U [username] -f /miscfiles/pgdumpall20240628
(I think this will work, but it’s not exactly what I did… rather, I ran docker exec -it [container name] bash
, and then ran pgdumpall -U [username] -f /miscfiles/pgdumpall20240628
. The end result is a dumpall file saved in the ./volumes/miscfiles
directory on the host machine)docker-compose down
mv ./volumes/postgres ./volumes/postgresBAK20240628
(move your existing postgres data to a new directory for backup purposes)mkdir ./volumes/postgres
(re-create an empty postgres data folder. make sure the owner and permissions match the postgresBAK20240628
directory)docker-compose.yml
and update the postgres image tag to the new versiondocker-compose up -d postgres
(you’ll now have a brand new postgres container running with the new version)docker-exec -it [container name] psql -U [username] -f /miscfiles/pgdumpall20240628
(again, I think this will work, but I bash
ed in and ran the command from within the container. This also allows you to watch the file execute all of the commands… I don’t know if it will do that if you run it from the host.)docker-compose down
12. edit the docker-compose.yml
and un-comment all of the other services that you commented out in step 2
docker-compose up -d
Hopefully that helps anyone that might need it!
edited to reflect the comment below
I agree… I was simply clarifying that Nate Silver did NOT predict that Hillary would win (nor is he predicting that Trump will win this election), which is a common misunderstanding about probability. For these types of models to be meaningful to the public, there needs to be literacy on what is meant by the percentages given. Really, I’m just reinforcing rodneylives’ point from another angle!
I always use a version tag, but I don’t spend any time reading release notes for 95% of my containers. I’ll go through and update versions a couple times a year. If something breaks, at least I know that it broke because I updated it and I can troubleshoot then. The main consideration for me is to not accidentally update and then having a surprise problem to deal with.