Skip to content
View MaiDinhVinh's full-sized avatar
β˜•
Java SE Certified Dev in progress
β˜•
Java SE Certified Dev in progress

Highlights

  • Pro

Organizations

@TinyTensor

Block or report MaiDinhVinh

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
MaiDinhVinh/README.md
import java.util.ArrayList;
import java.util.List;
class READMEMechanism {
    private String welcomingSlogan;
    private String govermentName;
    private String nickName;
    private String whoAmI;
    private String favoriteSubject;
    private String whichClubImIn;
    private String favoriteGame;
    private String favoriteSport;
    private String currentSkill;
    private String contactEmail;
    private String personalWebsite;
    private List<String> myGitProfile = new ArrayList<>();




    public READMEMechanism(){
        this.welcomingSlogan = "Welcome to the ricefield (VN) πŸ‘‹";
        this.govermentName = "MaiDinhVinh";
        this.nickName = "😎 Nickname: DucksaberVN or VinhDev";
        this.whoAmI = "☠ A typical highschool student";
        this.favoriteSubject = "Physic enjoyer, CS lover, Mathematic hater (tho im good at math, idk)";
        this.whichClubImIn = "πŸ–₯ FPT Software Club";
        this.favoriteGame = "Favorite game: Minecraft, CS2, Geometry Dash";
        this.favoriteSport = "Retired Badminton Defender (Arcsaber 11 Pro - Halbertec 8000)";
        this.currentSkill = "♨ Java Core (Prepare for upcoming Java Certified Professional Dev)";
        this.contactEmail = "[email protected]";
        this.personalWebsite = "vinhdev.vn (underconstruction)";
    }

    public void addAttribute(){
        this.myGitProfile.add(this.welcomingSlogan);
        this.myGitProfile.add(this.govermentName);
        this.myGitProfile.add(this.nickName);
        this.myGitProfile.add(this.whoAmI);
        this.myGitProfile.add(this.favoriteSubject);
        this.myGitProfile.add(this.whichClubImIn);
        this.myGitProfile.add(this.favoriteGame);
        this.myGitProfile.add(this.favoriteSport);
        this.myGitProfile.add(this.currentSkill);
        this.myGitProfile.add(this.contactEmail);
        this.myGitProfile.add(this.personalWebsite);
    }


    public void getMyProfile(){
        this.myGitProfile.forEach(m -> System.out.println(m));
    }
}

public class README{
    public static void main(String[] args) {
        READMEMechanism VinhDev = new READMEMechanism();
        VinhDev.addAttribute();
        VinhDev.getMyProfile();
        System.out.println("lol");
    }
}

Pinned Loading

  1. CS-Java CS-Java Public

    Where I store all Java source codes for studying

    Java

  2. TinyTensor/.github TinyTensor/.github Public