Don't know if you're joking/trolling. Schizophrenia affects 1% of the population and this rate is pretty much constant over the whole world and through history.
Paypal can suck a lot if you're the developer of a suddenly well-known game and receive too much money in a short time. It can suck if you're responsible for a charity whose goals don't fit Paypal's.
But for the average Joe (including myself), it's pretty much perfect, easy to use and free.
+1 But to be fair, it doesn't make sense to update *any* HVAC system before insulating the house. Plus, it's usually cheaper to insulate the roof, top-floor or windows than to install a new heat pump or pellet boiler.
What does placebo have to do with anything in my story? Why shouldn't I get the same placebo effect from massages? Why didn't pills work if "placebos do work"? The chiropractor really helped solve my acute problems, and nothing else did.
Note that I'm not saying that it's the miracle solution for everyone, just like you shouldn't tell everyone that chiropractors can never help and only rely on placebo.
I went to 3 different massagers before going to the chiropractor. It felt good but it didn't relieve much pain afterwards. They all said that my back muscles were so stiff that they couldn't help much.
Chiropractor helped my back problems a few times, during very acute pains (as in : walking, seating, climbing stairs and laying down are all extremely painful). It relieved 80% of the pain in a mere seconds. It's *not* placebo. I could hear my back and neck go "clack/clack/clack/clack/clack". It felt great after the initial schock of hearing very loud noises that sounded similar to movie sound effects when bad guys die from a neck-breaking move. Still, this treatment was needed if I wanted to stop this agony. Painkillers didn't help, neither did conventional doctors.
It didn't solve the underlying problems though : mostly that I sit 10 hours a day in front of a computer, and that the only sport I did was skateboarding (with very unsymmetrical movements).
So now, I try to walk regularly to work. The most important for me is to walk for a long time at a slow pace as soon as I notice my back hurts a bit. I feel great afterwards. Core exercises with a good warm up and cool down help too, as well as a hot bath (or sauna, as you mentioned). I still skateboard, but I push with both feet now.
The order is different, which might become more apparent with nested comprehensions and chained Enumerable methods. For brownie points, you could have written (0..9).select(&:odd?).map{|i| i**2}, which brings us back to Ruby's TIMTOADY against Python's zen ("There should be one — and preferably only one — obvious way to do it").
BTW, Python's range(10) has 10 elements (between 0 and 9), so it's equivalent to (0...10) or (0..9)
Ruby lover here. I can code Ruby while I sleep, but I felt a bit left out because there are so many awesome Python projects. In comparison, there's Rails as awesome Ruby project with a lot of momentum, and.... that's about it.
With Ruby knowledge, it's actually pretty easy to grasp Python. There are a few gotchas and the syntax feels a bit boring compared to Ruby, but it's also easier to read other people's code because it's usually more explicit and a bit less dynamic than Ruby.
I still love Ruby, but it's good to be able to write a few lines of Python and release the power of Numpy/Pandas/Sympy/Matplotlib/NetworkX/... It took me about 2 weeks to learn enough Python to use those libraries, and I still learn new stuff every day.
Some parts of Python's syntax are really nice, e.g. list comprehension :
>>> [x**2 for x in range(10) if x % 2 == 1]
[1, 9, 25, 49, 81]
It's completely different than all the Enumerable methods in Ruby, but it's very powerful and quite easy to read after a while.
This gave me an idea! I'll launch my own Python repository, called PyPl.
I find MATE less bad than Gnome and KDE. Both used to suck less.
It probably means that there should be at least two linux users with uid >= 1000.
It also supports Irma and Jose.
My cheap chinese headphones have continuous playback rated at +infinity hours.
How is facial recognition supposed to work without any button?
Is the camera always recording and scanning even when the phone is supposedly off?
If you have anything planned in the next 10 hours, don't start watching this Youtube video!
You misunderstand the joke.
Don't know if you're joking/trolling. Schizophrenia affects 1% of the population and this rate is pretty much constant over the whole world and through history.
GP has a point though. 1.2% of 7.5 billion is still 90 million.
What does "Jew" got to do with anything?
It depends. Many buyers ask the same price for all payment options, some add a fee for Paypal.
I only use family/friends payments for family & friends :)
They charge the seller, not the buyer. And if you want to send money to family/friends, it's free as well.
- Bob, how many donuts could we buy with $10 000?
- I don't know, around 300?
- Ooooohhhhhhh. Step away from your vehicle, sir!
Paypal can suck a lot if you're the developer of a suddenly well-known game and receive too much money in a short time. It can suck if you're responsible for a charity whose goals don't fit Paypal's.
But for the average Joe (including myself), it's pretty much perfect, easy to use and free.
+1 But to be fair, it doesn't make sense to update *any* HVAC system before insulating the house. Plus, it's usually cheaper to insulate the roof, top-floor or windows than to install a new heat pump or pellet boiler.
Why does it have to be placebo? Do you really claim that the loud noises are the only reasons I feel better afterwards?
What does placebo have to do with anything in my story? Why shouldn't I get the same placebo effect from massages? Why didn't pills work if "placebos do work"? The chiropractor really helped solve my acute problems, and nothing else did.
Note that I'm not saying that it's the miracle solution for everyone, just like you shouldn't tell everyone that chiropractors can never help and only rely on placebo.
I went to 3 different massagers before going to the chiropractor. It felt good but it didn't relieve much pain afterwards. They all said that my back muscles were so stiff that they couldn't help much.
Chiropractor helped my back problems a few times, during very acute pains (as in : walking, seating, climbing stairs and laying down are all extremely painful). It relieved 80% of the pain in a mere seconds. It's *not* placebo. I could hear my back and neck go "clack/clack/clack/clack/clack". It felt great after the initial schock of hearing very loud noises that sounded similar to movie sound effects when bad guys die from a neck-breaking move. Still, this treatment was needed if I wanted to stop this agony. Painkillers didn't help, neither did conventional doctors.
It didn't solve the underlying problems though : mostly that I sit 10 hours a day in front of a computer, and that the only sport I did was skateboarding (with very unsymmetrical movements).
So now, I try to walk regularly to work. The most important for me is to walk for a long time at a slow pace as soon as I notice my back hurts a bit. I feel great afterwards. Core exercises with a good warm up and cool down help too, as well as a hot bath (or sauna, as you mentioned). I still skateboard, but I push with both feet now.
The order is different, which might become more apparent with nested comprehensions and chained Enumerable methods. For brownie points, you could have written (0..9).select(&:odd?).map{|i| i**2}, which brings us back to Ruby's TIMTOADY against Python's zen ("There should be one — and preferably only one — obvious way to do it").
BTW, Python's range(10) has 10 elements (between 0 and 9), so it's equivalent to (0...10) or (0..9)
Javascript easier to scan than Python? You must be trolling.
Ruby lover here. I can code Ruby while I sleep, but I felt a bit left out because there are so many awesome Python projects. .... that's about it.
In comparison, there's Rails as awesome Ruby project with a lot of momentum, and
With Ruby knowledge, it's actually pretty easy to grasp Python. There are a few gotchas and the syntax feels a bit boring compared to Ruby, but it's also easier to read other people's code because it's usually more explicit and a bit less dynamic than Ruby.
I still love Ruby, but it's good to be able to write a few lines of Python and release the power of Numpy/Pandas/Sympy/Matplotlib/NetworkX/... It took me about 2 weeks to learn enough Python to use those libraries, and I still learn new stuff every day.
Some parts of Python's syntax are really nice, e.g. list comprehension :
>>> [x**2 for x in range(10) if x % 2 == 1]
[1, 9, 25, 49, 81]
It's completely different than all the Enumerable methods in Ruby, but it's very powerful and quite easy to read after a while.
Is it a new story? I've read somewhere that it's just a re-edition. How much different is it from the Silmarillion's chapter?
I obviously didn't bother to RTFA.
Relevant movie to your post :
https://www.rottentomatoes.com...
98% Tomatometer, so you cannot go wrong. ;)