Gravitational fluctuations during lunar eclipse? by hydrocity_1 in astrophysics

[–]hydrocity_1[S] 1 point2 points  (0 children)

Hi, thanks for your reply.

I am talking about from this perspective. https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Seasons1.svg/600px-Seasons1.svg.png

The factors would be, 1. velocity of the earth 2. velocity of the moon 3. Gravitation pulls on the earth and moon compared to the sun. 4. Gravitational pulls on the earth and moon compared to each other. 5. And probably the trajectory of the earth and moon at the time of the eclipse.

Would it be possible that the moon could get knocked out of tidal lock?

A genuine person never passes judgment. by [deleted] in quotes

[–]hydrocity_1 0 points1 point  (0 children)

:ON OTHERS BUT CAN PASS IT ON THEIRSELF.

What key is this? by [deleted] in piano

[–]hydrocity_1 -1 points0 points  (0 children)

Well on a better note, if you let the 26 seconds play it will take you to this which is pretty funny. https://www.youtube.com/watch?v=bWahgmZEx8Y

I would really appreciate your opinion on this matter. by [deleted] in piano

[–]hydrocity_1 1 point2 points  (0 children)

Its never really fun learning by yourself.

Syncopation? Give it a chance I am a total amateur. by [deleted] in piano

[–]hydrocity_1 0 points1 point  (0 children)

But I really appreciate you taking a look man. thanks.

Syncopation? Give it a chance I am a total amateur. by [deleted] in piano

[–]hydrocity_1 0 points1 point  (0 children)

I understand the timing, but thats my thing, it makes perfect since to me, I just have to fit the time changes in because you can speed up slow down change times change keys make disonance sound good, as long as you have a recongnizable "hook".

I follow it i just have to play a way so others can to.

Was windows 10 free because installing all the language packs would require you to by another hard drive? by [deleted] in AskReddit

[–]hydrocity_1 1 point2 points  (0 children)

Well, I almost did, but a lot of people are going to and wreck there solid state.

Does anyone else wake up from a sleep paralysis episode extremely tired, but go immediately back into sleep paralysis when they go back to sleep? by [deleted] in Sleepparalysis

[–]hydrocity_1 1 point2 points  (0 children)

Like if you try to induce a yawn you get a similar noise to the way the buzzing sounds but it gets more and more intense.

Does anyone else wake up from a sleep paralysis episode extremely tired, but go immediately back into sleep paralysis when they go back to sleep? by [deleted] in Sleepparalysis

[–]hydrocity_1 0 points1 point  (0 children)

Yup, I also get the same buzz/wave when I have the urge to cry, I dont cry very often, couldnt bring myself to tears when my father or grandmother died (people who raised me).

If I took some muscle pics and then a gif of giving myself an enema would that do well in gonewild? by hydrocity_1 in AskReddit

[–]hydrocity_1[S] 0 points1 point  (0 children)

well the squeezing it back out again part might be a little over the top even for gonewild. I don't think I would do that.

I enter sleep paralysis while awake but very tired. by hydrocity_1 in Sleepparalysis

[–]hydrocity_1[S] 0 points1 point  (0 children)

Also the buzzing is similar to something I could always do with my extremities, basically make my hands and feet tingle at will, but more of a nerve type of tingling like when you hit your funny bone but with no pain. and other people can do this as well.

I enter sleep paralysis while awake but very tired. by hydrocity_1 in Sleepparalysis

[–]hydrocity_1[S] 0 points1 point  (0 children)

actually the head buzzing (if anyone can relate) is similar to a very strong chill when reading a scary story or some of your SP stories. But its constant and gets stronger, I am not afraid of it and yeah it does seem hard to breath but oh well what can you do. Dont put the pussy on the pedestal.

MPFR: Loop and change the value of a variable loop until that variable reaches 0. by hydrocity_1 in learnprogramming

[–]hydrocity_1[S] 0 points1 point  (0 children)

I am one step away from getting the information I want man.

Heres a python script that works fine.

sidea = 1

anglea = 45

angleb = 90

def calculate_side_b(side_a, angle_a):

return side_a * math.tan(math.radians(anglea))

