Export Wordpress Blog to Jekyll

August 28, 2017

This is the first time I am posting on this blog. All the posts before this date have been exported from WordPress so you will find some mistakes in them. But I am sure from now onward, this is the new home for all my blog posts. I am very new to the Jekyll but I would like to learn it as fast as possible.

Read More

Importance of logging in python

August 2, 2017

Not in the mood of writing much today so will probably leave the link which I found useful and will definitely help us if we want to know more about logging.

Read More

Serialization in Django: How to serialize models with Foreign keys

July 21, 2017

Serialization is one of the main processes of creating APIs. We want to share data between different types of frontends (Web, Android, IOS) in a way that is easily accessible by them all. Serialization is the process of converting different data into a well-defined format and send it as the API response.

Read More

Updating the models

June 28, 2017

Today I was working on another branch to write the code that can fill the database. I scanned some code and saved copied the results to open them in clean JSON format because I wanted to iterate over the results. I used the online the following JSON parser.

Read More

Using requests library to grab code present at an URL

June 22, 2017

Finally, we were on the stage to build the main module of the project i.e. the module to get the URL’s from the users and return the scan results. As the first part, we are picking whatever is present at the URL, scanning the retrieved thing and showing the results.

Read More

A word about character sets - ASCII, unicode, UTF-8

June 22, 2017

Let’s talk about everything as it happened in the history. It was the time when UNIX was being built. ASCII came into the existence at that time. More such features were used before that but they are not being used now so talking about them is not valid anymore.

Read More