Skip to content
View duylongtd's full-sized avatar
😾
ngok
😾
ngok
Block or Report

Block or report duylongtd

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

Typing SVG

Hi there, I'm Tran Dinh Duy Long 👋

Facebook Gmail Instagram View - duylongtd CV

  • I am a 3nd-year student at FPT University, and I am a person who loves to learn and tinker with code.

  • My strength is Java language, I am looking for jobs related to this language. I can work full time or part time jobs.

  • I'm a football enthusiast, like to listen to ballad or indie music, but my mind is not too sad (sometimes) hahaha... Just a brief introduction. Thank you for visiting my GitHub.

      /**
       *  MY PERSONAL DETAIL
       */
    
      public enum Gender {
        MALE,
        FEMALE
      }
    
      @AllArgsConstructor
      @NoArgsConstructor
      @FieldDefaults(level = AccessLevel.PRIVATE)
      @Data
      public class PersonalDetail {
    
        String name;
        long age; //Declare the data type as `long` to expect to live long
        Gender gender;
        String university;
        boolean single;
        int experience;
        byte currentYearInUniversity;
        List<String> hobby;
    
        public void sayHello(String message) {
            System.out.println(message);
        }
      }
    
      @SpringBootApplication
      public class Main {
    
        public static void main(String[] args) {
            int age = 21;
            int experienceYear = 1;
            byte studyYear = 3;
            boolean isSingle = true;
            List<String> listHobbies = new ArrayList (
                Arrays.asList("Football", "Music", "Cooking")
            );
    
            PersonalDetail duylongtd = new PersonalDetail (
                "Trần Đình Duy Long",
                age,
                Gender.MALE,
                "FPT University",
                isSingle,
                experienceYear,
                studyYear,
                listHobbies
            );
    
            String message = "Thank you for visiting my GitHub page";
            duylongtd.sayHello(message);
            SpringApplication.run(Main.class, args);
        }
      }

🐼 GitHub Stats 🐈

Popular repositories Loading

  1. duylongtd duylongtd Public

    1

  2. SWT301-Lab2 SWT301-Lab2 Public

    JavaScript