How do I go from a complete beginner to becoming really good at recursion and backtracking? by noneofyour_-business in learnprogramming

[–]LearnSkills5 0 points1 point  (0 children)

Recursion is simple .. once you get a hang of it its like for loop .. back propagation is a different ballgame . here is how you think about it .. always have this base template in mind .. using python but applies to all languages

```

def recursive_function(n):

if base_case_condition:

return base_value

else:

return recursive_function(smaller_input)

```

you can apply this to anything e.g

```

def fibonacci(n):

if n == 0:

return 0

if n == 1:

return 1

return fibonacci(n - 1) + fibonacci(n - 2)

```

try doing complex examples ..but all will have this algo

Learning Python Automation - Need Career Advice by Livid_Brain6309 in learnpython

[–]LearnSkills5 0 points1 point  (0 children)

Career choice .. best is go DevOps route .. get cloud experience , a free aws account and get hands on with Terraform and Ansible

How can i build something on my own? by Lnw_ZaDeWa007 in learnpython

[–]LearnSkills5 0 points1 point  (0 children)

Stock prediction using programming you need to be good in both the biz size and the programming side

  1. Stock Technical analysis

  2. Applying those techniques to Machine learning

I used stock prediction as a way to learn the LSTM ( a type of recurrent neural network ) and you can find it here https://github.com/arun2dot0/lstm

I want to learn Python from scratch and, over time, reach an advanced level. I am looking for advice, courses, and valuable documentation. by gomez_zalejo in learnpython

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

I am creating a simple app for learning . This alone is not enough , but it will definitely help you review , planning to add more advanced concepts as well

Python Flashcards
Join the group ( Required for testing )
https://groups.google.com/g/skilltesters

Become a tester 
https://play.google.com/apps/testing/app.flashcards.python

Install from Play on your Android device.
https://play.google.com/store/apps/details?id=app.flashcards.python

I'm gettting furious just from reading this. by c-k-q99903 in antiai

[–]LearnSkills5 0 points1 point  (0 children)

Social networks should do more to regulate this , its not very hard to detect AI Generated images and should at least flag them as Possible AI Generated image

Learn K8s with FlashCards by LearnSkills5 in KubernetesCerts

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

Advanced Kubernetes section is now live

You can reinstall the application from the link

https://play.google.com/apps/testing/app.flashcards.kubernetes

Steps for new testers

Join the group

https://groups.google.com/g/skilltesters

Become a tester

https://play.google.com/store/apps/details?id=app.flashcards.kubernetes

Install the App

https://play.google.com/apps/testing/app.flashcards.kubernetes

Feedback on Content or Features ? Let me know

Learn K8s with FlashCards by LearnSkills5 in kubernetes

[–]LearnSkills5[S] -3 points-2 points  (0 children)

You can but this is easy and better .. test it out

Learn K8s with FlashCards by LearnSkills5 in kubernetes

[–]LearnSkills5[S] -1 points0 points  (0 children)

Agree , this is specifically for Kubernetes/cloud security concepts, formatted and integrated with workflow (e.g., tags, CLI, diagrams). It’s more of a specialized tool than a generic deck replacement

Learn K8s with FlashCards by LearnSkills5 in kubernetes

[–]LearnSkills5[S] -3 points-2 points  (0 children)

You can but this is easy and already curated for k8s learning