-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex_test.html
189 lines (177 loc) · 5.81 KB
/
index_test.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./css/style.css" />
<title>Document</title>
</head>
<body>
<div class="card-group">
<div class="card">
<div class="card-body">
<h5 class="card-title">E-commerce RestAPI</h5>
<br />
<dl class="row">
<dt class="col-sm-3">Description</dt>
<dd class="col-sm-9">
<em
>Fully functional RestAPI for owners to make http requests to
add/delete/update/retrive store and items
<br />
<br />
</em>
</dd>
<dt class="col-sm-3">Technology</dt>
<dd class="col-sm-9">
<ul>
<li>Python/Flask/SQLalchemy/FlaskJWT</li>
<li>Heroku/Postman</li>
<br />
</ul>
</dd>
<dt class="col-sm-3 text-truncate">Difficulties Faced</dt>
<dd class="col-sm-9">
<ul>
<li>Unable to register an account with encryption</li>
<li>
Inefficient and redundant SQL syntax make request not
responsive
</li>
</ul>
</dd>
<dt class="col-sm-3">Solutions</dt>
<dd class="col-sm-9">
Used FlaskJWT and SQLalchemy to handle these two questions
<br />
<br />
</dd>
</dl>
<button
type="button"
class="btn btn-primary"
data-toggle="button"
aria-pressed="false"
autocomplete="off"
onclick="window.location.href = 'https://github.com/HuskyDanny/Rest_API_Store-Items';"
>
More Info
</button>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">Confusion Real-Time Chart</h5>
<br />
<dl class="row">
<dt class="col-sm-3">Description</dt>
<dd class="col-sm-9">
<em
>Client to server model service provided for teachers and
professors to understand students' confusion feedbacks better
</em>
</dd>
<dt class="col-sm-3">Technology</dt>
<dd class="col-sm-9">
<ul>
<li>Python/Flask/Socketio</li>
<li>HTML/CSS/Javascript</li>
<li>Machine learning/Feature engineering</li>
</ul>
</dd>
<dt class="col-sm-3 text-truncate">Difficulties Faced</dt>
<dd class="col-sm-9">
<ul>
<li>Not able to send data to front end in real-time</li>
<li>Hard to generate accurate scores on confusion</li>
<br />
</ul>
</dd>
<dt class="col-sm-3">Solutions</dt>
<dd class="col-sm-9">
Integrated Socketio technology into our packages, and used Azure
emotion API as a model to do ensembling
</dd>
</dl>
<button
type="button"
class="btn btn-primary"
data-toggle="button"
aria-pressed="false"
autocomplete="off"
onclick="window.location.href = 'https://github.com/HuskyDanny/Real-Time-Perplexity-Level-Monitoring';"
>
More Info
</button>
</div>
</div>
</div>
<div class="card-group">
<div class="card">
<div class="card-body">
<h5 class="card-title">Tic-Tac-Toe</h5>
<p class="card-text">
Classic Game implemented by HTML/CSS/Javascript
</p>
<p class="card-text"></p>
<button
type="button"
class="btn btn-primary"
data-toggle="button"
aria-pressed="false"
autocomplete="off"
onclick="window.location.href = 'https://github.com/HuskyDanny/tic-tac-toe';"
>
More Info
</button>
</div>
</div>
<div class="card">
<div class="card-body" id="card-1">
<h5 class="card-title">Titanic Challenge</h5>
<p class="card-text">
A Kaggle competition to predict the survival of passengers with
given data
</p>
<button
type="button"
class="btn btn-primary"
data-toggle="button"
aria-pressed="false"
autocomplete="off"
onclick="window.location.href = './download/Titanic_Challenge.pdf'"
>
More Info
</button>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">Text Sentimental Application</h5>
<p class="card-text">
A simple sentimental application used to predict the sentiment level
of input sentence
</p>
<p class="card-text"></p>
<button
type="button"
class="btn btn-primary"
data-toggle="button"
aria-pressed="false"
autocomplete="off"
onclick="window.location.href = 'http://junchenpan.pythonanywhere.com/';"
>
More Info
</button>
</div>
</div>
</div>
</body>
</html>