Hi, I'm Edwin Chebii!, a passionate Full Stack Developer.
Talking about Personal Stuff:
- π Iβm interested in software dev, blockchain technologies, and ML...
- ποΈ Iβm looking to collaborate on any project you might have in mind ...
- π look me up at https://edcheyjr.vercel.app/ to know more about me.
- π¨π½βπ» Iβm currently working on cool apps for AnagramTech π
- π± Iβm currently learning computer vision, rust, wasm, and blockchain technologies...
- π¬ Ask me about anything, I am happy to help.
- π« How to reach me [email protected] or [email protected]
- π» Previous Works
- π Resume
import React from 'react';
const Profile: React.FC = () => {
return (
<h3 className="text-yellow-500" >A passionate JavaScript Engineer!</h3>
);
};
export default Profile;
Languages and Tools:
Principle | Description |
---|---|
Single Responsibility Principle | Each class should be responsible for a single part or functionality of the system. |
Open-Closed Principle | Software components should be open for extension, but not for modification. |
Liskov Substitution Principle | Objects of a superclass should be replaceable with objects of its subclasses without breaking the system. |
Interface Segregation Principle | No client should be forced to depend on methods that it does not use. |
Dependency Inversion Principle | High-level modules should not depend on low-level modules, both should depend on abstractions. |