Hi There!! I am Samson Ajulor the Lead Engineer of Algofanatics. We just want to guide you through this career space. I have experience in Software Development Life Cycle and all its processes and I can assure you that you are gonna get value. Chao!!
Samson Ajulor
Backend Cheat Sheet
- Samson Ajulor
- Backend
- 21 Jul, 2023
# 1. Data Structures and Algorithms:### Linked List Implementation in Python: ```python class Node: def __init__(self, data): self.data = data self.next = Noneclass LinkedList
read more30+ Blockchain concepts for Beginners
- Samson Ajulor
- Blockchain, Cryptocurrency
- 01 Aug, 2023
## 1. Explain the EVMThe EVM (Ethereum Virtual Machine) is a decentralized stateful machine and this means that it is not controlled or owned by a single entity and anyone or everyone has equal rig
read moreHow to deploy a LAMP stack website in AWS Cloud!
- Samson Ajulor
- Devops
- 04 Apr, 2022
# Step 1 - installing apache and updating the firewallInstall Apache using Ubuntu’s package manager ‘apt’:#update a list of packages in package manager `sudo apt update`#run apache2 package ins
read moreFunctions Storage in Solidity.
- Samson Ajulor
- Blockchain, Cryptocurrency, Web3
- 28 Aug, 2023
- There are three distinct areas for storing and managing data within a smart contract1. Calldata: This is a special, read-only, non-modifiable area where function arguments and external calldata is
read moreStarkNet Messaging Contract
- Samson Ajulor
- Algos, Web3
- 21 Sep, 2023
This contract showcases key StarkNet development concepts, including storage, events, and functions. It allows users to send messages to each other and retrieve them.## PrerequisitesBefore we div
read moreHow to implement a microservice-based application, packaged with Helm and CI/CD pipelines.
- Samson Ajulor
- Devops
- 23 Jul, 2023
1. **What is Helm?** Helm is a package manager for Kubernetes, an open-source container orchestration platform. It simplifies the deployment, management, and scaling of applications on Kuberne
read moreA Spice of Node (Not the computer!)
- Samson Ajulor
- Backend, Node.js, Web2
- 03 Sep, 2023
#### What is Node.js? This is an opensource, javascript runtime environment that allows developers to run javascript codes on the server-side. It was created in 2009 by Ryan Dahl.It was designed to
read more30+ Solidity and Smart Contract concepts for Beginners
- Samson Ajulor
- Blockchain, Cryptocurrency, Web3
- 17 Aug, 2023
## 1. Describe the role of a Validator Validators are clients which make use of consensus algorithms to ensure that valid blocks are added to the chain. This overall ensures the security and integrit
read more