Skip to content
View MohamedRafshan's full-sized avatar
🎯
Focusing
🎯
Focusing

Highlights

  • Pro

Block or report MohamedRafshan

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
MohamedRafshan/README.md

Hi there πŸ‘‹

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());

πŸ“Š GitHub Stats:

GitHub Stats

GitHub Streak

Productive Time

mohamedrafsha

Man Technologist Skills

Gear Languages

My Skills

Link My Toolbox

My Skills

πŸ“« How to Reach Me


⚑ Fun Fact:

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.

Pinned Loading

  1. quizApp_java quizApp_java Public

    This is a Java-based application for managing a question and answer platform. The application allows users to post, retrieve, and categorize questions using a RESTful API built with Spring Boot.

    Java

  2. Anushka-Pote/StandOut-Platform Anushka-Pote/StandOut-Platform Public

    AI-powered learning platform that transforms asynchronous courses into dynamic and engaging experiences

    HTML 16 25

  3. freeCodeCamp freeCodeCamp Public

    Forked from freeCodeCamp/freeCodeCamp

    freeCodeCamp.org's open-source codebase and curriculum. Learn to code for free.

    TypeScript

  4. react react Public

    Forked from primer/react

    An implementation of GitHub's Primer Design System using React

    TypeScript

  5. HungryBox HungryBox Public

    Forked from Mahak008/HungryBox

    HungryBox is a Tiffin Delivery Service Platform which provides a comprehensive solution for managing tiffin orders, user accounts, and administrative tasks.

    JavaScript

  6. SocioSell SocioSell Public

    Forked from Varsha-1605/SocioSell

    The Social Media to Product Listings Generator is an open-source AI tool that transforms social media product showcases into structured, detailed listings optimized for e-commerce platforms like Am…

    Python