Variable and Assignment in python

Variable

a name identifier in memory that stores the data during the execution of the program. Python is dynamic and declaring a variable is very simple. a = 10 is simply a variable assignment statement.

Assignment operator

In Python assignment operator is simply single = sign , the value on the right get assigned to the name identifier on the left. Below are some of the example assignments
a = 20
b = 40
total = a
total = a + b

Arithmetic operator

In Python arithmetic operator include + - * / %
Examples :
Addition   c = a + b
  Calculates the value of a + b and assigns to c
Substraction   c = a - b
  Substracts the value of b from a and assigns to c
Multiplication   c = a * b
  Multiplies the value of a with b and assigns to c
Exponentiation   c = a ** b
  Assigns a power b example 3 ** 2 = 9
Division   c = a / b
  Divides the value of b from a and assign the new value to c
Floor Division   c = a // b
  Divides the value of b from a and yeild the real number of higher end and assign the new value to c
Modulus   c = a % b
  gives the remainder value as the output 9 % 2 gives remainder 1

Arithmetic plus Assignment short form

Arithmetic operator can be used along with the assignment operator to form a shorter statement

Statement Full Statement
a += b a = a + b
a -= b a = a – b
a *= b a = a * b
a /= b a = a / b
a //= b a = a // b
a %= b a = a % b
a **= b a = a ** b

Python Pro and Cons : Advantages and Disadvantages of Programming Language

python pros and cons

Python is one of the most popular language today , it is dynamic, general purpose programming language, it has a long history of over few decades but in recent time it has gained enormous attention specially with cloud computing.

Python is not only used for cloud application but with huge module library it is used all sort of applications such as desktop application , scripting and automation , web application , machine learning , data analysis and many more.

One of the recent projects that has raised Python value is OpenStack Cloud , this project is written in Python and utilizes libraries to integrate different part of the Cloud. This has raised the value of Python in Enterprises such as Facebook , Microsoft , Google and Amazon to name a few.

Though Python is highly in demand there are some advantages and disadvantages of using Python and it is good to understand those before considering Python for your next project.

Pro’s

Easy Python Syntax

     Python was designed keeping simplicity in mind , its code is simple and easy to read as compared to other high level languages such as Java , C++ etc.

Object Oriented

     Python is Object oriented , one of the main concept that makes it is a great choice is concept of objects, everything is an object including all the basic data types such as strings and integers are considered object and developer can apply methods on these objects.

Libraries

     Python has a huge collection of libraries that makes the life much more easier , many of the task can be performed with very few lines of code. There are two type of libraries , Python Standard Library and 3rd Party libraries developed by Vendors for there own products.

Python is extensible

     Python code can integrate with C / C++ and that makes it very extensible language , basically Python was used mainly for system integration in the past but in recent years it has developed into a more robust platform.

Portable

     Languages like C and C++ the code varies from platform to platform example libraries for Windows and Linux might differ but that is not the case with Python , here you code once and you can run it anywhere. This is called write once and run anywhere.

Interpreted

     Python code get executed Line by Line and thus debugging is easier and simpler

Open Source , Community support

     Python is an open source language and it has a huge community support , more and more people are using Python and its support is increasing as well , many Enterprises have jumped in to adopt Python and that is increasing community greatly.

Con’s

Speed

     Python as compared to low level languages like C / C++ is slow due to the structure, Python code is compiled into byte code at runtime while the C / C++ code is compiled before run-time.

Memory Utilization

     for memory intensive application Python is not a good choice , the flexibility of data-types brings overhead in form of memory consumption.

Threading Issues

      Multi-threading is another area where Python does not really perform as compared to other High level languages like Java , this is due to Global interpreter lock (GIL) which allows only one thread to execute at a time. As a result, single-threaded application perform better with Python.

Mobile Development

      As compared to Java , Python is not greatly used for Mobile applications and thus does not have great support for Mobile devices. It is easy to use Python for mobile purposes but configuring require some extra effort.
Python is not native to mobile environment and it is seen by some programmers as a weak language for mobile computing. Android and iOS don’t support Python as an official programming language. Still, Python can be easily used for mobile purposes, but it requires some additional effort.

