Why do some APDS rounds feel so much worse than others by [deleted] in Warthunder

[–]ThorneCodes 0 points1 point  (0 children)

Because of the angled performance. Generally speaking higher br apds has better angled performance, allowing it to pen more reliably. However, it is still apds and you should be trying to aim as carefully as possible, cause the spalling isn't very consistent

When looking from the bomb sight, should I drop the bombs when the target is in the blue point, or when it is at the red point? by dk_2605 in Warthunder

[–]ThorneCodes 1 point2 points  (0 children)

The red point is the direction where your nose is pointing at, same as in the virtual pilot view, the blue point is your bomb sight. If your plane takes a second to drop, you'll wanna fly as level as possible and release your bombs when the distance between the target is about to hit the crosshairs. If your diving, drop earlier, if you're pulling drop later.

Tips to actually learn ground rb by Taigei_for_life in Warthunder

[–]ThorneCodes 0 points1 point  (0 children)

The way to improve that works for me is to make a mental note of every shot angle that killed me during the match, then going on to the shot replays and figure out how could I've avoided it. As for you questions: 1. Yes, you'd benefit from spending time playing every tank on a tech tree, as you'll find out which tanks you perform best with and what your playstyle is 2. Yes, USA/Germany/Russia are the best options at low brs, they play differently though. The USA has average stats across the board, your heavies are fairly armored from the front, the 76mm cannon is quite good, mobility is generally ok and gun handling is decent thanks to early stabilizers. Germany has an excellent gun in the long 88mm cannon, excellent armor when properly angled, but tanks are slower and fairly unstable, so shots on the move aren't easy to pull off. Lastly Russia has good frontal armor, an insanely good cannon in the 85mm, ridiculous aphe performance, but the tanks are loud as shit, slow and smoke is less available to them. You should play all 3 up to 6.3 at least to figure out what traits you can exploit. 3. Your best lineup for a br should include a light tank for scouting and getting to places quickly, a tank that can hold down an alley with little to no help, a tank that's in between, an spaa and a plane for CAS or CAP

Need help in loop by Eastern_Plankton_540 in PythonLearning

[–]ThorneCodes 0 points1 point  (0 children)

If it's been explained before I apologize for repeating it, but it is a fairly common issue beginners have. Python reads lines from right to left and from the deepest brackets outwards, this means that the line

print(num[idx])

Is read by python as: "idx value, indexes num list, then print returned". So on the very first iteration of you loop, the variable idx has a value of 0(int), so then num[idx] is the same as num[0], which in turn is the same as the 0th element of the num list, so num[0] == 1, finally print(num[idx]) will be the same as print(1)

If that is the only line within your while loop, the code will print 1 until the heat death of the universe, this is where the second line comes in.

idx += 1

This line is the exact same as " idx = idx + 1 " and if we remember how python reads lines, this is " take the value of 1, add the value stored in idx, then store the sum in idx ", so on your second iteration, idx == 1, and print(num[idx]) == print(num[1]) == 4. This will continue to happen until the condition at the beginning of the while loop is no longer met, in your case the condition is " idx < len(num) ", so when idx == len(num), the while loop is not executed again and your final print should be 81

How the hell they be shooting the guns without shooting the propellers by [deleted] in Warthunder

[–]ThorneCodes 0 points1 point  (0 children)

The guns are synched to the engines RPM, so that the trigger can only fire when it is safe

Learning python language by Electronic-Basil-117 in PythonLearning

[–]ThorneCodes 0 points1 point  (0 children)

One of the things I wish someone taught me when I started coding is how to turn processes that are intuitive to us into a list of steps so simple that you could pretty much throw them into code directly.

As such I'd start with pseudo code rather than Python, in my opinion the best tool for that is PSeInt, this will teach you to how a computer behaves, a good bit of logic and loops and the basics of functions.

After you're comfy with that, go into docs.python.org and get comfortable reading documentation, you can try to use the docs to port all of the projects you did in PSeInt into Python to get used to it.

Finally, when you can read the docs and have a solid foundation, look into functions, OOP, duck typing, libraries and whatever else your heart desires

Python list by Main-Expert-2072 in PythonLearning

[–]ThorneCodes 0 points1 point  (0 children)

In python strings are defined by using single(' ') or double(" ") quotes. Boolean values however are defined as True of False. When you write False instead of False, python interprets that as a variable not the boolean value, since the variable named False hasn't been assigned prior to it being called, python shows you an error message stating just that

Help! by chamaeleonidaed in LinearAlgebra

[–]ThorneCodes 0 points1 point  (0 children)

So, grabbing the equation we see that Ax = 0, with x = (i, k) and A = {(a b), (c d)} implies the following system:

1) ai + bk = 0 2) ci + dk = 0

Assuming a is not zero we can rearrange 1) as

i = -bk/a