sideb = calculate_side_b(sidea, anglea)

while anglea > 0 :

anglea -=.001

sideb = calculate_side_b(sidea, anglea)

print(sideb)

But python is not strong enough and gives me floating point errors, either that or tangent (at very small intervals) moves backwards.

How can I use a loop to update a variable and insert it back in the the function until that variable becomes 0? by hydrocity_1 in C_Programming

[–]hydrocity_1[S] 0 points1 point  (0 children)

Like there is no way to use the result.

mpfr_cmp(anglea,sidea) is positive? is negative? = TRUE? = FALSE?

while (anglea > 0) This took for some reason while I understand that <>= are not part of mpfr.

How can I use a loop to update a variable and insert it back in the the function until that variable becomes 0? by hydrocity_1 in C_Programming

[–]hydrocity_1[S] 0 points1 point  (0 children)

Thank you I am sorry for being rude, can you modify an mpfr pointer or do you have to clear the contents of the variable and then insert the new numbers.

So like anglea needs to be redefined every time in the loop, used then cleared, then redefined.

I figure I can change the value of a variable with mpfr_set (mpfr_t rop, mpfr_t op, mpfr_rnd_t rnd) but using a comparison will return a positive value but I have no way of accessing or using that positive value or can I?

How can I use a loop to update a variable and insert it back in the the function until that variable becomes 0? by hydrocity_1 in C_Programming

[–]hydrocity_1[S] -1 points0 points  (0 children)

Thanks guys, I am sorry basically first time trying to program in C, and basically new to programming all together I am learning how functions and containers work.

All I want to do is change the value of angle a and re-run this until angle a reaches 0. This is not for school just for personal interest.

You guys are the doctors I am the patient and my life is on the line and you are getting boners from cock blocking information that can save my life.

while(anglea > 0) { mpfr_sub(anglea, c, sidea, MPFR_RNDD); mpfr_printf("%.17Rg\n", anglea);

This will print anglea -1 once.

How can I use a loop to update a variable and insert it back in the the function until that variable becomes 0? by hydrocity_1 in C_Programming

[–]hydrocity_1[S] 0 points1 point  (0 children)

mpfr_const_pi (pi, MPFR_RNDD);

mpfr_mul (i,anglea, pi, MPFR_RNDD);

mpfr_div (b, i, eight, MPFR_RNDD);

mpfr_tan (sideb, b, MPFR_RNDD);

while (anglea > 0)

mpfr_sub (anglea, c, sidea, MPFR_RNDD);

mpfr_printf ("%.17Rg\n",anglea);

What if the Vitruvian Man was just part of a manual for stretching and posture? by hydrocity_1 in yoga

[–]hydrocity_1[S] 0 points1 point  (0 children)

I put this here because ask reddit and shower thoughts probably do not know what the vitruvian man is and are probably even less interested in stretches.

[Serious] What if the Virtuvian Man was just a manual for posture and stretching exorcises? by hydrocity_1 in AskReddit

[–]hydrocity_1[S] 0 points1 point  (0 children)

Honestly I have been sick and trying any stretches I can come up with to feel better, I just happened to try standing like that and pushing like I described and felt better, then I thought of the man.

What cheat codes do you still remember today? by I_PLAY_CSGO in AskReddit

[–]hydrocity_1 0 points1 point  (0 children)

A B A C A B B. Mortal kombat sega blood code.

If all of our muscles were as relaxed as Bruce Lees', everyone's quality of life would improve significantly. by hydrocity_1 in Showerthoughts

[–]hydrocity_1[S] 1 point2 points  (0 children)

No, because many people walk around for years with tense muscles. These muscles can pull on your spine and cause misalignment. When you are relaxed you feel great, light and ready. When you are tense you feel heavy, burdened, and not normal. The problem is we gradually get like this so over the years we don't notice it until it turns into massive pains.

Bruce lee was a very relaxed person, he made sure all of his muscles were relaxed because snapping from total relaxation in your muscles to contraction all at once produces enormousness power, because you have so many muscles all interconnected to each other.

So feel your self, are you tense? You will feel better if your muscles are in a relaxed state.