tosin-jd.hashnode.devHow to Integrate Paystack Payment Gateway to Your Laravel Application 12Use Paystack to receive payment in Naira in Nigeria, Ghana and other African Countries This article will explain to you how to use paystack in your laravel application. Specifically, this is aimed at Laravel 12 and above. You should still be able to ...Dec 25, 2025·5 min read
tosin-jd.hashnode.devIntroduction to Functional ProgrammingFunctional Programming also popularly known as (FP) is basically writing programs that are composed of functions. The idea is to write your codes in functions that can be invoked. Can you imagine a program that doesn't consist of anything else except...Apr 28, 2022·3 min read
tosin-jd.hashnode.devHow to use Functions In PythonWhat is a Function? A function is a set of codes that you can use and reuse. The main purpose of a function is that it should be reusable. If you cannot reuse it, it is not a function. Functions help programmers to break down a large set of code into...Apr 27, 2022·7 min read
tosin-jd.hashnode.devLocal and Global Scope in PythonI would like to start by saying: The bucket of water in my bathroom is mine but the tap of water flowing on the street is ours. The quote above quote neatly wraps up the idea behind local and global scope. If a variable has only local scope, you c...Apr 8, 2021·3 min read
tosin-jd.hashnode.devHow to use arguments in Python funtionsWhat is an argument? In programming, an argument is an input that you give to a program to work with. Giving arguments to our functions makes them dynamic, it will allow other people to be able to use our functions by passing their own arguments to o...Apr 8, 2021·3 min read