74 lines
2.4 KiB
HTML
74 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<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;
|
|
}
|
|
|
|
b {
|
|
font-weight:bolder;
|
|
}
|
|
|
|
a {
|
|
color:#ff3333;
|
|
font-weight:bolder;
|
|
}
|
|
|
|
a:visited {
|
|
color:#ff0000;
|
|
}
|
|
|
|
li {
|
|
font-family: Helvetica;
|
|
margin-bottom:10px;
|
|
}
|
|
a.codeLink {
|
|
color:#31E631;
|
|
font-weight:normal;
|
|
}
|
|
|
|
code {
|
|
color:#31E631;
|
|
}
|
|
|
|
</style>
|
|
</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>.
|
|
|
|
<ul>
|
|
<li> <a href="https://github.com/neunenak/Raytracer">C++ Raytracer</a> <a href='https://github.com/neunenak/Raytracer' class='codeLink'>(code)</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> <a href='https://github.com/neunenak/html5go' class='codeLink'>(code)</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)
|
|
<li> <a href="http://blazing-night-9415.herokuapp.com/dictionary">Arbitrary-language Django Dictionary</a> <a href='https://github.com/neunenak/ConlangDictionary' class='codeLink'>(code)</a>
|
|
a web interface for a dictionary in an arbitrary language, written
|
|
using the Django Python web framework and currently hosted on Heroku.
|
|
|
|
<li> <b>Doomsday Algorithm</b> <a href='https://github.com/neunenak/Doomsday' class='codeLink'>(code)</a> a simple Haskell command-line application that computes the day of the week a given date in the Gregorian calendar falls on
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
</html>
|