Skip to content

Commit f2ba466

Browse files
jennydamanindefinities
authored andcommitted
Jennings edited and linted his information on the site.
1 parent 95007f1 commit f2ba466

File tree

5 files changed

+204
-206
lines changed

5 files changed

+204
-206
lines changed

.eslintrc.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
module.exports = {
2-
'extends': 'plugin:vue/essential'
3-
}
2+
'extends': 'plugin:vue/essential',
3+
'rules': {
4+
indent: ['error', 2]
5+
}
6+
}

src/data/eboard.js

Lines changed: 73 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -1,80 +1,78 @@
1-
const EBOARD = [
2-
{
3-
name: 'Edward Li',
4-
position: 'President',
5-
school: 'KCCS',
6-
major: 'Computer Science',
7-
year: '2021',
8-
hasImage: true,
9-
bio: "Hi I'm Eddy, a fourth year CS major, and the president of NUHacks. Outside of computer science I enjoy musicals, sudoku, and everything star wars prequels!",
10-
links: {
11-
website: 'https://eddyli.dev/',
12-
gitHub: "NEUDitao",
13-
email: 'li.edwa@northeastern.edu',
14-
linkedIn: 'eddy-li'
15-
}
16-
},
17-
{
18-
name: 'Kyle Posluns',
19-
position: 'Vice President',
20-
school: 'KCCS',
21-
major: 'Computer Science',
22-
year: '2022',
23-
hasImage: true,
24-
bio: 'Third year CS major from Chicago, with a passion for technology and how it can improve the lives of people.',
25-
links: {
26-
website: 'https://kyleposluns.com',
27-
gitHub: 'kyleposluns',
28-
email: 'posluns.k@northeastern.edu',
29-
linkedIn: 'kyleposluns'
30-
}
31-
32-
},
33-
{
34-
name: 'Alex Reed',
35-
position: 'Treasurer',
36-
school: 'KCCS',
37-
major: 'Computer Science',
38-
year: '2023',
39-
hasImage: false,
40-
bio: "Lorem ipsum dolor sit amet... that's it.",
41-
links: {
42-
email: "reed.al@northeastern.edu",
43-
linkedIn: 'alex-reed-a84b9b183'
44-
}
1+
export default [
2+
{
3+
name: 'Edward Li',
4+
position: 'President',
5+
school: 'KCCS',
6+
major: 'Computer Science',
7+
year: '2021',
8+
hasImage: true,
9+
bio: "Hi I'm Eddy, a fourth year CS major, and the president of NUHacks. Outside of computer science I enjoy musicals, sudoku, and everything star wars prequels!",
10+
links: {
11+
website: 'https://eddyli.dev/',
12+
gitHub: "NEUDitao",
13+
email: 'li.edwa@northeastern.edu',
14+
linkedIn: 'eddy-li'
15+
}
16+
},
17+
{
18+
name: 'Kyle Posluns',
19+
position: 'Vice President',
20+
school: 'KCCS',
21+
major: 'Computer Science',
22+
year: '2022',
23+
hasImage: true,
24+
bio: 'Third year CS major from Chicago, with a passion for technology and how it can improve the lives of people.',
25+
links: {
26+
website: 'https://kyleposluns.com',
27+
gitHub: 'kyleposluns',
28+
email: 'posluns.k@northeastern.edu',
29+
linkedIn: 'kyleposluns'
30+
}
4531

46-
},
47-
{
48-
name: 'Nat Hsu',
49-
position: 'Webmaster',
50-
school: 'KCCS + CAMD',
51-
major: 'Computer Science & Interaction Design',
52-
year: '2022+1',
53-
hasImage: true,
54-
bio: 'Your local boba addict. I also draw and play video games sometimes. Did you know I made this site?',
55-
links: {
56-
website: 'https://indefinities.gitHub.io',
57-
gitHub: 'indefinities',
58-
email: 'hsu.na@northeastern.edu',
59-
linkedIn: 'natdhsu'
60-
}
32+
},
33+
{
34+
name: 'Alex Reed',
35+
position: 'Treasurer',
36+
school: 'KCCS',
37+
major: 'Computer Science',
38+
year: '2023',
39+
hasImage: false,
40+
bio: "Lorem ipsum dolor sit amet... that's it.",
41+
links: {
42+
email: "reed.al@northeastern.edu",
43+
linkedIn: 'alex-reed-a84b9b183'
44+
}
6145

62-
},
63-
{
64-
name: 'Jennings Zhang',
65-
position: 'Commander of Communication',
66-
school: 'KCCS + COS',
67-
major: 'Computer Science & Biology',
68-
year: '2022',
69-
hasImage: true,
70-
bio: 'Opinionated and awkward person ;-;',
71-
links: {
72-
website: 'https://jennydaman.gitlab.io',
73-
gitHub: 'jennydaman',
74-
email: 'zhang.jenn@northeastern.edu'
75-
}
46+
},
47+
{
48+
name: 'Nat Hsu',
49+
position: 'Webmaster',
50+
school: 'KCCS + CAMD',
51+
major: 'Computer Science & Interaction Design',
52+
year: '2022+1',
53+
hasImage: true,
54+
bio: 'Your local boba addict. I also draw and play video games sometimes. Did you know I made this site?',
55+
links: {
56+
website: 'https://indefinities.gitHub.io',
57+
gitHub: 'indefinities',
58+
email: 'hsu.na@northeastern.edu',
59+
linkedIn: 'natdhsu'
60+
}
7661

62+
},
63+
{
64+
name: 'Jennings Zhang',
65+
position: 'Commander of Communication',
66+
school: 'KCCS + COS',
67+
major: 'Computer Science & Biology',
68+
year: '2022',
69+
hasImage: true,
70+
bio: 'Opinionated and awkward person ;-;',
71+
links: {
72+
website: 'https://jennydaman.gitlab.io/',
73+
gitHub: 'jennydaman',
74+
email: 'jz@nuhacks.io'
7775
}
78-
];
7976

80-
export default EBOARD;
77+
}
78+
];

src/data/members.js

Lines changed: 72 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,76 @@
1-
const MEMBERS = [
2-
{
3-
name: 'Jennings Zhang',
4-
school: 'KCCS + COS',
5-
year: '2022',
6-
hasImage: true,
7-
links: {
8-
gitHub: 'jennydaman',
9-
website: 'https://jennydaman.gitlab.io/',
10-
email: 'jz@nuhacks.io',
11-
},
12-
ccs: 'jenni',
13-
interests: [
14-
'Computational Medicine',
15-
'Human gut microbiome',
16-
'Neuroinformatics',
17-
'Education (fundies bad)',
18-
'Cybersecurity',
19-
'{{buzzword[8]}}',
20-
'Philosophy and Debate',
21-
'Chinese tea'
22-
]
1+
export default [
2+
{
3+
name: 'Jennings Zhang',
4+
school: 'CCIS + COS',
5+
year: '2022',
6+
hasImage: true,
7+
links: {
8+
gitHub: 'jennydaman',
9+
website: 'https://jennydaman.gitlab.io/',
10+
email: 'jz@nuhacks.io',
2311
},
24-
{
25-
name: 'Edward Li',
26-
school: 'KCCS',
27-
year: '2021',
28-
hasImage: true,
29-
links: {
30-
gitHub: 'NEUDitao',
31-
website: 'https://eddyli.dev/',
32-
email: 'li.edwa@northeastern.edu',
33-
},
34-
ccs: 'ditao1',
35-
interests: [
36-
'anything, literally anything.',
37-
'I love musicals',
38-
'basketball'
39-
]
12+
ccs: 'jenni',
13+
interests: [
14+
'Biomedicine',
15+
'Neuroinformatics',
16+
'Education (fundies bad)',
17+
'Cybersecurity',
18+
'{{buzzword[8]}}',
19+
'Philosophy',
20+
'Smash Bros Ultimate'
21+
]
22+
},
23+
{
24+
name: 'Edward Li',
25+
school: 'KCCS',
26+
year: '2021',
27+
hasImage: true,
28+
links: {
29+
gitHub: 'NEUDitao',
30+
website: 'https://eddyli.dev/',
31+
email: 'li.edwa@northeastern.edu',
4032
},
41-
{
42-
name: 'Brandon Liang',
43-
school: 'KCCS',
44-
year: '2023',
45-
hasImage: true,
46-
links: {
47-
gitHub: '54skyxenon',
48-
website: 'https://brandonliang.com/',
49-
email: 'liang.bra@northeastern.edu',
50-
},
51-
ccs: 'bwliang2001',
52-
interests: [
53-
'Anime',
54-
'Hackathons',
55-
'Travel',
56-
'YGO'
57-
]
33+
ccs: 'ditao1',
34+
interests: [
35+
'anything, literally anything.',
36+
'I love musicals',
37+
'basketball'
38+
]
39+
},
40+
{
41+
name: 'Brandon Liang',
42+
school: 'KCCS',
43+
year: '2023',
44+
hasImage: true,
45+
links: {
46+
gitHub: '54skyxenon',
47+
website: 'https://brandonliang.com/',
48+
email: 'liang.bra@northeastern.edu',
5849
},
59-
{
60-
name: 'Daniel Melcer',
61-
school: 'KCCS',
62-
year: '2021',
63-
hasImage: true,
64-
links: {
65-
gitHub: 'dmelcer9',
66-
website: 'https://brandonliang.com/',
67-
email: 'melcer.d@northeastern.edu',
68-
},
69-
ccs: 'dmelcer9',
70-
interests: [
71-
'Hackathons',
72-
'Robotics',
73-
'TV shows',
74-
"basically anything, though I don't really keep up with celebrities and such"
75-
]
76-
}
50+
ccs: 'bwliang2001',
51+
interests: [
52+
'Anime',
53+
'Hackathons',
54+
'Travel',
55+
'YGO'
56+
]
57+
},
58+
{
59+
name: 'Daniel Melcer',
60+
school: 'KCCS',
61+
year: '2021',
62+
hasImage: true,
63+
links: {
64+
gitHub: 'dmelcer9',
65+
website: 'https://brandonliang.com/',
66+
email: 'melcer.d@northeastern.edu',
67+
},
68+
ccs: 'dmelcer9',
69+
interests: [
70+
'Hackathons',
71+
'Robotics',
72+
'TV shows',
73+
"basically anything, though I don't really keep up with celebrities and such"
74+
]
75+
}
7776
];
78-
79-
export default MEMBERS;

src/views/EBoard.vue

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -92,39 +92,39 @@ export default {
9292
getUrl(key, user) {
9393
let url;
9494
switch (key) {
95-
case "gitHub":
96-
url = "https://github.com/" + user;
97-
break;
98-
case "email":
99-
url = "mailto:" + user;
100-
break;
101-
case "linkedIn":
102-
url = "https://linkedin.com/in/" + user;
103-
break;
104-
default:
105-
url = user;
106-
break;
95+
case "gitHub":
96+
url = "https://github.com/" + user;
97+
break;
98+
case "email":
99+
url = "mailto:" + user;
100+
break;
101+
case "linkedIn":
102+
url = "https://linkedin.com/in/" + user;
103+
break;
104+
default:
105+
url = user;
106+
break;
107107
}
108108
return url;
109109
},
110110
getSrc(key) {
111111
let source;
112112
switch (key) {
113-
case "website":
114-
source = require("../assets/cursor.svg");
115-
break;
116-
case "gitHub":
117-
source = require("../assets/GitHub-Mark-64px.png");
118-
break;
119-
case "email":
120-
source = require("../assets/microsoft-outlook.svg");
121-
break;
122-
case "linkedIn":
123-
source = require("../assets/linkedin.svg");
124-
break;
125-
default:
126-
source = null;
127-
break;
113+
case "website":
114+
source = require("../assets/cursor.svg");
115+
break;
116+
case "gitHub":
117+
source = require("../assets/GitHub-Mark-64px.png");
118+
break;
119+
case "email":
120+
source = require("../assets/microsoft-outlook.svg");
121+
break;
122+
case "linkedIn":
123+
source = require("../assets/linkedin.svg");
124+
break;
125+
default:
126+
source = null;
127+
break;
128128
}
129129
return source;
130130
},

0 commit comments

Comments
 (0)