-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathacademic-work.html
More file actions
98 lines (84 loc) · 4.54 KB
/
Copy pathacademic-work.html
File metadata and controls
98 lines (84 loc) · 4.54 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
<!--
Academic Works section
Author: Dan Shan
Created: 2025-06-07
Updated: 2025-06-26
!-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Academic Works</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<canvas id="snowCanvas"></canvas>
<nav>
<ul>
<li><a href="index.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="academic-work.html">Academic Works</a></li>
<li><a href="contact.html">Contact</a></li>
<li><button onclick="toggleDarkMode()">Toggle Dark Mode</button></li>
</ul>
</nav>
<h1>Written Works</h1>
<img src="images/headshot.jpg" alt="Profile Picture" class="profile-pic">
<!-- Projects -->
<section id="projects">
<div class="project">
<h3>Lock-Tin</h3>
<p><a href="https://lock-tin.vercel.app/" target="_blank">Live Site</a> |
<a href="https://github.com/Axion2900/Lock-Tin/" target="_blank">GitHub Link</a></p>
<h4>Group project for SEG2900</h4>
<p>A informational website built with HTML, CSS, and JavaScript.</p>
<p><strong>Completed:</strong> Nov 1, 2025</p>
</div>
<div class="project">
<h3>Humanity</h3>
<a href="https://docs.google.com/document/d/1f0HhMOUgsgTeDMKI_OWqEaO01zEm87mowH-EvB885EU" target="_blank">View Document</a>
<p>This essay for philosophy challenges the idea of an inherent and fixed definition of humanity by examining metaphysical, epistemological, ethical, theories of philosophy.</p>
<p><strong>Completed:</strong> June 23, 2025</p>
</div>
<div class="project">
<h3>Philosopher’s Self-Portrait</h3>
<a href="https://docs.google.com/document/d/1DqqAVwzwu8SUcvVatJY_YB_QoMXM2cl63YIVbZdKNdI" target="_blank">View Document</a>
<p>This reflective essay explores the concept of the good life through the lenses of four major branches of philosophy: metaphysics, epistemology, ethics, and aesthetics.</p>
<p><strong>Completed:</strong> June 11, 2025</p>
</div>
<div class="project">
<h3>The 5th Laboratory</h3>
<a href="https://docs.google.com/presentation/d/17VK5L-KWgYWpqv5I8fodQPQwTh4iTkO9eW8bTxlokpc" target="_blank">View Document</a>
<p>An anime-themed presentation consists of a series of problems that are solved using mathematics taught in data managment.</p>
<p><strong>Completed:</strong> June 5, 2025</p>
</div>
<div class="project">
<h3>Euthanasia: Position Paper</h3>
<a href="https://docs.google.com/document/d/1ZzPXnbYfqZ1Mcyi9br20Dc8HrggpOIuYIBb30nK6Wwg" target="_blank">View Document</a>
<p>This essay supports the right to euthanasia, referencing Alexandra Neame’s 1997 paper <em>Euthanasia and Physician-Assisted Suicide: Overview</em>.</p>
<p><strong>Completed:</strong> May 8, 2025</p>
</div>
<div class="project">
<h3>Decolonizing Knowledge: Position Paper</h3>
<a href="https://docs.google.com/document/d/1LSkZCwxmAFTrDHUocDzy8jutGHjT4hhYArcOikLPaYc" target="_blank">View Document</a>
<p>This position paper advocates for cultural relativism, drawing on R. Sentwali Bakari’s 1997 article <em>Epistemology from an Afrocentric Perspective</em>.</p>
<p><strong>Completed:</strong> April 7, 2025</p>
</div>
<div class="project">
<h3>Authentic Self: Position Paper</h3>
<a href="https://docs.google.com/document/d/1Y8QXSDwvAKT8rUZsmrcRs2lzApLT1OFl1r7nGiBZ-Ks" target="_blank">View Document</a>
<p>This paper argues against the existence of an "authentic self," analyzed through the 2006 film <em>Paprika</em>.</p>
<p><strong>Completed:</strong> February 28, 2025</p>
</div>
<div class="project">
<h3>Metaphysics: Philosophical Questions</h3>
<a href="https://docs.google.com/presentation/d/1CkYUBXwqvUxJnsCuGsAxhiNvCKGK-t0HXOWWc2LPKQc" target="_blank">View Document</a>
<p>This presentation explores five key philosophical questions through a metaphysical lens.</p>
<p><strong>Completed:</strong> February 20, 2025</p>
</div>
</section>
<p><a href="index.html">Back to Home</a></p>
<script src="assets/js/script.js"></script>
</body>
</html>