Featured Post

15 Python Tips : How to Write Code Effectively

Image
 Here are some Python tips to keep in mind that will help you write clean, efficient, and bug-free code.     Python Tips for Effective Coding 1. Code Readability and PEP 8  Always aim for clean and readable code by following PEP 8 guidelines.  Use meaningful variable names, avoid excessively long lines (stick to 79 characters), and organize imports properly. 2. Use List Comprehensions List comprehensions are concise and often faster than regular for-loops. Example: squares = [x**2 for x in range(10)] instead of creating an empty list and appending each square value. 3. Take Advantage of Python’s Built-in Libraries  Libraries like itertools, collections, math, and datetime provide powerful functions and data structures that can simplify your code.   For example, collections.Counter can quickly count elements in a list, and itertools.chain can flatten nested lists. 4. Use enumerate Instead of Range     When you need both the index and the value in a loop, enumerate is a more Pyth

3 Best Ways to Learn AWS on Weekends

Amazon web services are one of the popular skills. So, many developers started adding this skill to their list. Due to digital transformation, companies started giving more weightage to the developers who have AWS skills.

How to Learn AWS

I want to share in this post how to learn AWS quickly.  The idea is to use your weekends to learn AWS.  My learning plan to allocate 5 hours a week. You can take out 2 hours  Saturday and 3 hours Sunday time for this learning.


how to start learning aws for beginners
3 Best Ways to Learn AWS on Weekends


 As I said in my previous post basic interview questions on Amazon web services really a quick start.


3 Best Ways to Learn AWS During Weekends.

What is next how to start learning and be industry-ready. You need to have a good laptop to begin your learning. If it is Ubuntu pre-installed one, really this is good for your study and practices...


What materials online you need to refer to. This is basically a question for the developer. Just begin with AWS manuals published by AWS-Amazon web services.


1. AWS manuals or materials.

These you can refer are as follows


Then, manuals are looked heavy with details. This is a little complex to understand as a beginner.


What next...


2. Read books.

Yes, reading AWS books and DevOps really a basic start to gain knowledge.


I am sure the below list of books useful for AWS learners.

The next best option is... 

3. Amazon web services Online.

You can save your time with the online courses.  All the commands you can learn quickly.  They also help you with what to read next.


Our recommended and best selling video courses on amazon web services are as follows.


The list may be short but these are value courses...

Comments

Popular posts from this blog

How to Fix datetime Import Error in Python Quickly

SQL Query: 3 Methods for Calculating Cumulative SUM

Python placeholder '_' Perfect Way to Use it