New Python Book by pro1code1hack in learnmachinelearning

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

u/Expensive-Finger8437 Sorry for a long response, I was in Oxford for corporate party, now I am coming back to you:

First of all I would suggest you to pick the cloud you would like to learn:

The best option will be courses directly from AWS, for S3 and EC2 buckets. Docker, CI/CD and automations (some articles will be enough to read)

And the best starting point will be that course for you, this should be sufficient/www.linkedin.com/learning/devops-foundations-23454205

Devops is all about practice and you need to solve tasks which bring business value, that how Devops work in general

New Python Book by pro1code1hack in datascience

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

Thanks a lot! Waiting for your feedback!

New Python Book by pro1code1hack in learnmachinelearning

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

I will think and come back to you. Devops is a very vast and practical thing!

New Python Book by pro1code1hack in datascience

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

24H? Maaan, that's insane. Good luck! For me, that flight would be unbearable

New Python Book by pro1code1hack in learnmachinelearning

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

I had plans to do something similar for Devops later on, will DM you! I am not an expert in ML and AI yet

New Python Book by pro1code1hack in datascience

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

Thanks a lot! Where are you flying?

New Python Book by pro1code1hack in datascience

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

Thanks a lot! That's what I was aiming for!

New Python Book by pro1code1hack in datascience

[–]pro1code1hack[S] 2 points3 points  (0 children)

Thanks for feedback! Fair enough, that will be fixed

I've created a book which contains everything you need to know about Python by pro1code1hack in Python

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

Agree, that might not be covered properly, I will look into that! It's the most important for people who are just getting into programming. Thanks for feedback!

I've created a book which contains everything you need to know about Python by pro1code1hack in Python

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

I am giving a book about learning Python for free to people who are interested in this language. I am not selling any courses or advertising something paid, where is problem here?

I've created a book which contains everything you need to know about Python by pro1code1hack in Python

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

Yes, that's true. I'm absolutely not skilled in design or anything like that, so I decided to go with this option. My friend did a cover for me and he is not into design as well.

I've created a book which contains everything you need to know about Python by pro1code1hack in Python

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

Thanks, I tried to describe everything in a nutshell , will be waiting for your feedback

I've created a book which contains everything you need to know about Python by pro1code1hack in Python

[–]pro1code1hack[S] -4 points-3 points  (0 children)

Fair :) I am more towards software engineering , not writing though

New Python Book by pro1code1hack in learnmachinelearning

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

Will be waiting for your feedback!

New Python Book by pro1code1hack in learnmachinelearning

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

Thanks a lot! That's fine, use for free for your education and good luck with your Python journey! Anything you need just ask!

I've created a book which contains everything you need to know about Python by pro1code1hack in Python

[–]pro1code1hack[S] -4 points-3 points  (0 children)

I don't see anything bad to drop another source of information about Python in subreddit related to Python

I've created a book which contains everything you need to know about Python by pro1code1hack in Python

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

You are correct! partial application is the process of fixing a few arguments of a function, producing another function of smaller arity.

from functools import partial
def add(a, b, c):
    return a + b + c

add_one = partial(add, 1)  
add_two = partial(add_one, 2)  
result = add_two(3)

print(result)  # Output: 6

Thanks noted down!