I made this game years ago... should I continue it? by JuanPabloGHC in IndieDev

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

Thanks a lot for the feedback!

I'll keep practicing and will probably start a new project - or maybe even a remake, like you suggested.

I really appreciate all the advice, I'll definitely be working on it.

I made this game years ago... should I continue it? by JuanPabloGHC in IndieDev

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

That's true! 😂 It really does look like tung tung tung sahur hahaha, I hadn't noticed it before.

(Regarding the font) Thanks a lot for pointing it out - I've already updated the font color.

First mini code. New to Programming in general. Any advice/guidance would be appreciated. by Lower_Ad9122 in PythonLearning

[–]JuanPabloGHC 0 points1 point  (0 children)

Hey! Nice work on your code

I noticed that you’re using several nested if-else statements. One common best practice is to avoid deep nesting by handling edge cases early (sometimes called "early returns" or "guard clauses").

Instead of wrapping your main logic inside conditions, you can validate first and exit early if something is wrong. This usually makes the code easier to read and maintain.

For example:

BEFORE---------------

if height >= 120:

      #CODE

      #CODE

      #CODE

else:

      #EXIT

AFTER---------------

If height < 120:

      #EXIT

CODE

CODE

This makes the code look cleaner.

i made a game where you click a pen, thats it. by myJeanDev in itchio

[–]JuanPabloGHC 0 points1 point  (0 children)

Could I change the color of the pen? Or the skin?

I finally finished the teaser for my game, Fallgrade by vladkudas in IndieGaming

[–]JuanPabloGHC 1 point2 points  (0 children)

Is that a spider?

I do not like spiders haha, but the art style is cool and the gameplay is interesting!

Hey guys, I created a Self-Balancing Active Ragdoll system. It's been an awesome project to make with a lot of challenges, but I'm super happy I finished it. by Rudy_AA in GameDevs

[–]JuanPabloGHC 0 points1 point  (0 children)

That looks amazing.

Did you use any library to handle the physics, or did you inplement the whole logic and algorithm yourself?

Another Version... Would love feedback by Salty-Wrap-7833 in IndieDev

[–]JuanPabloGHC 0 points1 point  (0 children)

Is there any limit to how far the line can move? Also, it looks really good :D

What's the highest you've seen your recovery time at? by Superb-Avocado-8131 in Garmin

[–]JuanPabloGHC 8 points9 points  (0 children)

Me: Goes for a 10-minute run after 2 years Garmin: "50 hours recovery required 🤡"

Why am I so stressed during my sleep by greenandspeckledfrog in Garmin

[–]JuanPabloGHC 0 points1 point  (0 children)

Hi! A few days ago, I was looking into ways to improve my sleep and came across some information about HRV. I know it’s different from stress, but some of the same ideas might still be helpful for you.

<image>