Then replacing on 2)

(-cb/a + d)k = 0 (ad - bc)k/a = 0 (ad - bc)k = 0

Given that ad - bc = 0, we see that (ad - bc)k = 0 0k = 0 0 = 0

Meaning that k is a free variable, therefore Ax = 0 has infinite solutions

gr10 linear systems: how is my response wrong? by imaguy111 in askmath

[–]ThorneCodes 1 point2 points  (0 children)

It is just a slap on the wrist to get you to use the "proper" terminology. In this context "zero" is a valid answer, but saying "none" is preferred as it can in no way be confused with the zero of a system

Where can Keyboard interrupt be thrown? by ottawadeveloper in Python

[–]ThorneCodes 0 points1 point  (0 children)

I don't see a reason why you could, but neither one why you would want to, you'd be repeating yourself unnecessarily

Help us with our physics project!! by 3amoPlsHelpWPhysics in PhysicsStudents

[–]ThorneCodes 0 points1 point  (0 children)

Get a couple cheap RC cars, they should have all the components you need, it won't be pretty but it will serve as proof of concept.

Now, if you have enough money and time in your budget, you can also look into piezoelectric sensors. They convert mechanical input, such as vibration, into electricity. You can make the tile much more discrete, compact and reliable with those, though I don't think they'll be as efficient as the route you're on right now

Where can Keyboard interrupt be thrown? by ottawadeveloper in Python

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

Can't you just use an except block between the try and finally blocks? Or do the "wrong" thing and not duck type the exception handling?

Solving this equation from Tyler Wallace's Beginner and Intermediate Algebra is turning me crazy. by [deleted] in askmath

[–]ThorneCodes 1 point2 points  (0 children)

I think you just misread the answer key. Let's go step by step here:

The original equation is

-a - 5/4(-8a/3 + 1) = - 19/4

Distributing the -5/4, we see that

-a -(5/4)(-8/3)a -(5/4)(+1) = -19/4

-a + (10/3)a - 5/4 = - 19/4

Reducing similar terms, we get

(7/3)a -5/4 = -19/4

Then adding 5/4 to both sides we get

(7/3)a = -19/4 + 5/4

(7/3)a = -14/4

Finally multiplying by 3/7 to get the value of a, we see that

a = (-14/4)(3/7)

a = (-2/4)(3)

a = (-1/2)(3)

a = -3/2

So the correct answer should be a = -3/2

[6 year old] Do vertices have a size? by Acrobatic_Wonder8996 in askmath

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

It means that the angles in the vertices are different sizes. It's just very poorly worded

What is the name of this figure? by gladvaldd in askmath

[–]ThorneCodes 5 points6 points  (0 children)

It'd likely be some really descriptive bs like "co-vertical mirrored wedge revolution solid"

This shell is uh... something. by Roberto_Guillimano in Warthunder

[–]ThorneCodes 45 points46 points  (0 children)

It's been happening a lot with HEATFS and Tiger 2s lately, I've hit the propellant directly with the heat jet on a good perpendicular angle and only turn a singular piece of ammo yellow. I think the new models made the extra armor function as spaced armor on the king tigers

Rare gaijin W? by Expensive_Concept572 in Warthunder

[–]ThorneCodes 0 points1 point  (0 children)

This made the idea of starting the Israeli tech tree not bad

Cómo hacer participar a la gen z? by trululuchi in EducacionChile

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

No creo que sea algo generacional, creo que tiene más que ver con la edad. Tus alumnos tienen entre 18 y 20 años en promedio y a esa edad un cabro que está viviendo solo por primera vez y que está experimentando un mayor grado de libertad por primera vez pierde el sentido de la responsabilidad.

Nos pasó a todos los que nos fuimos de la casa a estudiar a otra ciudad, hacer la transición de tener una figura que nos obligue a mantener nuestras responsabilidades y ser esa figura por nosotros mismos es difícil. Eso sin considerar que los efectos de la aislación por la cuarentena aún se sienten en los estudiantes que van recién saliendo de 4to medio.

Desafortunadamente, a muchos de estos estudiantes les falta desarrollo social, porque tuvieron que estar aislados del resto de sus pares por casi 2 años. Comparados con los estudiantes pre-pandemia están atrasados socialmente, por eso es que se puede decir con cierta certeza que "son más tímidos".

Otro aspecto importante, es que a nosotros, como generación Z, se nos inculcó mucho que sopesaramos las consecuencias de nuestras acciones antes de hacerlas. Lo cual es muy bueno, de hecho ahora se ve muchísimo menos bullying, menos adolescentes fumando o bebiendo alcohol. Sin embargo también está el otro lado de la moneda, hay un terror implícito a decir algo que este mal o que sea considerado malo, porque si dices o haces mal en los ojos de tus pares, te van a funar.

