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

13 Cloud Computing Terminology Quick Read

Cloud computing is a big ocean. Due to increased services, a developer must know the glossary ( keywords) involved.


1) AWS

Amazon Web services

2) Content delivery network (CDN)

It is a distributed system. Servers are located in remote locations. Customers feel that they are accessing the servers.

3) Cloud

A global network to access the resources.

4) Cloud portability

The feature to move data from one Cloud provider to another provider.

5) 
Cloudsourcing

Moving traditional IT operations to Cloud computing.

6) Cloud storage

It is a service providing to users to store data using the internet or other private networks.

7) Cloudware

It is Software that helps to run user applications in cloud computing.



13 Cloud Computing Terminology Quick Read
Terminology


8) Cluster

A group of small computers connected together to form a Single big computer. High availability and load balancing are the main benefits.

9) Consumer cloud

The cloud provider offers services to individual users. You can call it a consumer cloud.

10) Consumption-based pricing model

Cloud computing users must pay some fees to the cloud provides. This fee is based on consumption but not on time-based.

11) Content Management Interoperability Services (CMIS)

An open standard to control documents using web protocols

12) Customer self-service

This is a feature that users can manage cloud computing services using Web Services or APIs.

13) Disruptive technology

Technology with innovative methods and offers benefits to users.

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