Recent posts

Python Descriptors

A descriptor in Python is a class attribute which defines any of the special methods: __get__(self, obj, owner=None) -> value __set__(self, obj, valu...

Timsort

Most programmers would be familiar with some fundamental sorting algorithms such as bubble sort, selection sort, insertion sort, and merge sort. Then which a...

Understanding HTTP with netcat

Any web developer would know about HTTP buy may not be familiar with the exact syntax of it because it’s abstracted by the network libraries.