Welcome to my GitHub profile! I'm Rafshan Rakeeb, an undergraduate student specializing in Computer Science & Engineering at the University of Moratuwa. I have a passion for technology, coding, and teaching. Hereβs a bit more about me:
class Iam {
constructor() {
this.username = 'mohamedRafshan';
this.location = 'Ampara, Sri Lanka';
this.currentEducation = {
institutes: [ "University of Moratuwa"],
majors: ["Software Engineering", "Computer Science and Engineering", "Web Development"]
};
this.currentlyLearning = {
1: "Java",
2: "React Native",
};
this.funFact = "Love for Adventure Sports πββοΈ!";
this.hobbies = [
'Bike Ride',
'Cricket',
'Chilling π',
'Coding π»',
'Sci-Fi Movies π₯'
];
}
getCity() {
return "Ampara, Sri Lanka";
}
ambitions() {
return [
"Become an Engineer",
"Do New Things",
"Enjoy Life"
];
}
toString() {
let profile = `
Username: ${this.username}
Location: ${this.location}
Education:
- Institutes: ${this.currentEducation.institutes.join(", ")}
- Majors: ${this.currentEducation.majors.join(", ")}
Currently Learning:
`;
for (const key in this.currentlyLearning) {
profile += ` ${key}. ${this.currentlyLearning[key]}\n`;
}
profile += `
Fun Fact: ${this.funFact}
Hobbies:
`;
this.hobbies.forEach(hobby => {
profile += ` - ${hobby}\n`;
});
profile += `
City: ${this.getCity()}
Ambitions:
`;
this.ambitions().forEach(ambition => {
profile += ` - ${ambition}\n`;
});
return profile;
}
}
const rafshan = new Iam();
console.log(rafshan.toString());
- LinkedIn: Rafshan Rakeeb
- Email: [email protected]
Coding is like building a new world! When you're stuck in a bug, it's like solving a puzzle, and when it works β it's pure magic! β¨
Note
Coding is like humor. If you have to explain it, itβs probably bad.
Tip
Remember, "Hello, World!" is not just a phrase, it's a lifestyle.
Important
There are 10 types of people in the world: Those who understand binary and those who donβt.
Warning
Debugging: Removing the needles from the haystack. Coding: Adding new needles to the haystack.
Caution
Beware of code that compiles on the first run. It likely hides some evil trickery.