-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprojects.html
127 lines (122 loc) · 5.65 KB
/
projects.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Thanks for checking my source out. Have a great day! -->
<meta charset="utf-8" />
<title>Kelly Lin: Projects</title>
<meta name="description" content="From pharma to programming." />
<meta name="author" content="Kelly Lin" />
<meta
name="keywords"
content="Kelly, Kelly Lin, R&D, Programming, Software Development, Software Engineering"
/>
<meta property="og:title" content="Kelly Lin" />
<meta property="og:description" content="From pharma to programming." />
<meta property="og:image" content="http://kellylin.me/images/logo.jpg" />
<meta property="og:url" content="http://kellylin.me" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link rel="stylesheet" href="css/index.css" />
<link rel="icon" type="image/png" href="images/logo.png" />
<link
href="//fonts.googleapis.com/css?family=Raleway:400,300,600"
rel="stylesheet"
type="text/css"
/>
<script src="js/jquery-3.3.1.min.js"></script>
</head>
<body>
<div class="container">
<header>
<div class="logo">
<a href="./index.html"><img src="images/logo.png"/></a>
</div>
<nav class="link-brackets">
<a href="">Projects</a>
<a href="./talks.html">Talks</a>
<!--<a href="">Writing</a>-->
<!--<a href="http://kellylin.me/portfolio">Portfolio</a>-->
</nav>
</header>
<div class="project-banner">
<img src="./images/forest.png"/>
</div>
<div class="project-title">
<h1>PROJECTS</h1>
</div>
<div class="project-body">
<div class="project-row">
<div class="project-card">
<img src="./images/faanke-small.jpg"/>
<div class="card-title"><h3>Faan Ke</h3> <i id="expand" class="fas fa-ellipsis-v expand"></i></div>
<div class="card-description">
<h4>A custom pomodoro timer app</h4>
<p>
I wanted a pomodoro timer that would visually display my progress, so I made my own.
</p>
</div>
<div class="card-footer">
<a href="https://faanke.netlify.com/"><i class="fas fa-external-link-alt fontawesome"></i></a>
<a href="https://github.com/linkel/faan-ke/"><i class="fab fa-github fontawesome"></i></a>
</div>
</div>
<div class="project-card">
<img src="./images/architect.jpg"/>
<div class="card-title"><h3>Architecture Site</h3> <i id="expand" class="fas fa-ellipsis-v expand"></i></div>
<div class="card-description">
<h4>A mock architecture site, fully responsive.</h4>
<p>
This website was converted into a single page React application.
</p>
</div>
<div class="card-footer">
<a href="http://reactarchitect.surge.sh"><i class="fas fa-external-link-alt fontawesome"></i></a>
<a href="https://github.com/linkel/User-Interface-Project-Week"><i class="fab fa-github fontawesome"></i></a>
</div>
</div>
<div class="project-card">
<img src="./images/soupkitchen.png"/>
<div class="card-title"><h3>I'll Serve Soup</h3> <i id="expand" class="fas fa-ellipsis-v expand"></i></div>
<div class="card-description">
<h4>Soup Kitchen Inventory Management Application</h4>
<p>
Web application for soup kitchen staff and volunteers to manage inventory, written in 4 days as part of a Agile team.
</p>
</div>
<div class="card-footer">
<a href="http://soup-kitchen.netlify.com/"><i class="fas fa-external-link-alt fontawesome"></i></a>
<a href="https://github.com/team-soup/soup-kitchen"><i class="fab fa-github fontawesome"></i></a>
</div>
</div>
<div class="project-card">
<img src="./images/fortdefense.jpg"/>
<div class="card-title"><h3>Fort Defender</h3> <i id="expand" class="fas fa-ellipsis-v expand"></i></div>
<div class="card-description">
<h4>Unity/C# game written during a 48-hour hackathon.</h4>
<p>
Shoot the skeletons to protect your castle town! I knew nothing about Unity and C# prior to this hackathon, and read documentation voraciously to be able to contribute.
</p>
</div>
<div class="card-footer">
<a href="https://stellarluminant.itch.io/lambda-hack-winter-2019?secret=MpTCjC6ei4tn4fBJldNLDf8B50"><i class="fas fa-external-link-alt fontawesome"></i></a>
<a href="#"><i class="fab fa-github fontawesome"></i></a>
</div>
</div>
<div class="project-card">
<img src="./images/stokes.jpg"/>
<div class="card-title"><h3>Particle Size Sim</h3> <i id="expand" class="fas fa-ellipsis-v expand"></i></div>
<div class="card-description">
<h4>A toy project for learning React.</h4>
<p>
This site uses sliders to show the calculated size of a particle when different variables are provided to the Stokes-Einstein equation.
</p>
</div>
<div class="card-footer">
<a href="http://stokes-einstein.surge.sh/"><i class="fas fa-external-link-alt fontawesome"></i></a>
<a href="https://github.com/linkel/stokes-einstein"><i class="fab fa-github fontawesome"></i></a>
</div>
</div>
</div>
</div>
</body>
</html>