-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
117 lines (109 loc) · 4.83 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Tamara Vilaythong</title>
<meta charset="utf-8"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="/css/main.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<header class="container">
<div class="row">
<h1 class="col-sm-4">Tam's Website</h1>
<nav class="col-sm-8 text-right">
<p><a href="/">home</a></p>
<p><a href="/about">about</a></p>
<p><a href="/teaching">teaching</a></p>
<p><a href="/resume/Vilaythong_Tamara_Website.pdf">resume</a></p>
</nav>
</div>
</header>
<section class="jumbotron">
<div class="container">
<div class="row text-center">
<h2>Projects</h2>
<a class="btn btn-primary" href="https://github.com/tamvilaythong" role="button">Link to my Github</a>
</div>
</div>
</section>
<section class="container">
<div class="row text-center">
<h3>(Most of these are school projects in private repositories)</h3>
</div>
<div class="projects" id="projects">
<div class='row'>
<div class="col-sm-6">
<a data-target="#bearmaps" data-toggle="modal">
<img src="/projectsimg/js_console_console_tab.png">
<p class="title">Bear Maps</p>
</a>
<div class="modal fade" id="bearmaps" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="exampleModalLabel">Bear Maps (Java)</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>Google Maps inspired web-based routing application for CS 61B. I implemented the <b>back end</b> for the mapping and routing of
Berkeley by using existing front end and OpenStreetMap mapping data. Developed map rastering, zoom functionality,
and clicking for location selection. I used a SAX parser with an OSM XML data file to build a graph representation
of the Berkeley area, and used <b>A* algorithm</b> with the graph representation to implement shortest-path routing.</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-6">
<a data-target="#tilegame" data-toggle="modal">
<img src="/projectsimg/compliant_world_example.png">
<p class="title">2D Tile Game</p>
</a>
<div class="modal fade" id="tilegame" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="exampleModalLabel">2D Tile Game (Java)</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>I designed and developed this two-player keyboard game from scratch with provided TileEngine Renderer for CS 61B. Utilized arrays and
<b>pseudorandom number generator</b> for the world generation seed/layout. Used StdDraw and Serializable for the game UI behavior.
The game is based off escaping a famous UC Berkeley campus building - Dwinelle Hall - known for its confusing layout.
The goal of the game is to have the two players strategically plan their moves in order to be the first to escape Dwinelle Hall.</p>
</div>
</div>
</div>
</div>
</div>
<!-- End of row div -->
</div>
<div class="row">
<figure class="col-sm-6">
</figure>
<figure class="col-sm-6">
</figure>
</div>
<!-- End of projects div -->
</div>
</section>
<footer class="container">
<div class="row">
<p class="col-sm-4">Developed and Designed by Tamara Vilaythong</p>
<ul class="col-sm-8">
<li class="col-sm-1"><a href="https://www.linkedin.com/in/tamara-vilaythong-81aa1b144"><img src="/icons/In-2CRev-34px-R.png"/></a></li>
<li class="col-sm-1"><a href="mailto:[email protected]"><img src="/icons/icons8-new-post-40.png"/></a></li>
<li class="col-sm-1"><a href="https://github.com/tamvilaythong"><img src="/icons/GitHub-Mark-32px.png"/></a></li>
<li class="col-sm-1"></li>
</ul>
</div>
</footer>
</body>
</html>