Author: Rp
Date: January 27, 2021
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 […]
Author: Rp
Date: June 12, 2013
Categories:
Howto,
PythonPython 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 🙂 […]