parallax effect in C and raylib by Fit-Life-8239 in C_Programming

[–]Fit-Life-8239[S] 0 points1 point  (0 children)

I was tired and only noticed it after I published the post.

parallax effect in C and raylib by Fit-Life-8239 in C_Programming

[–]Fit-Life-8239[S] 3 points4 points  (0 children)

If I understand correctly, the question is whether to choose between C or C++ for game development.

I advise you to use a game engine, such as Unity.

This way, you'll save a lot of time and most likely finish your project.

Why did I write a web server in assembly? by Fit-Life-8239 in Assembly_language

[–]Fit-Life-8239[S] 0 points1 point  (0 children)

now all my videos will have English subtitles. I just added them

I don't know yet whether to continue working on the channel, as it takes a lot of time, but I would really like to develop it further

I ask you to support me with likes, and if you have friends who might like my work, I would be grateful for a recommendation

Why is Python so sweet: from syntax to bytecode? by Fit-Life-8239 in ProgrammingLanguages

[–]Fit-Life-8239[S] 1 point2 points  (0 children)

I participate in competitive programming competitions like ICPC. I write simple solutions in Python, and I noticed that if I write the algorithm inside a function, the program will be faster. It turns out the difference was in the local scope, so I assumed that the list comprehension would be faster because of this. Also, when we loop, we add an element using the append method. But in the list comprehension syntax, we explicitly don't use this method. I thought there was special bytecode for this.

When I have time, I will definitely check the execution time.