Friday, January 28, 2022
How to find which SSD is supported by my Laptop | Best Budget SSDs to Buy 2022 (All Catogery)
Wednesday, January 19, 2022
How amazon Exchange works for Buying Xiaomi 11T Pro at 34,450/- 12GB 254GBn HINDI with 500 Coupon
The device that is designed For everyone, The device which got better from its previous generation, successor To The popular Xiaomi 10T Pro Series
Xiaomi 11T Pro 5G 500/- Discount on Amazon:- https://amzn.to/3KAjGWS
Xiaomi 11T Pro 5G (Celestial Magic, 12GB RAM, 256GB Storage) : https://amzn.to/3Kq02wv
Xiaomi 11T Pro 5G (Moonlight White, 8GB RAM, 256GB Storage) :
Xiaomi 11T Pro 5G (Celestial Magic, 8GB RAM, 128GB Storage) :
About this item
The 5G enabled flagship Snapdragon 888 chipset is designed on a 5nm fab process and is paired with LPDDR5 RAM and UFS 3.1 storage to ensure ultra-smooth performance and a seamless multitasking experience.
The 6.67" FHD+ true 10-bit AMOLED display has a 120 Hz refresh rate along with a 480Hz touch sampling rate. This Displaymate A+ certified panel brings vivid pictures, smoother and faster touch response. It also comes with Dolby Vision, HDR 10+ certification to ensure unparalleled multimedia viewing experience. Also, the display is protected by Corning Gorilla Victus glass.
The flagship 108MP HM2 sensor, 8MP Ultra-Wide sensor and 5MP TeleMacro sensor ensures flawless photography as well as Videography in all scenarios and lighting conditions. The device supports 8K video recording and comes with several easy-to-use photography and videography modes so that everyone can capture professional-grade images and videos with the least effort.
The dual symmetrical speakers with Sound by Harman Kardon comes with Dolby Atmos certification that brings out a richer audio experience. The device is also Hi-Res certified for both wired and wireless Audio
The phone comes with 120W Hypercharge technology that can fully charge the massive 5000mAh battery in a few minutes
Alexa Hands-Free capable: Download the Alexa app to use Alexa hands-free. Play music, make calls, hear the news, open apps, navigate, and more, all using just your voice, while on the go.
Support Me At@:
buymeacoffee: https://www.buymeacoffee.com/Bluetext.in (Use This)
Patreon : https://www.patreon.com/BlueTEXT
ko-fi : https://ko-fi.com/bluetextin
UPI : bluetext.in@dbs
► SUBSCRIBE for more Tutorials: https://www.youtube.com/channel/UCg3cXrDtv6A-yoJYdl2_CSA?sub_confirmation=1
Follow me @
GitHub : https://github.com/CodeOnYT
Facebook: https://www.facebook.com/CodeOnYT
Twitter: https://twitter.com/Tulsiram_Methre
Instagram : https://www.instagram.com/CodeOnOriginal
Pinterest : https://in.pinterest.com/BlueTEXTin
LinkedIn: https://www.linkedin.com/in/code-on-6a59301aa/
website: https://www.bluetext.in/
#xiomi11tpro #buyonamazon #HowtoTech
Tuesday, January 11, 2022
Ansible - Automation Essentials - Part 3 [ Parts of Ansible ]
How Ansible Works?
As already discussed, Ansible is a configuration management tool, based on push-based architecture to automate the configuration of your hosts to achieve the desired state.
Following are the components of Ansible architecture
- Inventory - Defines the list of target hosts
- Playbook (YAML file) - Defines a list of tasks
- Module - A python code invoked from tasks and executed on hosts
- Control Machine - Takes playbook and executes each task on a particular group of hosts
Playbook
A Playbook is a file that defines the desired state of your system.
It contains plays, which has a list of tasks to run in sequence against a list of hosts.
- A play is a set of tasks, grouped together to achieve an objective
- A task is an instruction you give to Ansible.
- They are written in YAML format, a data serialization language, that we discussed in previous cards.
Inventory

