About me

A brief self-introduction

FlyingPointer2, a student from Tsinghua University, who would like to study in Github to learn and contribute to the community.

My latest GitHub activities:

Loading latest activities...

One of my favourite videos:

Another interesting video from Bilibili:

One of my favourite singers:

One of favourite programming languages:


# An example of `class` in Python

class Cat:
    def __init__(self, name, age, height, weight):
        self.name = name
        self.age = age
        self.height = height
        self.weight = weight

    def meow(self):
        print(f"Meow~ I am a cat named {self.name}.")

    def catch_mouse(self):
        print(f"{self.name} has caught a mouse!")

    def eat(self):
        self.weight += 1
        print(f"{self.name}'s weight is now {self.weight}")


if __name__ == "__main__":
    cat = Cat("小黑", 10, 30, 20)
    print(f"{cat.name} is now {cat.age} year(s) old!")
    cat.meow()
      

One of my favourite equations:

$$ \left\{ \begin{aligned} \nabla \cdot \mathbf{D} &= \rho_0 \\ \nabla \cdot \mathbf{B} &= 0 \\ \nabla \times \mathbf{E} &= -\frac{\partial \mathbf{B}}{\partial t} \\ \nabla \times \mathbf{H} &= \mathbf{j}_0 + \frac{\partial \mathbf{D}}{\partial t} \end{aligned} \right. $$

The image form of the above system of equation rendered by LaTeX is as follows:

Maxwell equations

Some of my favourite movies

Details
  • The Shawshank Redemption (1994)
  • Parasite (2019)
  • Inception (2010)
  • Spirited Away (2001)
  • The Godfather (1972)