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

Block or report Srajal-Cresteyy

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

Hello ! Thankyou for visiting !

class Attributes {
public:
    static std::tuple<std::string, std::string, std::string> contact() {
        std::string discord  = "cresteyy#7484";
        std::string telegram = "t.me/SrajalDwivedi";
        std::string gmail    = "srajal72dwivedi@gmail.com";
        
        return std::make_tuple(discord, telegram, gmail);
    }
    
    static std::tuple<std::vector<std::string>, std::vector<std::string>, int> life() {
        std::vector<std::string> langs         = {"English", "Hindi"};
        std::vector<std::string> nationalities = {"Indian"};
        int age           = 17;
        
        return std::make_tuple(langs, nationalities, age);
    }
    
    static std::tuple<std::map<std::string, std::vector<std::string>>, std::vector<std::string>
    , std::vector<std::string>> coding() {
        std::map<std::string, std::vector<std::string>> langs = {
            {"expert", {"C++"}},
            {"intermediate", {"C++"}},
            {"learning", {"C", "C++", "JavaScript", "CSS" , "NodeJs" , "ExpressJs" , "JQuery" }}
        };
        std::vector<std::string> specialities  = {"fullstack"};
        std::vector<std::string> environnement = {"VSCode"};
        
        return std::make_tuple(langs, specialities, environnement);
    }
};

Skills

Pinned Loading

  1. My-Portfolio- My-Portfolio- Public

    This is my portfolio website project which is made on reactjs

    JavaScript

  2. Lets-Journal Lets-Journal Public

    A blog Website with frontend based EJS , Bootstrap and HTML,CSS and Backend on NodeJS and ExpresesJS server and MongoDB database

    JavaScript

  3. NewsLetterProject NewsLetterProject Public

    This is an api based project which uses a mailchimp api for bulking mailing services For Backend : NodeJs , ExpressJs for Frontend: HTML , CSS(Bootstrap)

    HTML 1

  4. The-ToDo The-ToDo Public

    A complete ToDo list Web App with a backend on node js and express ja and bootstrap front end with a database using mongoDB and mongoose

    JavaScript

  5. Code-Snippets Code-Snippets Public

    C++

  6. DSAQuestion DSAQuestion Public

    This repository is for those question which i was unable to solve in contest or they are the problem of the day this algorithms include some of the important concepts

    C++