Fast API in Python
“Fast API is used for generating REST API which is used for web services. It is completely open-source and the use of this web framework …
25 redis commands you need to know
Redis is one of the fastest key-value pair and in-memory databases that we can make use of for our applications. It is mostly preferred b…
How to create WordPress Plugins
WordPress comes with one of the most fascinating features of having multiple plugins available in it which makes the task of adding the n…
25 postgres psql commands you need to know
PostgreSQL database can be accessed and manipulated by using an interactive terminal prompt named psql. When dealing with a database, the…
python linked lists
Python doesn’t have inbuilt linked lists, you will have to create one. A linked list (as the name says it’s like a chain) is a sequence o…
python bitwise operations
Bitwise operations are important and are used in setting up flags, they are used in Cryptography and compression algorithms, graphics et…
Creating a SAS data set from a raw data file in fixed field format
Find below a sample raw data file. It’s a simple txt file with four columns. Data in each column starts from the same point, i.e. this is…
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…