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

Block or report Rashed112

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
Rashed112/README.md

πŸ‘‹ Hi there, I'm Rashed

Typing SVG
Profile Views GitHub Followers

πŸš€ About Me

package main

import "fmt"

type StatusProvider interface {
    Status() string
}

type Developer struct {
    Name         string            `json:"name"`
    Role         string            `json:"role"`
    Location     string            `json:"location"`
    Stack        []string          `json:"stack"`
    Interests    map[string]bool   `json:"interests"`
    CurrentGoals []string          `json:"current_goals"`
    Contact      string            `json:"contact"`
}

func NewBackendDev() *Developer {
    return &Developer{
        Name:     "Md. Rashededuzzaman",
        Role:     "Backend Developer & Problem Solver",
        Stack:    []string{"C++", "Go", "Spring Boot", "Node.js", "MongoDB"},
        CurrentGoals: []string{
            "Mastering System Design & Microservices",
            "Building Scalable Backend Systems",
            "Excelling in Competitive Programming",
            "Contributing to Open Source",
        },
        Interests: map[string]bool{
            "Microservices": true,
            "Open Source":   true,
            "Football":      true,
            "Anime":         true,
        },
        Contact: "rashedzaman319@gmail.com",
    }
}

func (d *Developer) Status() string {
    return "🟒 Available for collaboration"
}

func main() {
    me := NewBackendDev()
    var provider StatusProvider = me
    fmt.Printf("Hi! I'm %s - %s\n", me.Name, provider.Status())
}

πŸ› οΈ Tech Stack

Languages

Languages

Backend Ecosystem & Databases

Backend Ecosystem & Databases

DevOps & Tools

DevOps & Tools

πŸ† Competitive Programming


🀝 Connect With Me


πŸ“Š GitHub Analytics

GitHub Streak

Pinned Loading

  1. Competitive-Programming Competitive-Programming Public

    Hints & Solutions of Competitive Programming Problems of several Online Judges like Codeforces, AtCoder, UVA, LightOJ, SPOJ, InterviewBit, HackerEarth, CodeChef, HackerRank etc.

    C++ 5

  2. LeetCode-Solutions LeetCode-Solutions Public

    Solutions to problems of LeetCode OJ written in C++, with some hints/explanations

    C++ 3

  3. Jobify-MERN-Project Jobify-MERN-Project Public

    A full-stack job tracking application using the MERN stack

    JavaScript 1

  4. Task-Manager-API Task-Manager-API Public

    JavaScript 1

  5. Amazon-Clone-JS-Project Amazon-Clone-JS-Project Public

    JavaScript 1

  6. Ecommerce_Site_ASPdotNETCore Ecommerce_Site_ASPdotNETCore Public

    C# 1