SAS at Backend when creating a new SAS dataset from a raw dataset
A typical SAS program to create a SAS dataset:
data try; infile rawfile ‘path_to the_rawfile.txt’; input var1 1-5 var2 $ 7-12 var3...introduction to microservices
Microservices is an architecture based on the principle of a distributed system. It combines several independent services that are easy t…
getting started with flexbox
The Flexbox Layout is derived from the word “Flexible” which means to emphasize making the items in the CSS containers flexible enough to…
getting started with curl
cURL command is used when two servers want to communicate with each other by following protocols such as FTP, GOPHER, HTTP, HTTPS, IMAP,…
http headers
HTTP headers are attached with the request and response sent between the client and the server and they contain some additional informati…
OSI reference model
OSI is developed by the International standards organization adopted for the intercommunication between two different systems. Since it b…
CIDR and subnetting
CIDR – Classless Inter-Domain Routing, also called as supernetting.
IP addresses were originally assigned in four major address classe…
python and pip
pip is used to install packages/modules in python. pypi is the default software repository for python packages. python started packaging …
python debugging
How to debug python scripts? Debugging is one of the most important things you have to do when you write a code and sometimes you have to…
atop command
atop – Advanced System & Process Monitor
atop is an interactive command which shows system performance (CPU, memory, disk and network)…