So Ansible captured the desired state through Playbook, but how would ansible know which machines it should configure through Inventory?
The Inventory file in Ansible contains the list of all hosts (target systems/servers) that need to be configured. You can also group hosts under different names as shown:
[group A]
Host 1
[group B]
Host 2
Host N
More on Inventory

- Default location of Inventory File: /etc/ansible/hosts
- You can define an Inventory file statically (.ini file) or dynamically (.json file) to Ansible.
Modules Perform the Action

Modules are a piece of code that gets executed when you run a playbook. You use them to describe the state you want the host to be in.
Each task in play is made of modules and arguments.
Ansible - Automation Essentials - Part 2 [ Introduction to YAML Language ]
YAML stands for Yet Another Markup Language. It is a data serialization language just like JSON.
Why YAML, when we already have JSON or XML?
- YAML files are easy to read and write for humans, similar to English.
Foundation of YAML

- YAML files should end as .yaml or .yml
- Begins with --- and ends with …
- # defines comment
YAML is Case and Indentation Sensitive
- Members of a list should be at the same indentation level starting with a dash(-) and space.
- Each item in the list is a key: value pair (colon must be followed by a space), called a dictionary.
- At each level, exactly two spaces are used for indentation. Using tabs is not recommended here.
Boolean Values
Variables can be defined in YAML files as shown:
stream: Java
allocated: true
allocated: yes
allocated: no
allocated: True
allocated: TRUE
allocated: false Variables can be assigned boolean values in different ways as shown:
Data Structures
Complicated data structures are possible in YAML.
You can define lists having dictionaries, dictionaries having lists or a mix of both.
In the following example,
- name and job are dictionaries. Skill is a dictionary with a list.
- David and Amy are listed as having dictionaries
# Employee records
- David:
name: David Moore
job: Developer
skills:
- python
- sql
- java
- Amy:
name: Amy Brown
job: Developer
skills:
- angular
- redux
- reactAnsible - Automation Essentials - Part 1 [ Introduction to Ansible in Ansible - Automation ]
What are You Going to Learn?
We hope you have gained a good understanding of what is Infrastructure as a code. In this course, you will learn about
- Ansible and its benefits
- Ansible in Infrastructure as Code (IaC)
- YAML format
- Few Ad_Hoc commands
- Different parts of Ansible
- Role of Modules in Ansible
- How to write Playbooks
- How to Control the flow of execution in Ansible
- Few points about configuration file (ansible.cfg)
- How to setup environment in local machine and online playground
By the end of this course, you will be in a position to write a few ad-hoc commands and a Playbook of your own.
What Is Infrastructure As Code?
IaC means writing code for infrastructure i.e. your systems and devices, which are used to run Softwares, are to be treated as software and defined using code(which can be done using a high level or descriptive language).
For example version control, testing, small deployments, use of design patterns, etc.
Configuration Management tools are used to accomplish IaC.
Why are You Here?
Infrastructure as Code can be achieved using Ansible, which is one of the popular Configuration Management tools. In this course, we will have you explore various capabilities of Ansible.
What is Configuration Management?
Configuration Management is a process of establishing, tracking and controlling the current design and build state of the system (software versions).
It also ensures that past records of system state are easily and accurately accessible which helps in project management, audit purposes, debugging etc.
Before Configuration Management
Consider you are planning for a New Year Special Sale on your e-commerce site. You need to
- Scale up your servers
- Then configure them(and all other old servers) for special new year sale
- This whole process would take a lot of effort and time
- What if new configurations did not work as expected? Then you will have to roll back to the previous stable version, which will add more work and subtract the profits and potential customers while in downtime.
Configuration Management Tools

