About

「这个人」
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;

class Program
{
    static void Main()
    {
        // 关于我
        string name = "范林涵(涵无Kannmu)";
        string university = "东南大学";
        string department = "工业设计系 / 设计学专业";
        string supervisor = "[牛亚峰](https://me.seu.edu.cn/nyf_31777/list.htm)";
        string[] hobbies = { "摄影", "游戏", "登山", "跑步" };

        // 经历
        var masterDegree = new
        {
            university = "东南大学",
            school = "机械工程学院",
            department = "工业设计系",
            major = "设计学专业",
            startDate = "2023.9",
            endDate = "至今"
        };

        var internship = new
        {
            company = "成都路行通信息技术有限公司",
            position = "深度学习算法实习生",
            startDate = "2022.8",
            endDate = "2023.3"
        };

        var roboconTeam = new
        {
            name = "Robocon川山甲战队",
            roles =  { "机械组","硬件组" },
            duration = "2020-2022"
        };

        var bachelorDegree = new
        {
            university = "四川大学",
            school = "机械工程学院",
            major = "机械设计制造及其自动化(卓越工程师)",
            startDate = "2019.9",
            endDate = "2023.6"
        };
    }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;

class Program
{
    static void Main()
    {
        // About Me
        string name = "Linhan Fan (Kannmu)";
        string university = "Southeast University";
        string department = "Industrial Design Department / Design Studies";
        string supervisor = "[Yaofeng Niu](https://me.seu.edu.cn/nyf_31777/list.htm)";
        string[] hobbies = { "Photography", "Gaming", "Hiking", "Jogging" };

        // Experiences
        var masterDegree = new
        {
            university = "Southeast University",
            school = "School of Mechanical Engineering",
            department = "Industrial Design Department",
            major = "Design Studies",
            startDate = "September 2023",
            endDate = "Present"
        };

        var internship = new
        {
            company = "Chengdu Luxingtong Information Technology Co., Ltd.",
            position = "Deep Learning Algorithm Intern",
            startDate = "August 2022",
            endDate = "March 2023"
        };

        var roboconTeam = new
        {
            name = "Robocon Chuanshanjia Team",
            roles = new[] { "Mechanical & Hardware Team" },
            duration = "2020-2022"
        };

        var bachelorDegree = new
        {
            university = "Sichuan University",
            school = "School of Mechanical Engineering",
            major = "Mechanical Design, Manufacturing, and Automation (Outstanding Engineer)",
            startDate = "September 2019",
            endDate = "June 2023"
        };
    }
}