Recent comments in /f/explainlikeimfive
These-Assignment-936 t1_j22kwaq wrote
Reply to comment by giskardwasright in ELI5: How does "acquired taste" work? And how are some tastes able to be acquired no problem, while others will never be acquired? by PuzzleBrain20
I got food poisoning after eating lemon meringue pie in 2003. I think in a few years I may be ready to order it again.
These-Assignment-936 t1_j22kvyj wrote
Reply to comment by giskardwasright in ELI5: How does "acquired taste" work? And how are some tastes able to be acquired no problem, while others will never be acquired? by PuzzleBrain20
I got food poisoning after eating lemon meringue pie in 2003. I think in a few years I may be ready to order it again.
aristophanesbeard t1_j22ka51 wrote
Reply to comment by [deleted] in ELI5 What is the purpose of continuously spinning a lasso before throwing it? by Asian_1nvasion
But that’s not what he was asking lol
Jormungandrs-bite t1_j22ifi4 wrote
Reply to comment by police-ical in ELI5: How does "acquired taste" work? And how are some tastes able to be acquired no problem, while others will never be acquired? by PuzzleBrain20
That explains why I can't drink rum and coke anymore....
Bachelor parties man
candlestick_maker76 t1_j22iayo wrote
Reply to comment by Weary-Lie-3581 in ELI5: Does period flow level impact how you feel while pregnant? by UnashamedLiar
To add to your data set: my flow has always been light, and I've never had cramps. Pregnancy was awesome. No morning sickness, no depression afterward. The ONLY unpleasant part was stupid childbirth.
I, like your wife, have only done it once. So now you have a sample of two, which is double what you had (hooray!) but...still a ridiculously small sample.
[deleted] t1_j22hfgj wrote
Reply to comment by [deleted] in ELI5 What is the purpose of continuously spinning a lasso before throwing it? by Asian_1nvasion
[deleted]
hux t1_j22hazc wrote
Reply to comment by bloode975 in ELI5: How does "acquired taste" work? And how are some tastes able to be acquired no problem, while others will never be acquired? by PuzzleBrain20
For similar reasons, I can’t even be in the same room as someone eating mussels.
giskardwasright t1_j22gnwm wrote
Reply to comment by bloode975 in ELI5: How does "acquired taste" work? And how are some tastes able to be acquired no problem, while others will never be acquired? by PuzzleBrain20
I like actual strawberries with vanilla ice cream, but that's as far as I'll go. My husband likes strawberry shakes and I tried one a few years ago to see how I felt about it. Still no thank you.
bloode975 t1_j22g8gp wrote
Reply to comment by giskardwasright in ELI5: How does "acquired taste" work? And how are some tastes able to be acquired no problem, while others will never be acquired? by PuzzleBrain20
Oh I'd cry, I love strawberry icecream
giskardwasright t1_j22fk3j wrote
Reply to comment by bloode975 in ELI5: How does "acquired taste" work? And how are some tastes able to be acquired no problem, while others will never be acquired? by PuzzleBrain20
Strawberry ice cream for me. It's been over 35 years and I still don't like it.
DavidANaida t1_j22esgw wrote
Reply to comment by [deleted] in ELI5 What is the purpose of continuously spinning a lasso before throwing it? by Asian_1nvasion
This doesn't answer the question.
bloode975 t1_j22dsnw wrote
Reply to comment by police-ical in ELI5: How does "acquired taste" work? And how are some tastes able to be acquired no problem, while others will never be acquired? by PuzzleBrain20
On the vomiting with a food you used to like, when I was a kid I'd had a bunch of chocolate in the morning, like alot of chocolate, turns out I'd gotten food poisoning the night before and spent the entire day vomiting up chocolate and shitting myself, once you've tasted partly digested chocolate mixed with bile lemme tell you chocolate loses most of its appeal.
Cal_G t1_j22dona wrote
Reply to comment by GovernorSan in ELI5, Why can't STDs be cured/irradicated by isolating the disease through infected people? by AnanomusMan
You sat if like that’s a possibility
constantwa-onder t1_j22bxls wrote
Reply to comment by NuAngel in ELI5 What is the purpose of continuously spinning a lasso before throwing it? by Asian_1nvasion
Also, using the momentum of spinning can help the thrower adjust the size of the loop. You can feed more rope in to make the loop bigger, or pull it back to shrink the loop. Little adjustments on the fly before throwing.
Weary-Lie-3581 t1_j22aepg wrote
My wife's flow was always heavy. She said pregnancy wasn't bad. Never got morning sickness or anything like that. She said the worst part about being pregnant was the postpartum depression afterwards.
Keep in mind that this is just one person's experience, and she's only been pregnant once.
TipEffective3625 t1_j229oce wrote
No.
There are some health conditions that can cause abnormal or irregular periods and also affect fertility. For example, PCOS and hypothyroidism can cause heavy periods and make it harder to conceive, or increase the risk of miscarriage. Endometriosis can cause heavy periods and increase the risk of complications in pregnancy.
But there is no known connection between the rate of flow in normal periods, and the intensity of pregnancy symptoms.
egoalter t1_j228faf wrote
Reply to ELI5: What is a network port? by Brianprokpo456
All communication on a TCP/IP network needs a socket pair for communication for destination and source. This means IP/PORT for both sender and receiver. They are equally important to make communication work because a computer representing an IP run more than one thing at a time, but each process that runs need a unique transmission pipe. That's the sender port. The destination is "what service" do you want - in general servers have many programs running to handle different incoming traffic. In other words, an IP by itself doesn't work. Just like the type of protocol can be different. Some protocols use different ways of addressing the service (such as ICMP) but in general the sender specifies what service the data is meant for.
A bit more technical, when you write server code that responds to incoming network traffic you bind/select a given port, telling the OS that traffic that comes in to this port is responded to by your process. Only ONE process can do this at a time. Some ports are restricted and a lot of ports have been standardized (see /etc/services on Linux) but to the computer the number is arbitrary. You can easily make your web-server respond to incoming requests to port 7777 if you want. It's just a number.
The sender's port number is very rarely specified manually (but you can). The OS provides a pool of free sender port numbers and assigns a "random" port number when you open a connection. Every time you open a connection a new port is created, and if the programmer forgets to close the connection the OS will quickly run out of port numbers in the pool. But the IP/port of the source/destination stays the same throughout the whole communication. A lot of this is small/quick communication - when you browse a web-page you're often directed to 10,20 or more sites for style, scripts and more - each of them the browser creates a separate connection to (although modern protocols can share connections to the same server). Point is, that the socket pairs are key to identify the connection.
[deleted] t1_j227qww wrote
Reply to ELI5 What is the purpose of continuously spinning a lasso before throwing it? by Asian_1nvasion
[removed]
Dorocche t1_j2279ge wrote
Reply to ELI5: How does "acquired taste" work? And how are some tastes able to be acquired no problem, while others will never be acquired? by PuzzleBrain20
Is there research into the idea that there are any tastes that can't be acquired with repeated exposure over time? I wouldn't be surprised if there weren't.
UnashamedLiar OP t1_j226zv7 wrote
Reply to comment by hurricaneK in ELI5: Does period flow level impact how you feel while pregnant? by UnashamedLiar
Yes, period flow before pregnancy
[deleted] t1_j226xhk wrote
TheLuminary t1_j226tz5 wrote
Reply to comment by _OBAFGKM_ in ELI5: If astronomers use "light-years" for interstellar distances, why do we use AU for interplanetary distances instead of "light-minutes"? by concorde77
Ah.. yes, I suppose having custom units for those specific equations where the constant is 1 would be handy.
[deleted] t1_j226qbs wrote
Reply to ELI5 What is the purpose of continuously spinning a lasso before throwing it? by Asian_1nvasion
[removed]
SpecialistAd5537 t1_j22lcqe wrote
Reply to comment by aristophanesbeard in ELI5 What is the purpose of continuously spinning a lasso before throwing it? by Asian_1nvasion
Sure it is... he asks why spin and my answer was basically showmanship as seen in a rodeo.