LMLuciana Murimiinlucianamurimi.hashnode.dev路Oct 28, 2024 路 4 min readLinked ListsA linked list is a linear data structure consisting of nodes. Each node contains a data element and a reference to the next node in the sequence. Linked lists are implemented using objects. // Definition of a Linked List Node. class Node { con...00
LMLuciana Murimiinlucianamurimi.hashnode.dev路Oct 8, 2021 路 5 min readCapturing M-Pesa webhookHello friends 馃憢, picking up from where we left off in the previous article; an M-Pesa STK Prompt has been sent to the customer; the customer can now input their pin, thus authorizing and completing the payment. However, there are instances whereby t...02UY
LMLuciana Murimiinlucianamurimi.hashnode.dev路Oct 7, 2021 路 5 min readMaking M-Pesa STK Push Trigger RequestHello friends 馃憢, in this article we will pick up from where we left off in the previous article, and proceed to making the M-Pesa STK Push Trigger Request. Things to be covered in this article include: Capturing the API Required Parameters Testing ...01G
LMLuciana Murimiinlucianamurimi.hashnode.dev路Oct 7, 2021 路 1 min readIntroduction to Daraja APIHello friends 馃憢, in this series we are going to cover integration of M-Pesa Services into our Flutter Mobile Application. I鈥檝e always loved how M-Pesa uniquely addressed the East African financial needs; providing a secure sim card - based banking a...00
LMLuciana Murimiinlucianamurimi.hashnode.dev路Aug 23, 2021 路 5 min readInfix to Postfix conversionHello friends馃憢 In this article we'll be going through the key part in building a calculator app; which is infix to postfix conversion. Say that we are to build a basic calculator app as shown in figure below; that accepts the following operators: su...01T