personal project – url shortener

Categories: aws, microservice, Python, Security

To get back to ‘hardcode’ coding, I want to start a series of personal projects. The first in the series is an URL shortener. The idea is to create a simple API service to generate and manage URL shortener keys. The goal of this API service is to: Generate a new key given an URL […]

Methods to clone a python list

Categories: Howto, Python

Python list are one of the most used data structure. An improper cloning of a list has burnt more midnights’ oil than creation & manipulation of the list has taken. Cloning isn’t difficult but plain different. Of course, I am not considering the most obvious method iterate through the list and create a new list 🙂 […]