OJOluwatosin Joseph Durodolaintosin-jd.hashnode.dev·Dec 25, 2025 · 5 min readHow 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 ...00
OJOluwatosin Joseph Durodolaintosin-jd.hashnode.dev·Apr 28, 2022 · 3 min readIntroduction 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...00
OJOluwatosin Joseph Durodolaintosin-jd.hashnode.dev·Apr 27, 2022 · 7 min readHow 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...00
OJOluwatosin Joseph Durodolaintosin-jd.hashnode.dev·Apr 8, 2021 · 3 min readLocal 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...00
OJOluwatosin Joseph Durodolaintosin-jd.hashnode.dev·Apr 8, 2021 · 3 min readHow 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...00