Conclusion

      Python is ideal for creating tools , automation and applications, it is getting more and more support at both community and enterprise level , it is the most in demand language for programming jobs currently available in the market.

Devops In and Out

DevOps Journey

What is DevOps ?

DevOps is a software engineering culture and practice that aims to unify software development (Dev) and software Operation (Opps). It is a culture of collaboration between development and operational people.-

It is also important to understand what is NOT DevOps.

  • Set of Tools
    There is huge list of tools used in DevOps world, the list is exhaustive but are these tools DevOps , answer is no.
  • DevOps is a standard answer is no it is not a standard similar to ISO standards or a framework similar to ITIL , DevOps is just a cultural movement, designed to provide delivery and stability at the same time.
  • DevOps is not a product , it is just a culture that is practice by an entire organization that is performing software development / operation.
  • DevOps as a job title , yes though it is one of in demand jobs currently there is no such title as DevOps, it is simply a culture practiced by Developers and Operation teams to collaborate and any one with the right experience and knowledge can fit into this role.

DevOps culture change

In the past the developers and operational team were working in silos and each process follow in a serial fashion, this design was very successful in the past decade considering the size of the software and the complexity it brings. SDLC (software development life cycle) models such as WaterFall were used to create and maintain. In today’s 4G world software application are mostly mobile / web-based, updates are very frequent infact some are even updated daily or weekly, and that is where the challenge to manage both development and operation collide. Teams on either end would try to push ends to perform better, this is totally in contrast to the model followed in the past decade.

To overcome this challenge Development and Operation teams were merged a change in the team culture was brought in by applying agile principals to deliver short and fast updates / rollouts to the customer keeping in mind both speed of delivery and operational stability in mind.

Goals of a DevOps culture
  • Fast time-to-market (TTM)
  • Few production failures
  • Immediate recovery from failures

DevOps practices and tools

DevOps performs both Operational and Developer tasks , below are the list of practices that are considered part of Devops practices.

  • Build Automation
  • Continuous Integration
  • Continuous Deployment & Delivery
  • Infrastructure as Code
  • Configuration Management
  • Orchestration
  • Monitoring
  • Orchestration

CentOS 8 Released

centos

Highly anticipated CentOS version 8 was released on 24th September 2019.

Get the torrent now :

http://mirror.centos.org/centos/8/isos/x86_64/CentOS-8-x86_64-1905-dvd1.torrent

SHA256 707a66357f72eb822ca113991f3bb86a1ac1ed5fbc2fa5d968ed25fb48ee985c


http://mirror.centos.org/centos/8-stream/isos/x86_64/CentOS-Stream-x86_64-dvd1.torrent
SHA256: 88604a95189f91162d1f89f0ac7436f3413812506a41b8ec286baeaa833b1e91

Linux Boot Series – SystemD

boot process SystemD

Though SystemD will be compared to its predecessor SystemV for a long time , it has much more to offer in terms of System Management. It is a new way how Linux interact with the underline Objects such as hardware , sockets , application processes and many more.

Understand How SystemD works

systemd is a system and service manager for Linux, compatible with SysV and LSB init scripts.

Features
  1. Contrary to its predecessor SystemD handles processes parallel
  2. socket and D-Bus activation
    traditionally services will be configured to start on boot, but with systemd it is more event driven and you can configure to start when something connects to a specific port or a device get connected , this is called socket and d-bus activation.
  3. Offers on-demand starting of daemons, also keeps track of processes using Linux cgroups
  4. Supports snapshot and restoring of the system state
  5. Maintains mount and automount points
  6. Implements an elaborate transactional dependency-based service control logic.

systemD working

Concept of Units in SystemD

SystemD manages units, which are representations of system resources and services.