You need some kind of Configuration Management tool that can automate these tasks:
- Rollback to the stable version with zero downtime
- Provide you with a constant computing environment throughout SDLC
- Automatically scale up or down depending upon traffic
Some of the popular Configuration Management tools are Ansible, Puppet, Chef and Saltstack.
You will now learn more about Ansible in upcoming cards.
What is Ansible?
Ansible is open-source software, first released by Michael DeHaan in 2012 and owned by Red Hat.
It is used to automate
- configuration management
- application deployment
- software provisioning and other IT needs
Benefits of Ansible
- Simple: Very easy to install, set up and learn. Written in YAML file which is pretty much like reading English
- Agentless: Do not need to install any agents on target nodes.
- Powerful: It can model any complex IT workflow as it has 1100+ modules
- Efficient: You can customize modules, using any programming language
- Secure: Uses SSH for connection
Wondering about the YAML language?? Read on to discover
Monday, January 10, 2022
Ansible - Automation Essentials - Part 0 [ Course Summary in Ansible - Automation ]
Here, we will introduce you to Ansible, how to set up and configure Ansible, execute Adhoc commands, configure roles, files, templates, etc. You will also play with Ansible Playbooks and modules.
Topics Covered
- Ad-Hoc Commands
- Modules - The Engine of Ansible
- Set-Up Environment for Ansible
- Playbook Explained
- The Decision
- Configuring Your Master
- Write a PlayBook
- Summary - Ansible
- Ansible Final Assessment
Please complete the entire course to get a good understanding and if you liked this then please like share and subscribe.
Saturday, January 1, 2022
AWS Essentials - Part 0 [ Course Summary in AWS Cloud ]

Introduction to AWS
Welcome to this course on AWS Essentials!
Here you will first learn about Cloud Computing and its characteristics. Then you will understand What is AWS, its application, and its usage. Following that, you will learn in detail about the different kinds of products AWS supports.
- Learned about Cloud Computing & its characteristics
- What is AWS & its application & usage?
Following that deep-dived into the different offerings -
- Compute
- Mobile Services
- Networking & Content Delivery
- Developer Tools
- Management Tools
- Security & Compliance
- Application Services
- Messaging
AWS Essentials - Part 10 [ Mobile Services in AWS Cloud ]
AWS allows to easily build advanced cloud-powered applications for mobile devices! You might want to run the app on your preferred device efficiently, quickly, and securely. AWS offers the environment for this.
Stream Real-Time Data – Gather real-time clickstream logs and react quickly. Store Shared Data – Store and query NoSQL data to users and devices. Authorize Access – Securely access cloud resources. Send Push Notifications – Keep users active by transmitting messages reliably. Deliver Media – Detect mobile devices automatically and render content quickly on a global basis. Analyze User Behavior – Track engagement and active users. Synchronize Data – Sync user preferences across devices. Manage Media – Store and share user-generated photos and other media items. Authenticate Users – Manage identity providers and users.
Bountiful Cloud Services AWS provides a wide set of highly scalable, fully managed services that include data warehousing, content delivery, streaming, monitoring, databases, storage, logic, and machine learning in-app without the need to manage any infrastructure.
The Tools To Help You Build AWS allows you to add cloud services to mobile apps easily.
- Develop a serverless mobile backend
- Manage user identity and sign-in
- Transmit push notifications
- Track usage patterns and maximize your app with in-app analytics.
- Test against a huge set of real devices.
AWS Offerings

- AWS Mobile Hub - Build, Test, and Monitor Apps
- Amazon Cognito - User Identity and App Data Synchronization
- AWS Mobile SDK - Mobile Software Development Kit
- Amazon API Gateway - Build, Deploy, and Manage APIs
- Amazon Pinpoint - Push Notifications for Mobile Apps
- AWS Device Farm - Test Android, FireOS, and iOS Apps on Real Devices in the Cloud
Mobile Hub

