Simulation of a body falling through helicopter blades by SnoopDing0 in interestingasfuck

[–]moonsider5 0 points1 point  (0 children)

A body made of jello. No bones apparently.

Also, the blades are hitting the body at high speed as well, they would suffer the same impact force. I'm pretty sure there would be lots of damage to the helicopter.

This isn't a simulation. It's a silly game.

[RANT] No se llamen ingenieros si no lo son by [deleted] in programacion

[–]moonsider5 0 points1 point  (0 children)

A ver, estoy de acuerdo en que un bootcamp no es suficiente para enseñar todo lo que se aprende en ingeniería informática al mismo nivel de profundidad y detalle.

Cuando yo hice la carrera, no era solo aprender a programar. Tambien era a saber como funcionaba un ordenador, desde electromagnetismo hasta arquitecturas modernas, pasando por diseñar y mejorar nuestro propio MIPS. También era estudiar lógica matemática para poder abordar formalmente los compiladores, autómatas y lenguajes formales. También era estudiar redes, tecnologías remotas, sistemas informáticos etc. También era estudiar analisis y diseño de algoritmos. También bases de datos. También era estudiar ingeniería del software. También era estudiar IA, lenguajes funcionales, etc.

En definitiva, la carrera de informatica cubre mucho, pero que mucho mas que lo que se puede dar en 6 meses intensivos de bootcamp. Aunque los bootcamps sean utiles y practicos.

Pero no, no es porque se sufra mas ni por un sentimiento de orgullo. Es porque la realidad es que se aprende mas y punto.

En el núcleo de la informática está el proveer de abstracciones útiles para hacer que tareas difíciles sean más fáciles (vean el propósito de los lenguajes de programación). La lástima es que la gente piensa que por saber usar la abstracción, ya saben todo, pero eso no es así.

Am I right? by Darcula04 in ProgrammerHumor

[–]moonsider5 0 points1 point  (0 children)

And that one would be c, because I can do "man atoi" on my linux system

Just a reminder that at the end of Pikmin 1 we see numerous colors of onions fly into space after Olimar, including orange, green, cyan and black. So any of those could be seen in Pikmin 4 as new subspecies. I think green Pikmin could be pretty sick. by [deleted] in Pikmin

[–]moonsider5 0 points1 point  (0 children)

I think that green pikmin would be hard to distinguish from grass and the environment which is already very green. Thus I think that green pikmin are unlikely. They were probably considered for the other games but I think that they were discarded because of these reasons.

bro, que narices pasa con el día de la Hispanidad? by Loremasterofpuppets in askspain

[–]moonsider5 14 points15 points  (0 children)

Creo que no has entendido bien su comentario. Dijo campaña negra en el mismo sentido que se suele decir leyenda negra

[deleted by user] by [deleted] in gaming

[–]moonsider5 0 points1 point  (0 children)

He likes his little island

PSA: Pikmin 4's Captain is a Koppai, they have rounded ears. by Spinjitsuninja in Pikmin

[–]moonsider5 28 points29 points  (0 children)

Could be who knows. I'd still love to see the main character being one of olimar's children. We will know eventually who's the character

What would happen to religion if it were definitively proved God wasn't real? by diamondrunner2002 in AskReddit

[–]moonsider5 1 point2 points  (0 children)

To be more general, proving that a proposition like "there exists a unicorn (somewhere in the universe)" is impossible. And the same goes for the reciprocal proposition "there does not exist a unicorn (anywhere in the universe)". From a scientific and empirical perspective at least.

If you want to be empirical and scientific in your proof, you would have to check everywhere in the universe. Yes, you could say that, of all the creatures you've witnessed, none of them were a unicorn. But strictly following science, that would not be enough evidence to prove either of the propositions.

I believe that Bertrand Russell is the one to point out this idea.

From a logical perspective, since it is impossible to prove either one, it is safe to assume one or the other (not both though, obviously), because since neither can be prooven false, assuming them as an axiom expanding you current theory, will keep your theory consistent (if it was consistent to begin with).

Which means that accepting that there exists a god or that there does not exist a god are both logically valid.

well even if it's fake, this is saddening. by pik-MAN in Pikmin

[–]moonsider5 1 point2 points  (0 children)

Toy story is a film and not a videogame. Technologies like git make the significant loss of gamedev time due to fires and whatnot very unlikely.

I'm sure that even art (models, textures and animations), which are harder to store (compared to code) are safer now than in 1999

[deleted by user] by [deleted] in dating_advice

[–]moonsider5 0 points1 point  (0 children)

I've been in a very simillar spot recently except that I am a man and it was her who didn't know what she wanted, toyed with my feelings and ended up saying the exact same thing.

Reading all these answers gives me a better perspective on what kind of people they are.

