Samson Ajulor

Samson Ajulor

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!!

Backend Cheat Sheet

# 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 more

30+ Blockchain concepts for Beginners

## 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 more

How to deploy a LAMP stack website in AWS Cloud!

# 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 more

Functions Storage in Solidity.

- 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 more

StarkNet Messaging Contract

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 more

How to implement a microservice-based application, packaged with Helm and CI/CD pipelines.

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 more

A Spice of Node (Not the computer!)

#### 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 more

30+ Solidity and Smart Contract concepts for Beginners

## 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