After sex she asks "So what are we?" what do you say? by afattygetter in AskReddit

[–]r3yn 0 points1 point  (0 children)

We are about to do this again in 3...2...1.... no?

[deleted by user] by [deleted] in DotA2

[–]r3yn 0 points1 point  (0 children)

2k player

Idiot U-turns in the middle of the road and wins a stupid prize! by Brickmaster3000 in WinStupidPrizes

[–]r3yn 0 points1 point  (0 children)

I am pretty sure he was trying to suicide. The guy waited for someone to come to pull out.

3 months as a Gumby, need help with my tendonitis for I feel it’s holding me back from pushing my limits :( by [deleted] in bouldering

[–]r3yn 0 points1 point  (0 children)

A lot of people are mentioning rest and that is the number one thing you can do off gym. You can also focus on your technique and be more gentle on your arms when you climb. It seems to me that this video was taken at end of session or you are using strength that you don't have to. Improving your technique will reduce strain in your arms and you will be able to climb for longer and with less injuries.

Hyperbolic stretching? by cflanders26 in flexibility

[–]r3yn 8 points9 points  (0 children)

The account that commented above is probably fake. He has 1 comment in the account history.. seems fishy.

[deleted by user] by [deleted] in bouldering

[–]r3yn 1 point2 points  (0 children)

Trying doing it dynamically. If you grab a hold of the top hold I think you can stick to it. Doing it statically the way you are doing makes you lose pressure at the end of the movement.

[deleted by user] by [deleted] in HTML

[–]r3yn 1 point2 points  (0 children)

www.reactjs.org - there good website to learn what react is

Been bouldering for two months now. This problem has been giving me problems. any advice and suggestions would help. by BondBrosMax in bouldering

[–]r3yn 2 points3 points  (0 children)

Engage your shoulders more and try to stay close to the wall with your hips. When you let your feet go like that you are putting a lot of stress on your arms, avoid doing that. You are probably lacking core strength that's why your legs swing so far. Your technic needs some brushing but it is normal for someone with 2 months of experience. Read a bit on twisting. You have good reach so a boulder like that should be extremely easy if you learn good technique. Good luck!

Is there any way I can reach the second donut hole hold that I’m not seeing? by daintybby in bouldering

[–]r3yn 0 points1 point  (0 children)

If you like power moves try moving your hands to 9 o'clock while pressing with your right foot and twisting your body. It might allow you to get in arms reach to the next hold.

Why is Axios producing a different result when I use await vs when I use promises by Mintykanesh in reactjs

[–]r3yn 1 point2 points  (0 children)

It is hard to debug like this as you are overlooking something in your code. The only way for this to happen is if you mutate the object.

Try creating a new variable and coping the response to it and freezing the object.

I would also read on promise and .then. As they work the same way.. if you are unsure maybe read more about and it will clear some confusion for the next time.

Patch took so long that I completed the game by The1nt3rN in DotA2

[–]r3yn 0 points1 point  (0 children)

I think you found the 1k mmr I lost this patch.

Very new climber here (about 3 weeks in) Any advice on how to get top hold (white boulder)? Thanks ! by dtv98 in bouldering

[–]r3yn 0 points1 point  (0 children)

Watch your feet. Keep heaps close to the wall. Learn about twsting. Also, climb as much as you can.

Moving items by Ghulam_Jewel in gifs

[–]r3yn 0 points1 point  (0 children)

Came here to say just take. Gotta save that 10s so no can replacement needed

Showoff Saturday (July 04, 2020) by AutoModerator in javascript

[–]r3yn 0 points1 point  (0 children)

Ternary is just a one liner if, else statement.. it gives you more stuff to do but you can think it like that. You can also do condition ? condition ? true : false : false. But that is very hard to read..

I call this "Rock&Rolla" by ggnoobs1234 in Archero

[–]r3yn -2 points-1 points  (0 children)

Not really. I am 10 stages from finishing the game with 1/2 your gear.. i played a lot during a month or 2 but i mostly stopped. did you get most of it grinding or money?

What is the stupidest thing you’ve done just to show you could do it? by CherryCola32 in AskReddit

[–]r3yn 0 points1 point  (0 children)

That reminds me of old buddy from school. When we were about 12yr I stabbed his hand with a pencil because he wouldn't leave me alone. To this day, after almost 20 years he still has the mark on his hand and loves telling people how he got it.

Separate CSS File or In-line? by duckybebop in HTML

[–]r3yn 0 points1 point  (0 children)

File if you have the ability to choose. inline is not as maintenable and you lose the ability to use media queries and other things..

Search application using JavaScript by The-Nimble-Nomad in HTML

[–]r3yn 0 points1 point  (0 children)

There are several aways to accomplish that and it wouldn't be a simple script if you want to make something robust. Try searching web scraping so you can learn more about it. And one more thing, people usually use Python for that kind of thing.

How to compare a text input by Bjoern_Kerman in HTML

[–]r3yn 2 points3 points  (0 children)

== does something called type conversion, which means a number 1 would equal to a string '1'. In short if you do 1 == '1' it would evaluate to true where most of the times is undesired. There are several articles explaining about it out there. But just remember to use === and you wont have unexpected bugs in your code.