- I’m Abiodun, a Software Developer currently based in Aachen Germany 🇩🇪.
- On here, I share coding tips, tricks and learnings.
- Do give a 🌟 on Github !
Are your Github Workflows safe from attack?
This article explain common problem with Github workflow and recommends solution.
Custom Types in Pydantic
Introduction to Pydantic and Custom Types in Pydantic
Segmentation Fault in Python
Not the usual Python bug 🐞.
Github Profile in Minutes
Create an Awesome Github Profile in Minutes.
Understanding Decorators in Python
In simple words, Decorators in Python Programming Language are used to add additional functionalities to functions or classes. Decorators allow programmers to wrap another function in order to extend the functionality of the wrapped function, without permanently modifying it. Function Based Considering the below function which basically just prints ‘Hello World’. def print_greeting(): print('Hello John') The above function’s behavior can be extended from just printing a one-line sentence to doing several things. So let’s create our first decorator. ...