-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
72 lines (64 loc) · 2.98 KB
/
portfolio.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
<!DOCTYPE html>
<html>
<head>
<title>Portfolio page</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="styles.css"/>
</head>
<body>
<nav class="navigation-bar">
<ul role="menubar">
<li><a href="index.html">Home</a></li>
<li><a href="Bio.html">Bio</a></li>
<li class="actived"><a href="portfolio.html">Portfolio</a></li>
</ul>
</nav>
<main>
<div class="subheader">
<h2>Portfolio</h2>
</div>
<div class="Projects">
<div class="mycase">
<a href="News.html"><img class="caseimg" src="images/News.jpg" alt="E-News project image"></a>
<div class="caseinfo">
<a href="News.html"><h3 class="casename">E-News</h3></a>
<p class="casedes">This is a news search engine, similar to Google News.This project mainly includes three parts: News Article ETL, Search Backend Service, Search Frontend. Firstly, we download a WARC from Common Crawl, and loaded them into Elastic Search.</p>
<div id="details">
<a href="News.html">More details</a>
</div>
</div>
</div>
<div class="mycase">
<a href="Zoom.html"><img class="caseimg" src="images/Zoom.jpeg" alt="Answer Me This- Zomm project image"></a>
<div class="caseinfo">
<a href="Zoom.html"><h3 class="casename">Answer Me This- Zoom</h3></a>
<p class="casedes">We aim to build a tool that provides real-time access to supplemental information to the ongoing zoom conversation. Our approach to creating this project includes speech tracking, identifying keywords and topics, finding useful information regarding keywords and delivering it to the Zoom users.</p>
<div id="details">
<a href="Zoom.html">More details</a>
</div>
</div>
</div>
<div class="mycase">
<a href="https://github.com/huiminliu09/blockchain"><img class="caseimg" src="images/CNN.jpg" alt="Bitcoin Client image"></a>
<div class="caseinfo">
<a href="https://github.com/huiminliu09/blockchain"><h3 class="casename">Bitcoin Client</h3></a>
<p class="casedes">A simplified Bitcoin client that simulated mining blocks and making transactions in cryptocurrency.</p>
<div id="details">
<a href="https://github.com/huiminliu09/blockchain">More details</a>
</div>
</div>
</div>
<div class="mycase">
<a href="https://github.com/ISG-ICS/Wildfires"><img class="caseimg" src="images/wfimg.jpg" alt="Wildfires project image"></a>
<div class="caseinfo">
<a href="https://github.com/ISG-ICS/Wildfires"><h3 class="casename">Wildfires</h3></a>
<p class="casedes">Wildfires🔥 is an innovative and well-designed platform that <br> realizes analytics and visualization of wildfires by using social media data. It applies machine learning approach to detecting wildfire events based on social media and environmental data.</p>
<div id="details">
<a href="https://github.com/ISG-ICS/Wildfires">More details</a>
</div>
</div>
</div>
</div>
</main>
</body>
</html>