I have experience in a wide range of areas, from creating newspaper layouts, to translating German prose, to programming the web.
Most of my programming experience comes from outside of the classroom. I love to explore topics such as rendering or algorithms on my own.
Graphic design was something I never thought I'd do but I had to for a volunteer position I found myself in. Now I do small poster or brochure design projects for friends. The picture above is an excerpt from a poster.
I started learning photography in highschool for the newspaper and latched onto it immediately. We were taught how to use digital DSLRs on manual mode which meant no auto-focus, no pre-calculated f-stops, and manually setting exposure.
$(document).ready(function(){
$("#nav").hide(0);
function parallax(){
if ($(window).scrollTop() >= $("#bgCode").offset().top)
{
$("#nav").fadeIn(300);
}
else
{
$("#nav").fadeOut(300);
}
var bg = $("#background-container");
var fg = $("#foreground-container");
var mg = $("#middle-container");
var scrollDistance = -($(window).scrollTop() * .33);
var scrollDistance2 = -($(window).scrollTop() * .5);
var scrollDistance3 = -($(window).scrollTop() * .75);
$("#background-container").animate({top: scrollDistance + "px"}, 5);
$('#middle-container').animate({top: scrollDistance2 + "px"}, 5);
$('#foreground-container').animate({top: scrollDistance3 + "px"}, 5);
};
$(window).scroll(parallax);
$("#top").click(function(){
$('body').animate({scrollTop: 0 +"px"},1000);
parallax();
});
});