AWS Mobile Hub provides an integrated console that helps you
- Build
- Test and
- Monitor & manage mobile apps.
Mobile Hub provisions and configures the necessary AWS services and creates a working sample app.
Cognito
Amazon Cognito reduces the task of
- Authenticating users, storing and managing
- Synchronizing data across several applications, platforms, and devices.
This functions both offline or online and enables to save user-specific data securely such as game state and application preferences.
Cognito supports unauthenticated guest users and works with several existing identity providers.
AWS Essentials - Part 9 [ Application Services in AWS Cloud ]
![]()
AWS Application services have a broad range of services that helps in enhancing the rendering of the application overcloud. Main offerings include -
Amazon Elastic Transcoder - Simple Scalable Media Transcoding Amazon API Gateway - Build, Deploy, and Manage APIs AWS Step Functions - Coordinate Distributed Applications
Step Functions
Offers a graphical console to set up and visualize the components of the application as a series of steps.
- Easy to create and run multi-step applications.
- Coordinate the components of microservices and distributed applications using visual workflows.
- Create applications from single components that each perform a discrete function to change and scale applications quickly.
- Triggers and tracks each step automatically, and retries when errors are noticed, which ensures your application executes as intended and in order.
- Logs the state of every single step. When things go wrong, it is simple to diagnose and debug issues fast. You can change and include steps without the need to write code, effortlessly evolve the application and innovate rapidly.
- Manages the underlying infrastructure and operations to ensure the application is available at all scales.
API Gateway