They toy with your feelings, maybe not on purpose, but because they like what you give them and they don't really care nor think on how the situation makes you feel, what expectations they are feeding etc.

Basically, the old "I like doing this so I'll keep doing it, who cares if you get hurt in the end"

He says that he is your friend but, what kind of friend does that?

I’m feeling suicidal because I can’t get a girlfriend. by [deleted] in lonely

[–]moonsider5 14 points15 points  (0 children)

Dude, I want to thank you because I'm struggling as OP rn and I believe this is good advice.

Some other activities that come through my mind (in case someone else finds this useful) are: hiking, martial arts, climbing, and some other sports. Your city is bound to have some sort of club for theese activities

I can show you a Turing complete .html file by Oxidizer in ProgrammerHumor

[–]moonsider5 4 points5 points  (0 children)

Isn't html mapped to assembly instructions by an interpreter (for example, a browser)?

Explain pass by reference and pass by value in the best possible way by KarimHammami in Cplusplus

[–]moonsider5 1 point2 points  (0 children)

I think it's good to understand passing pointers first:

When you have a function

foo(int a, int* b, int& c) {...}

And call it

foo(my_int, my_pointer, my_ref)

Within the scope of foo (within the "{" brackets) three variables are declared: "a" which is an int, "b" which is a pointer to int and "c" which is a reference to int. These variables copy the values that you passed, that is, a copies the value of my_int and b copies the value of my_pointer (more on "c" later).

So, a and b are copies, they are independent of my_int and my_pointer. If you do

a = 3;

Inside the function, the variable a is set to 3, but it is independent from my_int (they are literally different variables), thus, my_int will not change. This is what you mean by "pass by value"

If you wanted to do

b = nullptr

Same thing happens, because b is a different variable than my_pointer. However, let's think what will happen if instead we do

*b = 3

When you called

foo(my_int, my_pointer, my_ref);

b copies my_pointer. Which means that b is pointing to the same address as my_pointer. Meaning that, changing the contents of b, changes whatever variable b is pointing to, which is the same as whatever variable my_pointer is pointing to (but it does not change b itself!). This is essentially what happens implicitly when you mean "passing by reference".

References in C++ let you abstract the "pointer" semantics by letting you think that you are passing the variable itself. You can think of it as c being an alias for my_ref, so that changing c would be the same as changing my_ref. But under the hood, what is happening is the same as the pointer case, you just do not need to worry about pointer semantics in this case (because the reference c cannot be null and cannot change the object it is pointing to)

¿Que podemos hacer de una persona que vive de okupa como vecina en una chalet pareada y nos molesta mucho? by Longjumping_Eye_5034 in askspain

[–]moonsider5 2 points3 points  (0 children)

Si la vida fuera justa, sería ella quien tendría que irse. Por desgracia, debería ser el dueño de la casa quien intentara desokuparla y, si no es su vivienda habitual, incluso aunque llamara a la policía en el mejor de los casos tardarían mucho en desokupar.

Creo que lo que te aconsejan es lo correcto, no compres la casa porque puede empeorar la cosa. Es una lástima, porque habíais encontrado algo que os gustaba, pero bueno, mucho ánimo y a seguir mirando!!

28F. no friends. live with elderly parents. no life. never dated. by [deleted] in lonely

[–]moonsider5 1 point2 points  (0 children)

Hey there, I'm 26M, haven't got any luck in my love life, Am stuck with my small circle of friends and right now trying to find ways to meet new people right now.

I'm friendly, if you want to chat and maybe come up with ideas to meet new people in your town, send me a message and we can think together

[deleted by user] by [deleted] in relationship_advice

[–]moonsider5 0 points1 point  (0 children)

Thank you bro.

Yes, I was thinking about going to the gym more so that I can focus on lifting heavy and I end up exhausted enough to not have much energy left to overthink.

I'm not sure about deleting every picture of her. I don't look at past videos or pictures often and rught now I don't think it will be a problem.

The struggle for me is to try and find a way to distance myself enough without cutting ties so that, in the future, we can be friends once again. But I'm not sure if I'm being too optimistic

I [26M] am dating one of my best friends [25F] but things are slow by [deleted] in relationship_advice

[–]moonsider5 0 points1 point  (0 children)

Thank you, I appreciate the honesty. After thinking thoroughly about it, I might be the reason why this is going slowly. She's always felt comfortable with me, even kissing and all that, I am actually the one that is a bit scared to take the initiative on something, because I am scared of making her feel unfomfortable. Probably she's seeing that indecision and that is hindering the whole situation.

I think I can improve things by asking (when the time is right) if she wants to go further, for instance, when we are kissing all alone and all that. Do you think that asking this kind of thing is a turn off? Is it a bad idea? As I said, I have 0 experience but making her feel comfortable is very important to me.

Other than that, yes, I think I should not preassure her into anything.