-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjects.html
More file actions
169 lines (167 loc) · 9.08 KB
/
Projects.html
File metadata and controls
169 lines (167 loc) · 9.08 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--
Design by Free CSS Templates
http://www.freecsstemplates.org
Released for free under a Creative Commons Attribution 2.5 License
Name : Fresh Scent
Description: A two-column, fixed-width design with dark color scheme.
Version : 1.0
Released : 20100309
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="keywords" content="Jiashuo Wang, University of Michigan, Ann Arbor, SJTU, Umich, Projects" />
<meta name="description" content="Projects made by Jiashuo Wang" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Projects --- Jiashuo WANG</title>
<link rel="shortcut icon" href="./UMicon.ico" >
<link href="style.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<div id="wrapper">
<div id="header">
<div id="logo">
<h1><a href="./index.html">Jiashuo Wang </a></h1>
<!-- <p> design by <a href="http://www.freecsstemplates.org/">Free CSS Templates</a></p> -->
</div>
<div id="search">
<form method="get" action="">
<fieldset>
<input type="text" name="s" id="search-text" size="15" value="enter keywords here..." />
<input type="submit" id="search-submit" value="GO" />
</fieldset>
</form>
</div>
</div>
<!-- end #header -->
<div id="menu">
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./Biography.html">Biography</a></li>
<li class="current_page_item"><a href="./Projects.html">Projects</a></li>
<!-- <li><a href="#">Academ</a></li> -->
<li><a href="./Photos.html">Photos</a></li>
<li><a href="./Contact.html">Contact</a></li>
</ul>
</div>
<div id="splash"> </div>
<!-- end #menu -->
<div id="page">
<div id="page-bgtop">
<div id="page-bgbtm">
<div id="content">
<div class="post">
<h2 class="title">Cloud Computing Game Programming </h2>
<p class="meta">2013.5-2013.6 in Shanghai, China
<!-- • <a href="#" class="comments">Comments (64)</a> • <a href="#" class="permalink">Full article</a> --></p>
<div class="entry">
<p>• (Java) Used the phone as the client device and the computer as the cloud computing server.<br />• (Java Socket) Succeeded in the cloud computing to exchange data in time.</p>
<!-- <p><a href="#" class="links">Read More</a> </p> -->
</div>
</div>
<div class="post">
<h2 class="title">Multi-Threaded Programming</h2>
<p class="meta">2015.1-Present in University of Michigan, Ann Arbor
<!-- • <a href="#" class="comments">Comments (64)</a> • <a href="#" class="permalink">Full article</a> --></p>
<div class="entry">
<p>• (C++) Stage 1: Wrote a concurrent program that schedules disk requests with high-level synchronization operations like monitors.<br />• (C++) Stage 2: Implemented the high-level synchronization operations in the thread library with low-level atomic operations on uniprocessor and multiprocessor systems.<br />• (C++) Stage 3: Wrote a pager to manage virtual memory for application processes involving system calls and address space handling.<br />• (Software Testing) Debugged this non-deterministic program by writing several test cases with white-box testing and black-box testing.</p>
<p><a href="./assets/482_Project_1.html" class="links" target="_blank">Stage 1</a><br />
<a href="./assets/482_Project_2.html" class="links" target="_blank">Stage 2</a><br />
<a href="./assets/482_Project_3.html" class="links" target="_blank">Stage 3</a>
</p>
</div>
</div>
<div class="post">
<h2 class="title">SQL Query Processor Implement with C </h2>
<p class="meta">2014.11-2014.12 in University of Michigan, Ann Arbor
<!-- • <a href="#" class="comments">Comments (64)</a> • <a href="#" class="permalink">Full article</a> --></p>
<div class="entry">
<p>• (Database, Data Structure) Understood how hash table, B+ tree, clustered index work and store, how to do the external sort, and how each method works.<br />• (C) Implemented the process of INSERT, SELECT with index, SELECT without index, simple nested loop JOIN, indexed nested loop JOIN, sort merge JOIN.</p>
<p><a href="./assets/484_Project_4.pdf" class="links" target="_blank">Read More</a>
</p>
</div>
</div>
<div class="post">
<h2 class="title">Querying Fakebook Database </h2>
<p class="meta">2014.9-2014.10 in University of Michigan, Ann Arbor
<!-- • <a href="#" class="comments">Comments (64)</a> • <a href="#" class="permalink">Full article</a> --></p>
<div class="entry">
<p>• Used ER relation model to design a relational database to store information (User, Friends, Photos, Tags, Events) about the FakeBook social network kind of like Facebook.<br />• (SQLite3, SQLplus) Used SQL to create tables and did some queries such as to suggest friends based on shared friends.<br />• (Java, JDBC) Embedded my SQL queries into Java using JDBC to implement a "FakeBook Oracle", a standalone program that answers several queries about the FakeBook database, such as to suggest friends based on shared friends.</p>
<p><a href="./assets/484_Project_2.pdf" class="links" target="_blank">Read More</a>
</p>
</div>
</div>
<div class="post">
<h2 class="title">User Based Tag Re-ranking for Social Images </h2>
<p class="meta">2013.11-2014.6 in Shanghai Jiao Tong University, China
<!-- • <a href="#" class="comments">Comments (64)</a> • <a href="#" class="permalink">Full article</a> --></p>
<div class="entry">
<p>• Improved the traditional tag ranking algorithms, which only take into account the visual clues and the similarity between tags, by considering the influence of user preferences.<br>• (Python, Matlab) Estimated the preliminary probabilistic tag relevance based on the image features including color, texture and key points features. <br>• (Matlab) Refined the tag relevance by random walk based on the coupled tag similarity.</p>
<!-- <p><a href="./assets/484_Project_2.pdf" class="links" target="_blank">Read More</a>
</p> -->
</div>
</div>
<div class="post">
<h2 class="title">Master-Slave Communication Prototype Making </h2>
<p class="meta">2013.3-2013.6 in Shanghai Jiao Tong University, China
<!-- • <a href="#" class="comments">Comments (64)</a> • <a href="#" class="permalink">Full article</a> --></p>
<div class="entry">
<p>• (Management) Led a 16-people team and divided them into 5 groups based on the design of a medium-scale system.<br />• (C) Designed wired/wireless communication protocol with a mechanism like TCP.<br />• (Circuit Design and Welding) Built hardware circuits to implement command communications among each part with nearly 100% success rate.</p>
<!-- <p><a href="./assets/484_Project_2.pdf" class="links" target="_blank">Read More</a>
</p> -->
</div>
</div>
<div style="clear: both;"> </div>
</div>
<!-- end #content -->
<div id="sidebar">
<ul>
<!-- <li>
<h2>Aliquam tempus</h2>
<p>Mauris vitae nisl nec metus placerat perdiet est. Phasellus dapibus semper consectetuer hendrerit.</p>
</li> -->
<li>
<h2>Link</h2>
<ul>
<li><a href="https://www.linkedin.com/in/jiashuowilliamwang" target="_blank">LinkedIn</a></li>
<li><a href="./assets/Jiashuo Wang Resume.pdf" target="_blank">Resume</a></li>
<li><a href="./assets/Jiashuo Wang Cover Letter.pdf" target="_blank">Cover Letter</a></li>
</ul>
</li>
<!-- <li>
<h2>Blogroll</h2>
<ul>
<li><a href="#">Aliquam libero</a></li>
<li><a href="#">Consectetuer adipiscing elit</a></li>
<li><a href="#">Metus aliquam pellentesque</a></li>
<li><a href="#">Suspendisse iaculis mauris</a></li>
<li><a href="#">Urnanet non molestie semper</a></li>
<li><a href="#">Proin gravida orci porttitor</a></li>
</ul>
</li>
<li>
<h2>Archives</h2>
<ul>
<li><a href="#">Aliquam libero</a></li>
<li><a href="#">Consectetuer adipiscing elit</a></li>
<li><a href="#">Metus aliquam pellentesque</a></li>
<li><a href="#">Suspendisse iaculis mauris</a></li>
<li><a href="#">Urnanet non molestie semper</a></li>
<li><a href="#">Proin gravida orci porttitor</a></li>
</ul>
</li> -->
</ul>
</div>
<!-- end #sidebar -->
<div style="clear: both;"> </div>
</div>
</div>
</div>
<!-- end #page -->
</div>
<div id="footer">
<p>© Jiashuo Wang, 2015.03</p>
</div>
<!-- end #footer -->
</body>
</html>