dinsdag 27 oktober 2009

maandag 26 oktober 2009

maandag 12 oktober 2009

HTML/CSS/JavaScript

I was getting quite desperate, I did some HTML/CSS editing in the past, but it turned out all of the codes I was used to were outdated :( So, to help myself with the Web Technology course I bought the book "Handboek (X)HTML, CSS en JavaScript" which turns out to be a really nice way to learn codes. I'm currently at page 85 and it's really teaching me the basics and the structures. I'm trying to make a (basic) webtemplate myself, instead of just copy&pasting one from the internet. I hope I'll finish the 449 pages before the Web Technology course ends though...

donderdag 8 oktober 2009

woensdag 7 oktober 2009

Processing Snowman


Look how cute, my little snowman. I'm having some trouble giving him a mouth though, the arc(..) function keeps bending the wrong way, I tried shifting around the x and y parameters and the start and stop parameters, I even made the height a -30, but then it just disappeared :(
Anybody got any tips on making my snowman smile?

This is my first processing creation by the way, full code is below.
// frame
size(200,200);
background(255);
rectMode(CENTER);

// body
stroke(0);
fill(250);
ellipse(100,110,100,100);

// head
fill(250);
ellipse(100,50,60,60);

// eyes
fill(0);
ellipse(92,42,5,5);
ellipse(108,42,5,5);

// nose
fill(255,200,0);
ellipse(100,52,7,7);

// arms
stroke(0);
line(150,100,160,80);
line(50,100,40,80);

println("Let it Snow!");