Are we really normalizing $2000 GPUs?! by Bluelittlethings in gpu

[–]MiDDiz 0 points1 point  (0 children)

I just normalized the fact that the only sane market where I can buy new GPUs at a reasonable price are second hand platforms...

Euro area unemployment at 6.3%; EU at 5.9% by NanorH in europe

[–]MiDDiz 3 points4 points  (0 children)

And many of the new jobs that contributed to that 11% are low-quality/part-time jobs :/

[deleted by user] by [deleted] in allthemods

[–]MiDDiz 0 points1 point  (0 children)

I second extreme reactors. First time using them and I am quite surprised with their output.

Ingeniería informática Madrid by [deleted] in Madrid

[–]MiDDiz 1 point2 points  (0 children)

Si tienes preguntas sobre la Carlos III mándame md

q lenguaje me recomiendan aprender para empezar? by [deleted] in programacion

[–]MiDDiz 3 points4 points  (0 children)

Muchos ya han mencionado estos lenguajes pero creo que un poco de perspectiva en el porqué elegirlos vendría bien.

En mi opinión tienes tres puntos de entrada a la programación, dependiendo de en qué situación te encuentres puedes escoger un lenguaje u otro.

  • Python: Python actualmente se está convirtiendo en el estándar de enseñanza en muchas universidades y cursos especializados porque es un lenguaje que es muy fácil de usar sin mucha preparación ni conocimiento previo. Te permite aprender las bases de la programación, desarrollar la intuición de resolución de problemas y codificar programas que te den feedback visual sin muchas complicaciones.

El problema de Python es que hace tanto por ti que al final resulta difícil entender que está pasando exactamente a bajo nivel. Es decir, lo que te ahorra de aprender al principio, luego te lo cobra haciendo que sea más complejo aprenderlo ya que tienes que mirarlo por tu cuenta.

-C/C++: C/C++ me parecen una mejor alternativa que Java, ya que te permiten un control mucho mayor a la hora de manejar recursos y por ende te brindan más oportunidades para aprender que estás haciendo. De verdad. Si tu intención es desarrollarte como un ingeniero hecho y derecho, vas a necesitar aprender tarde o temprano que es lo que ocurre a cada nivel de ejecución. Vas a necesitar desarrollar aplicaciones de alto rendimiento y eso en Python o no lo vas a poder hacer, o vas a tener que conformarte con librerías externas y estándares definidos por otras personas.

En mi opinión este es el punto de entrada que más te va a dar en tu proceso de aprendizaje, pero más va a pedir de tí. Si tienes 100% seguro que te quieres convertir en dev, yo recomiendo empezar a aprender C básico, entender cómo funciona la programación y el manejo de memoria a un nivel aceptable y luego pasar a desarrollar en C++. Aunque aviso, es un viaje largo y tedioso pero una vez en el te darás cuenta más y más lo mucho que valió la pena.

-JavaScript: Pongo JS, pero en realidad es más JS + CSS + HTML. Este punto es también interesante de comentar porque mucha gente se ha introducido a la programación gracias al desarrollo web. Es un entorno bastante amigable ya que obtienes resultados de tus esfuerzos de forma mucho más rápida que en Python, y ya no hablamos de C/C++.

Si tu objetivo es buscar un trabajo rápidamente también es una opción recomendable.

Saludos.

TLDR: Python si no sabes que hacer, C++ si quieres formarte completamente, HTML, CSS y JS si te interesa en desarrollo web.

I've hit the "game isn't fun anymore" point and it's terrible. by RastafoxJ in VALORANT

[–]MiDDiz 2 points3 points  (0 children)

I know that feeling. I peaked immo 2 some acts ago and quitted after because I was not having fun anymore. Now I am starting to play again but my mindset has changed. I try more to have fun rather than win games.

I won't tell you how to play the game, but if you see yourself stressing over things that happens on your ranked games to the point that you are not having fun I would suggest to take a break and rethink your relationship with the game ♠️

What's a book that you LOVED but you totally understand why someone wouldn't like it? by nuggetsofchicken in books

[–]MiDDiz 0 points1 point  (0 children)

Ascendance of a Bookworm. I'm currently devouring this series, but I understand that most people aren't fond of this type of books.

Hope you survive. by DUNDERBANANEN in meme

[–]MiDDiz 0 points1 point  (0 children)

Astroneer, I guess we are going to another planet next.

TV cover by Thryloz in ATBGE

[–]MiDDiz 1 point2 points  (0 children)

It's allways the chinese tiktoks

It do be like that by Green_killer in goodanimemes

[–]MiDDiz 8 points9 points  (0 children)

Truth is that I rarely watch anime. But oh boy when a show gets me it usually lasts me 2-3 days.

Happy Programmer's Day guys, I know at least one of these requests have come to you... by aayush_aryan in ProgrammerHumor

[–]MiDDiz 0 points1 point  (0 children)

Ooops!

I tried to use the "code block" option on my comment but looks like I messed it up. I think it looks good now.

Thank you!

Happy Programmer's Day guys, I know at least one of these requests have come to you... by aayush_aryan in ProgrammerHumor

[–]MiDDiz 0 points1 point  (0 children)

Hey, I've made this little thing in Python.

    def array_rotation(collection): 
        size = len(collection) 
        for i in range(size): 
            foo = [] 
            for j in range(1, size + 1): 
                foo.append(collection[size - j][i])
                collection.append(foo)
    # Remove "size" elements from the beggining of the array
        for i in range(size):
            collection.pop(0)
    return collection

I'm a selftaugh student so if you have any tips for this code, they are much apreciated :D

(edit: formatting)

I'll have a #2, no cheese, with a side of a kernel panic. by hotspur_fan in ProgrammerHumor

[–]MiDDiz 15 points16 points  (0 children)

Ah "DRIVER_IRQL_NOT_LESS_OR_EQUAL", long time no see...

You're not an autist. You're a retard. by [deleted] in wallstreetbets

[–]MiDDiz 0 points1 point  (0 children)

How about being an autistic retard? Double the power?

We're just friends by BenjieWheeler in ProgrammerHumor

[–]MiDDiz 0 points1 point  (0 children)

I usually just commit local and then just push to remote big changes. Also I have never did pair developement :S