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
| export default { name: 'Qingyu Deng', nickname: 'Ayase Niconi', email: '[email protected]', education: [ { school: 'Beijing Institute of Technology', status: 'completed', degree: "Master of Science in Engineering", since: 2016, graduatedIn: 2019, major: 'Control Science and Engineering' }, { school: 'Beijing Institute of Technology', status: 'completed', degree: "Bachelor in Engineering", since: 2012, graduatedIn: 2016, major: 'Automation' } ], openSourceProjects: [{ project: "Node.js", role: ["Collaborator", "Triager"], since: 2021 }], skills: { programmingLanguages: ['JavaScript', 'Python', "TypeScript"], interestedFields: ['Web Development', 'Machine Learning'] }, hobbies: ['Anime', 'Cycling', 'Virtual YouTuber'] }
|