Skip to content
View iosyyy's full-sized avatar
🏠
居家办公
🏠
居家办公

Block or report iosyyy

Report abuse

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

Report abuse
iosyyy/README.md

header-image

Hi image-20220102113009363, I'm JHX

github-contribution-grid-snake.svg


🚀 Languages and Tools

Visual Studio Code java cpp cpp npm mysql go python HTML5 CSS3 JavaScript React Node.js SQL MySQL Git GitHub Terminal

Subham Raoniar's streak

📊 My Github Stats


hello-image


Click here to open my life's code
import lombok.Builder;
import lombok.Data;

import java.util.Arrays;
import java.util.Calendar;

/**
 * @author 💕
 * @since 🌑🌒🌓🌔🌖🌗🌘🌚 🌕🌝☀️🌞🌟
 */
@Builder
@Data
public class Life {
  private String[] languages;

  private String education;

  private String[] tech;

  private Calendar birthday;

  private String birthplace;

  public static void main(String[] args) {
    Calendar birthday = Calendar.getInstance();
    birthday.set(2️⃣0️⃣0️⃣1️⃣, Calendar.JULY, 1️⃣7️⃣);
    Life life =
        Life.builder()
            .birthday(birthday)
            .birthplace("china")
            .languages(
                new String[] {
                  "☕",
                  "C++",
                  "☕Script",
                  "HTML5",
                  "Python",
                  "flask",
                  "SQL",
                  "🤖",
                  "react",
                  "vue",
                  "go"
                })
            .education("🏫")
            .tech(
                new String[] {
                  "open source", "APIs/SDKs", "clouds", "databases", "🍃 boot", "🍃 cloud"
                })
            .build();
    System.out.println("Form " + life.getBirthplace() + "in " + life.getBirthday() + ".");
    System.out.println("I study in " + life.getEducation() + " Institute of technology.");
    System.out.println(
        "And I am familiar with the following languages"
            + Arrays.toString(life.getLanguages())
            + "has the following technologies"
            + Arrays.toString(life.getTech()));
  }
}

@iosyyy's activity is private