-
Notifications
You must be signed in to change notification settings - Fork 0
/
database.sql
99 lines (97 loc) · 3.25 KB
/
database.sql
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
CREATE DATABASE portfolio;
CREATE TABLE aboutcards(
id SERIAL PRIMARY KEY,
superheading_title VARCHAR(255),
superheading_time VARCHAR(255),
superheading_logo VARCHAR(255),
about_title VARCHAR(255),
about_one_bold TEXT,
about_one_content TEXT,
about_two_bold TEXT,
about_two_content TEXT,
about_three_bold TEXT,
about_three_content TEXT,
personal_image_name VARCHAR(255),
personal_image_side VARCHAR(255)
);
INSERT INTO aboutcards (
superheading_title,
superheading_time,
superheading_logo,
about_title,
about_one_bold,
about_one_content,
about_two_bold,
about_two_content,
about_three_bold,
about_three_content,
personal_image_name,
personal_image_side)
VALUES (
'Cornell University, B.S. Computer Science, Minor in Business for Engineers,',
'2019 - 2023',
'cornellSeal',
'My Education',
'Advanced Technical Curriculum:',
'Mastered complex concepts in Object-Oriented and Functional Programming, Networking, Embedded Systems, AI, and more, ensuring a deep technical understanding and practical application skills in computer science.',
'Practical Projects:',
'Developed an AI agent that utilized neural networks and NLP, and analyzed the worldwide network coverage of Starlink Satellite Internet. Learn more in projects.',
'Business Mindset:',
'Studies in business were pivotal in linking C.S. principles with their practical applications, ensuring technical solutions are grounded in solid business strategies.',
'harrisGrad',
'right'
);
INSERT INTO aboutcards (
superheading_title,
superheading_time,
superheading_logo,
about_title,
about_one_bold,
about_one_content,
about_two_bold,
about_two_content,
about_three_bold,
about_three_content,
personal_image_name,
personal_image_side)
VALUES (
'Cornell University Big Red Pep Band Conductor',
'2019 - 2023',
'cornellSeal',
'Leadership',
'Dynamic Team Leadership:',
'Led weekly rehearsals for a 100+-member band, focusing on musical excellence and teamwork.',
'Performance Excellence at Major Events:',
'Conducted at high-energy sporting events, enhancing game atmospheres and audience engagement.',
'Innovative Feedback Integration:',
'Introduced a voting system for music selection, boosting leadership satisfaction and team collaboration.',
'harrisConducting',
'left'
);
INSERT INTO aboutcards (
superheading_title,
superheading_time,
superheading_logo,
about_title,
about_one_bold,
about_one_content,
about_two_bold,
about_two_content,
about_three_bold,
about_three_content,
personal_image_name,
personal_image_side)
VALUES (
'Music and Teamworking: Marching Band',
'2013 - 2023',
'cornellSeal',
'Teamwork',
'Long-Term Commitment:',
'For over 10 years I played saxophone and served in various roles in my high school and college marching bands.',
'Flexible Team Player:',
'During my time in Marching Band, I served in a variety of roles from Drum Major to Show Committee Chair designing formations and choosing music, to Section Leader and Librarian.',
'World Class Performances:',
'From Madison Square Garden and 5th Avenue to Main Street Disney World and all 8 Ivy League Schools, I brought school spirit and cheer all over the Northeast.',
'harrisMarching',
'right'
);