Author: Abdulrasaq

  • Making Custom Numbered List in CSS : Part 1

    Creating a custom numbered list in CSS is quite simple. This can be done using a list or any block level element. We will be using the following CSS properties: Below is a sample using counter function with block level elements. See the Pen Custom List in CSS by Sheun (@sheunl) on CodePen. Custom numbering…

  • Importance of software Testing

    In a lot of solo projects testing is usually an after thought. Any team or even individual with any long term plans for a project should have test written into their code. If your projects do not have tests they are exposed to the following issue. Just because a project is small does not mean…

  • Quick one on Python random numbers sampling

    I have been working on a project to generate random data using Python. Since I am not using this project for any security application I opted for the Python pseudo-random number generator random . In order to randomly select items from a list three option presented themselves to me random.choice, random.choices and random.sample . random.choice…