Building Digital Experiences

Software engineer, blockchain enthusiast, and tech innovator creating solutions for tomorrow's challenges.

The most disastrous thing that you can ever learn is your first programming language.
JavaScript
Python
Blockchain
React
Node.js
Smart Contracts
Web3
UI/UX
Cloud Architecture
DevOps
main.js
1 const developer = {
2   name: 'Mureithi',
3   skills: ['Web', 'Blockchain', 'AI'],
4   passion: 'Building innovative solutions',
5 };
6
7 // Let's build something amazing together
8 function createFuture() {
9   return developer.skills.map(skill => {
10     return `Innovating with ${skill}`;
11   });
12 }