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 >
2012-10-22 04:47:12 -07:00
< title > Greg Shuflin Developer Portfolio< / title >
< meta charset = 'utf-8' / >
< style type = 'text/css' media = 'screen' >
2012-10-31 02:59:09 -07:00
2012-10-22 04:47:12 -07:00
#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;
}
2012-10-22 04:47:12 -07:00
a {
color:#ff3333;
font-weight:bolder;
}
a:visited {
2012-12-14 14:50:24 -08:00
color:#ff3333;
2012-10-22 04:47:12 -07:00
}
li {
font-family: Helvetica;
margin-bottom:10px;
}
2012-10-31 02:59:09 -07:00
a.codeLink {
color:#31E631;
2012-10-31 03:08:22 -07:00
font-weight:normal;
2012-10-31 02:59:09 -07:00
}
2012-10-22 04:47:12 -07:00
code {
color:#31E631;
}
< / style >
2012-03-06 12:27:42 -08:00
< / head >
< body >
2012-10-22 04:47:12 -07:00
< 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 >
2012-10-31 02:59:09 -07:00
< 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 >
2012-10-22 04:47:12 -07:00
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-10-31 02:59:09 -07:00
< 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 >
2012-10-22 04:47:12 -07:00
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 >
2012-10-22 04:47:12 -07:00
< / div >
2012-03-06 12:27:42 -08:00
< / body >
< / html >