-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPortfolio Website Code
More file actions
608 lines (573 loc) · 29.5 KB
/
Copy pathPortfolio Website Code
File metadata and controls
608 lines (573 loc) · 29.5 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
from flask import Flask, render_template_string, url_for
app = Flask(__name__)
# -----------------------------
# HOME PAGE (No "Home" button)
# -----------------------------
@app.route('/')
def home():
return render_template_string('''
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<style>
body, html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
height: 100%;
background-image: url('{{ url_for("static", filename="background_image.jpg") }}');
background-size: cover;
background-position: center;
}
header {
background-color: rgba(0, 0, 0, 0.7);
color: white;
padding: 10px 0;
text-align: center;
position: relative;
z-index: 1;
}
nav a {
color: white;
margin: 0 10px;
text-decoration: none;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
h1 {
color: white;
margin: 20px 0;
}
#music-controls {
position: fixed;
bottom: 10px;
left: 10px;
z-index: 2;
}
#volume-control {
position: fixed;
bottom: 10px;
right: 10px;
z-index: 2;
}
button, input[type="range"] {
margin: 5px;
padding: 10px;
font-size: 14px;
cursor: pointer;
}
</style>
</head>
<body>
<div id="music-controls">
<button id="toggle-music" onclick="toggleMusic()">Play Music</button>
</div>
<div id="volume-control">
<label for="volume">Volume:</label>
<input type="range" id="volume" min="0" max="1" step="0.1" onchange="changeVolume(this.value)">
</div>
<audio id="background-music" loop>
<source src="{{ url_for('static', filename='background_music.mp3') }}" type="audio/mp3">
Your browser does not support the audio tag.
</audio>
<header>
<h1>Welcome to My Portfolio</h1>
<nav>
<a href="/about">About Me</a>
<a href="/school-projects">School Projects</a>
<a href="/personal-projects">Personal Projects</a>
<a href="/resume">Resume</a>
</nav>
</header>
<script>
const music = document.getElementById('background-music');
const toggleButton = document.getElementById('toggle-music');
function toggleMusic() {
if (music.paused) {
music.play();
toggleButton.textContent = "Stop Music";
} else {
music.pause();
toggleButton.textContent = "Play Music";
}
}
function changeVolume(value) {
music.volume = value;
}
music.pause();
</script>
</body>
</html>
''')
# -----------------------------
# ABOUT ME PAGE (UPDATED BIO)
# -----------------------------
@app.route('/about')
def about():
return render_template_string('''
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
<style>
body { font-family: Arial, sans-serif; margin: 0; padding: 0; text-align: center; }
section { padding: 20px; }
h2 { color: #007BFF; }
img {
width: 250px;
height: 250px;
border-radius: 50%;
margin-bottom: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
background-color: #007BFF;
color: white;
border: none;
border-radius: 5px;
}
button:hover { background-color: #0056b3; }
.social-icons { margin-top: 20px; }
.social-icons a {
margin: 0 10px;
text-decoration: none;
color: #007BFF;
font-size: 24px;
transition: color 0.3s;
}
.social-icons a:hover { color: #0056b3; }
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<section>
<img id="cat-picture" src="{{ url_for('static', filename='portfolio_picture.jpg') }}" alt="Profile Picture">
<br>
<button onclick="fetchCat()">Press Me!</button>
<h2>About Me</h2>
<p>
My name is <strong>Austin Xu</strong>, and I am currently pursuing an <strong>MS in Accountancy</strong> at Baruch College,
with an expected graduation in <em>December 2026</em>. I previously completed my <strong>BBA in Computer Information Systems</strong>
with a focus on <strong>Data Analytics</strong>. This background allows me to combine financial accuracy with technical problem-solving and data-driven insights.
</p>
<p>
I’ve always enjoyed working with data and finding the story behind the numbers. My experience building ETL pipelines in SQL,
analyzing large datasets in Python, and visualizing insights in Tableau and Power BI strengthened my analytical thinking and attention to detail.
What draws me to accounting is that it combines these analytical skills with financial reporting and strategic decision-making.
</p>
<p>
Outside of work, I enjoy staying active by going to the gym, playing the guitar, and exploring science fiction stories through video games and novels —
they inspire my curiosity and passion for technology and innovation.
</p>
<div class="social-icons">
<a href="https://github.com/austinxu2002" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/austin-xu-b273a2244/" target="_blank"><i class="fab fa-linkedin"></i></a>
</div>
<a href="/">Back to Home</a>
</section>
<script>
async function fetchCat() {
const catImage = document.getElementById('cat-picture');
const response = await fetch('https://api.thecatapi.com/v1/images/search');
const data = await response.json();
catImage.src = data[0].url;
}
</script>
</body>
</html>
''')
# School Projects Page (FULL — Tableau + Infographics, with Blue Headings)
@app.route('/school-projects')
def school_projects():
return render_template_string('''
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>School Projects</title>
<style>
body { font-family: Arial, sans-serif; margin: 0; padding: 0; text-align: center; }
h2 { color: #007BFF; margin-top: 20px; font-weight: bold; }
p { margin: 20px; font-size: 16px; }
.tableau-container {
margin: 40px auto;
display: flex;
justify-content: center;
width: 100%;
}
.thumbnail {
width: 300px;
height: auto;
margin: 20px;
cursor: pointer;
transition: transform 0.2s;
}
.thumbnail:hover { transform: scale(1.1); }
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0; top: 0;
width: 100%; height: 100%;
background-color: rgba(0, 0, 0, 0.8);
overflow: auto;
}
.modal-content {
margin: auto; display: block;
width: 80%; max-width: 700px;
}
.close {
position: absolute; top: 20px; right: 35px;
color: white; font-size: 30px; font-weight: bold;
cursor: pointer;
}
a.back { display:inline-block; margin: 20px 0; color:#007BFF; text-decoration:none; }
a.back:hover { text-decoration: underline; }
</style>
</head>
<body>
<h2>Data Analysis of Lung Cancer Rates</h2>
<p>
This project uses cleaned data from a Harvard.edu study and applies simple linear regressions and clustering models in Python
to explore correlations between pollutants and lung cancer rates, and to identify high-risk areas. An infographic (below) and
interactive Tableau dashboards summarize the analysis.
</p>
<!-- Infographic Thumbnails -->
<img src="{{ url_for('static', filename='lung_cancer_infographic_page1.png') }}"
class="thumbnail" onclick="openModal('modal1')" alt="Lung Cancer Infographic Page 1">
<img src="{{ url_for('static', filename='lung_cancer_infographic_page2.png') }}"
class="thumbnail" onclick="openModal('modal2')" alt="Lung Cancer Infographic Page 2">
<!-- Modal Structure -->
<div id="modal1" class="modal">
<span class="close" onclick="closeModal('modal1')">×</span>
<img class="modal-content" src="{{ url_for('static', filename='lung_cancer_infographic_page1.png') }}" alt="Page 1">
</div>
<div id="modal2" class="modal">
<span class="close" onclick="closeModal('modal2')">×</span>
<img class="modal-content" src="{{ url_for('static', filename='lung_cancer_infographic_page2.png') }}" alt="Page 2">
</div>
<!-- Tableau Dashboards for Lung Cancer -->
<div class="tableau-container">
<div class='tableauPlaceholder' id='viz_lc1' style='position: relative; width: 100%; height: 900px;'>
<noscript>
<a href='#'><img alt='Dashboard 1'
src='https://public.tableau.com/static/images/CI/CIS-3920LungCancerDataDashboard1/Dashboard1/1_rss.png'
style='border:none;'/></a>
</noscript>
<object class='tableauViz' style='width: 100%; height: 900px;'>
<param name='host_url' value='https%3A%2F%2Fpublic.tableau.com%2F' />
<param name='embed_code_version' value='3' />
<param name='name' value='CIS-3920LungCancerDataDashboard1/Dashboard1' />
<param name='tabs' value='no' />
<param name='toolbar' value='yes' />
</object>
</div>
</div>
<div class="tableau-container">
<div class='tableauPlaceholder' id='viz_lc2' style='position: relative; width: 100%; height: 900px;'>
<noscript>
<a href='#'><img alt='Dashboard 5'
src='https://public.tableau.com/static/images/CI/CIS-3920LungCancerDataDashboard2/Dashboard5/1_rss.png'
style='border:none;'/></a>
</noscript>
<object class='tableauViz' style='width: 100%; height: 900px;'>
<param name='host_url' value='https%3A%2F%2Fpublic.tableau.com%2F' />
<param name='embed_code_version' value='3' />
<param name='name' value='CIS-3920LungCancerDataDashboard2/Dashboard5' />
<param name='tabs' value='no' />
<param name='toolbar' value='yes' />
</object>
</div>
</div>
<h2>Data Warehouse and ETL Pipeline Design of 311 Noise Complaints and DOB Stalled Construction Sites Data</h2>
<p>
This project integrates NYC 311 Noise Complaints and DOB Stalled Construction data (2023–2024) using Python and SQL.
The data was cleaned, stored in BigQuery, and visualized in Tableau using Lucidchart-designed schemas for dimensional modeling.
</p>
<!-- Tableau Dashboards for 311 Noise Complaints & DOB -->
<div class="tableau-container">
<div class='tableauPlaceholder' id='viz_311_1' style='position: relative; width: 100%; height: 900px;'>
<noscript>
<a href='#'><img alt='Dashboard 2'
src='https://public.tableau.com/static/images/CI/CIS-4400311DataDashboard1/Dashboard2/1_rss.png'
style='border:none;'/></a>
</noscript>
<object class='tableauViz' style='width: 100%; height: 900px;'>
<param name='host_url' value='https%3A%2F%2Fpublic.tableau.com%2F' />
<param name='embed_code_version' value='3' />
<param name='name' value='CIS-4400311DataDashboard1/Dashboard2' />
<param name='tabs' value='no' />
<param name='toolbar' value='yes' />
</object>
</div>
</div>
<div class="tableau-container">
<div class='tableauPlaceholder' id='viz_311_2' style='position: relative; width: 100%; height: 900px;'>
<noscript>
<a href='#'><img alt='Dashboard 4'
src='https://public.tableau.com/static/images/CI/CIS-4400311DataDashboard2/Dashboard4/1_rss.png'
style='border:none;'/></a>
</noscript>
<object class='tableauViz' style='width: 100%; height: 900px;'>
<param name='host_url' value='https%3A%2F%2Fpublic.tableau.com%2F' />
<param name='embed_code_version' value='3' />
<param name='name' value='CIS-4400311DataDashboard2/Dashboard4' />
<param name='tabs' value='no' />
<param name='toolbar' value='yes' />
</object>
</div>
</div>
<div class="tableau-container">
<div class='tableauPlaceholder' id='viz_dob' style='position: relative; width: 100%; height: 900px;'>
<noscript>
<a href='#'><img alt='Dashboard 3'
src='https://public.tableau.com/static/images/CI/CIS-4400DOBDataDashboard/Dashboard3/1_rss.png'
style='border:none;'/></a>
</noscript>
<object class='tableauViz' style='width: 100%; height: 900px;'>
<param name='host_url' value='https%3A%2F%2Fpublic.tableau.com%2F' />
<param name='embed_code_version' value='3' />
<param name='name' value='CIS-4400DOBDataDashboard/Dashboard3' />
<param name='tabs' value='no' />
<param name='toolbar' value='yes' />
</object>
</div>
</div>
<a class="back" href="/">Back to Home</a>
<script type='text/javascript'>
// Load Tableau API once
(function loadTableau(){
var s = document.createElement('script');
s.src = 'https://public.tableau.com/javascripts/api/viz_v1.js';
document.getElementsByTagName('head')[0].appendChild(s);
})();
function openModal(modalId) { document.getElementById(modalId).style.display = "block"; }
function closeModal(modalId) { document.getElementById(modalId).style.display = "none"; }
</script>
</body>
</html>
''')
# -----------------------------
# PERSONAL PROJECTS (WORKING MODAL VERSION)
# -----------------------------
@app.route('/personal-projects')
def personal_projects():
return render_template_string('''
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Projects</title>
<style>
body { font-family: Arial, sans-serif; margin: 0; padding: 0; text-align: center; background-color: #fafafa; }
section { padding: 30px; }
h2 { color: #007BFF; }
.thumbnail {
width: 350px;
height: auto;
margin: 15px;
cursor: pointer;
border-radius: 8px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.thumbnail:hover {
transform: scale(1.08);
box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.85);
}
.modal-content {
margin: auto;
display: block;
max-width: 80%;
max-height: 80%;
border-radius: 10px;
}
.close {
position: absolute;
top: 20px;
right: 35px;
color: white;
font-size: 30px;
font-weight: bold;
cursor: pointer;
}
p { font-size: 15px; line-height: 1.6; color: #333; max-width: 800px; margin: 0 auto; }
footer { text-align: center; margin-top: 30px; }
a { color: #007BFF; text-decoration: none; }
a:hover { text-decoration: underline; }
</style>
</head>
<body>
<section>
<h2>Analysis of Top 1000 Highest Grossing Movies</h2>
<p>
This project focuses on the top 1,000 highest-grossing Hollywood films, with data current as of September 25, 2023.
The dataset was sourced from IMDb, processed and stored in SQL Server Management Studio (SSMS),
and visualized in Power BI. The visualizations explore revenue patterns, correlations between
budget and gross income, and performance by genre.
</p>
<img src="{{ url_for('static', filename='GrossMoviesSalesPowerBI1.png') }}" class="thumbnail" onclick="openModal('modal1')">
<img src="{{ url_for('static', filename='GrossMoviesSalesPowerBI2.png') }}" class="thumbnail" onclick="openModal('modal2')">
<div id="modal1" class="modal">
<span class="close" onclick="closeModal('modal1')">×</span>
<img class="modal-content" src="{{ url_for('static', filename='GrossMoviesSalesPowerBI1.png') }}">
</div>
<div id="modal2" class="modal">
<span class="close" onclick="closeModal('modal2')">×</span>
<img class="modal-content" src="{{ url_for('static', filename='GrossMoviesSalesPowerBI2.png') }}">
</div>
<footer>
<a href="/">Back to Home</a>
</footer>
</section>
<script>
function openModal(id) { document.getElementById(id).style.display = "block"; }
function closeModal(id) { document.getElementById(id).style.display = "none"; }
</script>
</body>
</html>
''')
# -----------------------------
# RESUME PAGE (UPDATED 2025 VERSION)
# -----------------------------
@app.route('/resume')
def resume():
return render_template_string('''
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume - Austin Xu</title>
<style>
body { font-family: Arial, sans-serif; margin: 20px; line-height: 1.6; color: #333; }
section { max-width: 800px; margin: 0 auto; text-align: center; }
h1, h2, h3 { text-align: center; color: #007BFF; }
h1 { font-size: 20px; margin-bottom: 5px; }
h2 { font-size: 17px; margin-top: 25px; }
p { font-size: 12px; margin: 10px 0; }
a { color: #007BFF; text-decoration: none; }
a:hover { text-decoration: underline; }
.social-icons a {
margin: 0 10px;
text-decoration: none;
color: #007BFF;
font-size: 20px;
transition: color 0.3s;
}
.social-icons a:hover { color: #0056b3; }
ul { text-align: left; display: inline-block; margin: 0 auto; font-size: 12px; }
li { margin-bottom: 8px; }
footer { text-align: center; margin-top: 30px; }
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<section>
<h1>Austin Xu</h1>
<p>Brooklyn, NY | (646) 467-2283 |
<a href="mailto:xuaustin2002@gmail.com">xuaustin2002@gmail.com</a>
</p>
<div class="social-icons">
<a href="https://www.linkedin.com/in/austin-xu-b273a2244/" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/austinxu2002" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://public.tableau.com/app/profile/austin.xu/vizzes" target="_blank"><i class="fas fa-chart-line"></i></a>
</div>
<h2>Education</h2>
<p><strong>CUNY at Baruch College</strong> – New York, NY<br>
<em>BBA in Computer Information Systems, Data Analytics Track</em><br>
Minor in Communication Studies | Overall GPA: 3.6<br>
<em>August 2022 – December 2024</em><br>
Analytics Coursework: Data Mining for Business Analytics, Data Warehousing for Analytics, Data Visualization, Regression and Forecasting Models, Foundations of Predictive Analytics
<br><br>
<em>MS in Accountancy (CPA Eligible)</em><br>
<em>August 2025 – December 2026</em><br>
Relevant Accounting Coursework: Financial Reporting, Federal Income Tax & Theory, Intensive Law Survey, Intermediate Financial Accounting, Taxation of Business Entities, Auditing and Accounting Information Systems, Managerial Accounting, Corporate Finance, Strategic Business Communications
</p>
<h2>Work Experience</h2>
<p><strong>Brooklyn Chinese American Association</strong> – Counselor<br>
<em>June 2019 – Present | Brooklyn, NY</em></p>
<ul>
<li>Monitored homework completion and provided tutoring for classrooms of up to 25 students.</li>
<li>Developed and delivered weekly lesson plans in English, STEM, gym, and arts & crafts, ensuring compliance with NYC DOE and afterschool program guidelines.</li>
<li>Supervised and guided an assistant counselor, delegating responsibilities and fostering collaboration.</li>
<li>Communicated with parents through meetings to discuss student progress and address concerns.</li>
</ul>
<p><strong>NYC Department for the Aging</strong> – Office of Information Technology Intern<br>
<em>July 2024 – August 2024 | New York, NY</em></p>
<ul>
<li>Resolved technical issues via the ServiceNow platform, including addressing a CrowdStrike outage.</li>
<li>Gained experience using PXE for operating system deployment and worked with servers, network connectivity, and AirWatch.</li>
<li>Contributed to a laptop maintenance project, involving registering 100 unregistered laptops into AirWatch using hashing and command prompts, performing software and application updates, and maintaining an Excel spreadsheet.</li>
</ul>
<p><strong>Noodle Lane</strong> – Employee<br>
<em>April 2024 – July 2024 | Brooklyn, NY</em></p>
<ul>
<li>Prepared beverages and managed daily setup and dismantling of operations.</li>
<li>Served an average of 150 customers per day, ensuring fast and friendly service in a high-volume environment.</li>
<li>Maintained a clean and organized workspace in compliance with NYC Department of Health guidelines and standards.</li>
</ul>
<h2>Projects</h2>
<p><strong>CIS 3920 Data Mining for Business Analytics</strong> | Lead Programmer, Canva & Tableau Designer<br>
<em>Data Analysis of Lung Cancer Rates</em></p>
<ul>
<li>Analyzed cleaned data from a Harvard.edu study using simple linear regressions and clustering models in Python.</li>
<li>Determined correlations between chemicals/particles and lung cancer rates, identifying high-risk areas.</li>
<li>Created an infographic using Canva and interactive Tableau dashboards for data presentation.</li>
</ul>
<p><strong>CIS 4400 Data Warehousing for Analytics</strong> | Lead Programmer, Tableau Designer<br>
<em>Data Warehouse and ETL Pipeline Design of 311 Noise Complaints and DOB Stalled Construction Sites Data</em></p>
<ul>
<li>Fetched two years of raw data (2023–2024) via APIs, cleaned it using Python, and stored it in BigQuery.</li>
<li>Designed and constructed a data warehouse in BigQuery with SQL, including dimension and fact tables.</li>
<li>Visualized the warehouse design using Lucid Charts.</li>
</ul>
<p><strong>Personal Portfolio Website</strong></p>
<ul>
<li>Created a website using Flask as a staging site and deployed it on Google Cloud.</li>
<li>Showcased school and personal projects, including features like music, backgrounds, APIs, and icons.</li>
</ul>
<p><strong>Analysis of Top 1000 Highest-Grossing Movies</strong></p>
<ul>
<li>Focused on the top 1,000 highest-grossing Hollywood films, with data current as of September 25, 2023.</li>
<li>Processed and stored the dataset from IMDb in SQL Server Management Studio (SSMS).</li>
<li>Uploaded the data to Power BI for visualization, creating interactive insights on box office performance.</li>
</ul>
<h2>Skills</h2>
<p>
<strong>Tools/Databases:</strong> Access, Excel, Tableau, Canva, Power BI, Word, SSMS, BigQuery, MySQL<br>
<strong>Languages/Libraries/Frameworks:</strong> Python, SQL, Pandas, Seaborn, NumPy, Scikit-learn, Flask
</p>
<footer>
<a href="/">Back to Home</a>
</footer>
</section>
</body>
</html>
''')
# -----------------------------
# FLASK APP RUNNER
# -----------------------------
if __name__ == '__main__':
app.run(debug=True, port=8080, use_reloader=False)