greg.everydayimshuflin.com/index.html

83 lines
3.1 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>
2012-10-22 18:21:11 -07:00
<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;
}
2012-12-16 21:37:09 -08:00
b {
font-weight:bolder;
}
a {
color:#ff3333;
font-weight:bolder;
}
a:visited {
color:#ff3333;
}
li {
font-family: Helvetica;
margin-bottom:10px;
}
a.codeLink {
color:#31E631;
font-weight:normal;
}
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>
2014-03-01 00:47:46 -08:00
<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>
2014-03-01 00:47:46 -08:00
<li><a href="http://alex.nisnevich.com/untrusted/">Untrusted</a>
2014-03-01 00:48:30 -08:00
<a href="https://github.com/AlexNisnevich/untrusted" class='codeLink'>(code)</a>
2014-03-01 00:47:46 -08:00
- an open-source browser-based roguelike game written entirely in
Javascript. Every level is unbeatable until the player edits the
source code of the level to make it winnable. Won first place in
the Spring 2013 Berkeley CSUA hackathon.
<li> <b>Ocarina of Time App</b> <a href="https://github.com/neunenak/Ocarina" class="codeLink">(code)</a> - an ocarina Android app that you play by pressing five buttons, just like in the eponymous classic N64 title. Not guaranteed to open the Door of Time.
<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.
2012-12-16 21:37:09 -08:00
<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
2012-03-06 12:27:42 -08:00
</ul>
</div>
2012-03-06 12:27:42 -08:00
</body>
</html>