greg.everydayimshuflin.com/index.html

59 lines
1.8 KiB
HTML
Raw Normal View History

2012-10-22 02:08:17 -07:00
<!DOCTYPE html>
2012-03-06 12:27:42 -08:00
<html>
</head>
<title>Greg Shuflin Developer Portfolio</title>
<meta charset='utf-8'/>
<style type='text/css' media='screen'>
#main {
margin-left:auto;
margin-right:auto;
width:960px;
}
body {
background-color:#2B2B4D;
color: white;
font-family: Tahoma;
}
a {
color:#ff3333;
font-weight:bolder;
}
a:visited {
color:#ff0000;
}
li {
font-family: Helvetica;
margin-bottom:10px;
}
code {
color:#31E631;
}
</style>
2012-03-06 12:27:42 -08:00
</head>
<body>
<div id='main'>
<h1>Greg Shuflin</h1>
Contact me: <code>greg [dot] shuflin [at] gmail [dot] com</code>
<h2>Developer Portfolio</h2>
<p>These are a few software projects I have worked on, either for a
class or independently, that I think are particularly interesting.
You can see the source code for these and other projects I'm working
on <a href="https://github.com/neunenak">on my Github profile</a>.
2012-03-06 12:27:42 -08:00
<ul>
<li> <a href="https://github.com/neunenak/Raytracer">C++ Raytracer</a> written for CS184 at UC Berkeley, Intro to Computer Graphics. This was a partner project with <a href="https://github.com/miedwards">Mark Edwards</a>
<li> <a href="http://neunenak.github.com/html5go/go.html">HTML 5 Go</a>
an implementation of the board game Go (碁) in pure HTML5. It uses the canvas to draw the gameboard, with the game logic written in Javascript (work in progress - the game is playable but some more advanced features are not yet implemented)
2012-03-12 12:43:49 -07:00
<li> <a href="http://blazing-night-9415.herokuapp.com/dictionary">Arbitrary-language Django Dictionary</a>
a web interface for a dictionary in an arbitrary language, written
using the Django Python web framework and currently hosted on Heroku.
2012-03-06 12:27:42 -08:00
</ul>
</div>
2012-03-06 12:27:42 -08:00
</body>
</html>