Type of Units in SystemD
  1. Service
    A Service unit is used to manage service, the unit file include instruction to start , stop , restart the service.
  2. Socket A network socket associated with a service.
  3. Device
    Unit file related to Device is used to manage Device , start , stop , auto etc.
  4. Mount Unit manages the Mount points via SystemD
  5. Automount Unit file mounts the file system on system boot. This feature might replace traditional fstab files in the near future.
  6. Swap Mounts swap space on the system
  7. Target Targets are much like Runlevel used previously to manage different services to start and stop at different
  8. Path
    A path for path-based activation. For example, you can start services based on the state of a certain path, such as whether it exists or not.
  9. Timer Timer unit is used similar to Crontab to schedule other units.
  10. Snapshot
    A snapshot of the current systemd state. Usually used to rollback after making temporary changes to systemd.
  11. Slice Restriction of resources through Linux Control Group nodes (cgroups).
  12. Scope Information from systemd bus interfaces. Usually used to manage external system processes.
systemctlcommand

is the primary tool to manage SystemD. It can be used for starting , stopping of services as well as enabling and disabling , this was previously performed with service and chkconfig commands in the previous versions.

Basic Service Management Syntax
Description: Command
Start the Service systemctl start foo
Stop the Service systemctl stop foo
Restart the Service systemctl restart foo
Status of the Service systemctl status foo
Enable Service to start at bootime systemctl enable foo
Disable the Service systemctl disable foo
Check if service is enabled
?
systemctl is-enabled foo

Mask
the Service
systemctl mask foo
Reload the updated unit file systemctl daemon-reload
Show Failed Services systemctl -failed
Reset any failed service systemctl reset-failed
Show properties of the Unit systemctl show < service >
Edit the Service Unit systemctl edit < service >
Edit the Full Service Unit systemctl edit --full < service >
Run on remote host systemctl -H < host_name > status network
Changing System State
Reboot host systemctl reboot
Poweroff host systemctl poweroff
Switch to Emergency mode systemctl emergency
Log back to default mode (Multi-User) systemctl default
Viewing Log Messages
Show all log messages journalctl
Show only kernel log messages journalctl -k
Show log for specific service journalctl -u network.service
Follow messages as they appear journalctl -f

Besides services, most systemd commands can work with these unit types: paths,
slices, snapshots, sockets, swaps, targets, and timers

Linux Boot Series – Part 2

linux boot process 2

Once the Hardware check POST “Power On Self Test” is completed and boot devices are identified , the last step by UEFI / BIOS was to identify the first boot device read the  <abbr title=”Master boot record”>MBR</abbr>. Its a 512 byte in the storage device that stores boot loader information, this can be considered as an index location that refer to other sectors for loading the Operating System. In most of the Linux distributions GRUB V2 is used as a bootloader as of this writeup.

GRUB V2 stands for “Grand Unified Bootloader, version 2” , it is the program that identifies and loads system kernel. At this point we should be clear why we use GRUB2 / GRUB V2 rather then just simply calling it GRUB ? that is because GRUB V2 is the rewrite of a legacy bootloader GRUB2 with many new features and a modular design. It is designed for multi-OS boot running multiple Linux, Unix and other proprietary Operating systems such as MS Windows. It can even identify multiple kernel for the Same Linux distribution and allow to boot from older version if required.

The default configuration file is
Ubuntu /boot/grub/grub.conf
RHEL 7 /boot/grub/grub.conf

Grub in itself is a complete topic to be discussed along with its configuration and management options which is discussed in GRUB section.

Once the Kernel is selected, Kernel along with initramfs is loaded in main memory and root file system gets mounted, the first process in legacy SystemV was the init process which will initiate the OS processes , but this has changed with Canonical Upstart and more recently SystemD. Both these systems have been designed to overcome what was previously the shortcomings of SystemV INIT system, both of these have comparatively similar features but do differ in design and architecture. As of now SystemD seems to lead with many big distribution such as Redhat , Fedora , CentOS , Debian and last but not least Ubuntu have given up Upstart in favor of SystemD, one of the reason was both of these system were causing more confusion for the software developers community.

To keep things simple i have divided the working of these three system in separate links below.

  1. System V Init (Legacy)
  2. Upstart
  3. SystemD
Copyright © 2021 | SaitCare Hub SDN BHD