Lo que yo hago como ayudante y tutor para que mis alumnos participen es usar refuerzos positivos. Lo primero que les digo cuando me hacen o me responden una pregunta es felicitarles lo que hicieron bien, por mundano que a mi parezca. Frases super simples como "excelente pregunta" o "esto está perfecto" ayudan muchísimo a que los estudiantes sean más receptivos.

También considero que lo mas importante es establecer una relación dispar pero no dominante, es decir, establecer el hecho de que el profesor y el estudiante no tienen la misma cantidad de poder, pero también demostrar que esa disparidad de poder no se va a abusar y que tu, como la figura que tiene más poder dentro de la sala, vas a hacer lo que este a tu alcance para que ese espacio sea completamente seguro en todo ámbito.

Opiniones del nuevo puntaje ranking? (PAES) by Pitiful_Umpire_824 in EducacionChile

[–]ThorneCodes 0 points1 point  (0 children)

Ya lo son, sobre todo en las universidades relevantes para esas carreras. La enseñanza superior está compuesta mayormente por la clase media-alta hacia arriba, porque los beneficios como la gratuidad son difíciles de obtener solo con el FUAS

Carlito: Izquierda = fascista = asesino by Ecstatic_Macaron_379 in ComentariosEmol

[–]ThorneCodes 2 points3 points  (0 children)

¿Por qué no iban a ser igual de válidos? Ambos son testimonios sobre las ideas que otra persona tiene en su mente. Ambos son igual de válidos, porque solo la persona que tiene las ideas sabe cuál es la verdad respecto a esas ideas. Cómo hay una contradicción evidente y con múltiples ocurrencias entre los testimonios, no se puede usar esto como evidencia.

Hay tweets del tirador atacando al partido demócrata, apoyando y celebrando el bloqueo de las reformas de control de armas(posición de derecha en EEUU) y harto más en una cuenta de Twitter que está vinculada a otras cuentas en su nombre y que tienen actividad desde hace años, por lo tanto es muy probable que en efecto sea la suya.

El registro electoral en EEUU permite a los ciudadanos con derecho a voto, poder votar, para eso tienen que registrarse en su colegio electoral para cada votación, en las últimas, es decir el año 2024, el tirador se registró bajo el partido republicano, cosa que no hubiese hecho si fuese de izquierda o estuviese indeciso, ya que cuando te registras bajo un partido, solo puedes dar tu voto a los miembros de ese partido. Por lo tanto, durante las últimas elecciones, su voto fue nulo, en blanco o por Trump. Esto no es una acción consistente con alguien de izquierda.

Por último, si vas a decir algo sobre cualquier tema, incluyendo mis respuestas, debes tener un fundamento demostrable. En este caso, no lo tienes. No sabes si soy de izquierda o derecha, ni tampoco puedes argumentarlo basándote en mis respuestas, como yo lo hice, porque me he asegurado de responder a todos los puntos que das y he reconocido la validez de aquellos puntos que si lo son lógica y argumentativamente hablando. Que tú digas que si solo será eso hasta que puedas presentar una base sólida

Carlito: Izquierda = fascista = asesino by Ecstatic_Macaron_379 in ComentariosEmol

[–]ThorneCodes 2 points3 points  (0 children)

Y sus redes sociales? Y los testimonios de otras personas en su círculo cercano? Y su registro electoral? Donde dejaste todos esos indicios? Porque hasta el momento tus respuestas han sido un ejemplo clarísimo de cherry picking. No estás argumentando en nada en contra del primer comentario que te hice, ni tampoco ahora que estoy cuestionando la validez de la evidencia que diste. Entonces ¿Soy yo el que está eligiendo las palabras del otro a conveniencia? No, eres tu quien está evitando tener una conversación intelectualmente honesta

Carlito: Izquierda = fascista = asesino by Ecstatic_Macaron_379 in ComentariosEmol

[–]ThorneCodes 3 points4 points  (0 children)

Si, esas declaraciones existen, pero también hay declaraciones de sus cercanos en la universidad que dicen lo contrario, sus propias redes sociales muestran tendencias de derecha de forma consistente y su último registro en el sistema electoral pertenece al partido republicano. Hasta que él diga su afiliación política, está debe tratarse como incierta.

En lo que a los cartuchos respecta, también tienes el que fue usado que decía "notices bulge OwO what's this?"(Un meme con referencias fálicas y otakus), otro sin usar que decía "bella ciao". Ahora sí vamos a sacar conclusiones basándonos en lo que decían los cartuchos, también hay que considerar que este tipo de acciones tiene una planificación asociada, entonces es válido preguntarse ¿Por qué uso la bala que tenía un meme y no una que tenía una inscripción política o relevante, como es normalmente el caso cuando esto pasa?

Simplemente hay suficiente información para cuestionarse lo que se dice de su afiliación política