blog.web3afrika.comDeploying and Interacting with EVM ContractsWriting smart contract code is only the beginning if you’re trying to build anything onchain. You’ll need to deploy the contract onchain where you can interact with it and build further. Deploying smart contracts on EVM (Ethereum Virtual Machine) cha...Mar 15, 2025·7 min read
geek-up.hashnode.devVisualization Tools for Technical WritingI started technical writing in 2020, and if there’s anything I struggled with the most, it was visualizing my ideas for easier communication. The more I wrote and researched, I found tools I could use to express myself better, and since I couldn’t f...Feb 26, 2022·3 min read
geek-up.hashnode.devPointers In go.WHAT ARE POINTERS? Pointers are objects e.g variables that link to the memory address of another variable. The memory address of a pointer contains the memory address to the referenced variable which often looks like this 0xc00010230. Pointers are i...Feb 14, 2022·4 min read
geek-up.hashnode.devA Beginners Introduction To Go (golang)WHAT IS GO Lately, Go a.k.a Golang has been a buzzword and a preferred programming language by many developers and startups. Companies like Discord, Google, Netflix, Spotify, Uber e.t.c use Go to power their apps and services. While most of these com...Feb 5, 2022·2 min read
geek-up.hashnode.devA Shed Under The Tree Data StructureOnce again, I write on another data structure. My other data structure articles have been on linear data structures (Sequentially arranged data structures) from Linked Lists to Stacks and Queues. Trees are nonlinear data structures(nodes can be c...Jan 9, 2022·5 min read