Fully managed service that allows developers to create, publish, maintain, monitor, and secure APIs easily at any scale.
- Serves as a “front door” for applications to access functionality, data, or business logic from your back-end services, like, code running on AWS Lambda, workloads running on Amazon EC2, or any Web application.
- Takes care of processing and accepting of concurrent API calls, including API version management, monitoring, traffic management, and authorization and access control
- Pay only for the API calls received and the data transferred.
How does AWS API Gateway work?
API Gateway Benefits
- Low-Cost and Efficient
- Performance at Any Scale
- Easily Monitor API Activity
- Streamline API Development
- Secure and Flexible
- Flexible Security Controls
- Create RESTful Endpoints
- Run Your APIs Without Servers
Elastic Transcoder
Media transcoding in the cloud.
Businesses and developers could transcode or convert media files from their source format into versions that will playback on devices such as PCs, tablets, and smartphones.
It is designed to be user-friendly, economical, and highly scalable.
AWS Essentials - Part 8 [ Messaging in AWS]
- Fully managed message queues for safe communication between microservices and applications
- Quick, flexible, fully managed push notification service to transmit specific messages or to fan-out messages to numerous recipients
- Run targeted campaigns to create user engagement in mobile applications
- cost-effective email service created on the scalable and reliable infrastructure
Key offerings -
- Simple Email Service (SES) - Email Sending and Receiving
- Pinpoint - Push Notifications for Mobile Applications
- Simple Notification Service (SNS) - Pub or Sub, Mobile Push and SMS
- Simple Queue Service (SQS) - Managed Message Queues
AWS Essentials - Part 7 [ IOT ]
AWS has developed IoT-specific services that assist to gather and send data to the cloud. The IoT services make it comfortable to load and analyze information and offer the capability to manage devices and stress on developing applications that suit the requirements.
AWS Greengrass helps to operate data caching, messaging and local compute for connected devices in a safe way.
AWS IoT Platform is a managed cloud platform that allows connected devices to interact with other devices and cloud applications securely and easily. AWS IoT can support many devices and a lot of messages.
AWS IoT Button is a programmable button that is based on the Amazon Dash Button hardware. The Wi-Fi device is effortless to configure. AWS IoT Button is offered to developers to use Amazon SNS, Amazon DynamoDB, AWS Lambda, AWS IoT, and several other Amazon Web Services without the need to write device-specific code.
This video will give you more knowledge on AWS IoT
AWS Essentials - Part 6 [ Security, Identity and Compliance ]
- AWS offers data center and network architecture built to meet the requirements of the most ***security-sensitive organizations***.
- The AWS cloud provides a platform to scale and innovate, while still maintaining a secure environment.
- Pay only for the services been used.
· Security, Identity, and Compliance Products
·
· Amazon Inspector - automated security assessment service, that aids to enhance the compliance and security of applications deployed on AWS.
· AWS Identity and Access Management (IAM) - controls users' access to AWS services. Allows to create, manage users and groups, and deny or grant access.
· AWS Artifact - the portal offers on-demand access to AWS compliance and security documents (audit artifacts).
· Amazon Cloud Directory - set up flexible cloud-native directories to organize hierarchies of data along numerous dimensions.
· AWS Certificate Manager - seamlessly manage, provision, and deploy Secure Sockets Layer (SSL)/Transport Layer Security (TLS) certificates.
· AWS CloudHSM - fulfill regulatory, contractual, and corporate compliance requirements for data security by utilizing a dedicated Hardware Security Module (HSM). AWS Directory Service - allows AWS resources and directory-aware workloads to utilize managed Active Directory in AWS Cloud for Microsoft Active Directory.
· AWS WAF - web application firewall that aids in protecting web applications from web threats that could eat up excessive resources, or compromise security, hinder application availability.
AWS Essentials - Part 5 [ Networking and Content Delivery in AWS ]
This ensures the provision of
- Global Content Delivery Network (CDN) service that speeds up delivery of video content, APIs, websites, or other web assets.
- A logically isolated section of AWS cloud, where you can open AWS resources in a virtual network.
- Offer more safe and economical ways to route end users to web applications by translating names into IP addresses.
- Set up a dedicated network connection from a location to AWS.
Networking and Content Delivery in AWS
Services offered -
- Elastic Load Balancing: High Scale Load Balancing
- Amazon Route 53: Scalable Domain Name System
- Amazon Cloud Front: Global Content Delivery Network
- AWS Direct Connect: Dedicated Network Connection to AWS
- Amazon VPC: Isolated Cloud Resources
AWS Essentials - Part 4 [ Management Tools in AWS ]
AWS offers a wide set of services for IT and System administrators to seamlessly manage and monitor -
- Infrastructure logs and metrics using alarms and real-time dashboards.
- Hybrid infrastructure resources
AWS also allows to track, monitor, and enforce security and compliance.
Services
- Amazon EC2 Systems Manager: Configure and Manage EC2 Instances and On-premises Servers
- AWS CloudTrail: Track User Activity and API Usage
- AWS Config: Track Resource Inventory and Changes
- AWS Service Catalog: Create and Use Standardized Products
- AWS Personal Health Dashboard: Personalized view of AWS service health
- Amazon CloudWatch: Monitor Resources and Applications
- AWS Cloud Formation: Create and Manage Resources with Templates
- AWS OpsWorks: Automate Operations with Chef
- AWS Trusted Advisor: Optimize Performance and Security
Amazon CloudWatch
Understand Cloudwatch by viewing this video.
Amazon CloudWatch is a monitoring service designed for AWS cloud resources and the applications operate on AWS. Amazon CloudWatch can be used to:
- Automatically react to changes in AWS resources.
- Collect, monitor log files, and set alarms
- Collect and track metrics
Attain system-wide visibility into operational health, application performance, and resource utilization.
Amazon CloudWatch monitors AWS resources such as
- Amazon RDS DB instances
- Amazon DynamoDB tables
- Amazon EC2 instances
- Custom metrics or logs created by services and applications
Amazon CloudTrail

AWS CloudTrail is a service that allows risk auditing, operational auditing, compliance, and governance of AWS account.
- Routinely monitor and retain events specific to API calls throughout the AWS infrastructure.
- Offers history of AWS API calls for your account, which includes API calls done through the AWS SDKs, AWS Management Console, command-line tools, and various AWS services.
- Reduces troubleshooting, security analysis, and resource change tracking.
Benefits:
- Security Automation
- Visibility Into User and Resource Activity
- Security Analysis and Troubleshooting
- Simplified Compliance



