Skip to content

Instantly share code, notes, and snippets.

@jpauli4
jpauli4 / Links to all assignments
Created May 28, 2014 12:06
Collection of all assignments
@jpauli4
jpauli4 / Last assignment
Created May 25, 2014 09:55
Last weekly assignment
The question for the last assignment was: what do I need to know in order to finish my component for portfolio 2?
I already discussed this in a conversation with you and what I needed to know is how I could design a research tool if I did not know how to code that exactly. You adviced me to use easel.io, as a tool to make a design for a research tool instead of a coded element. Aside from that, all I need is patience!
@jpauli4
jpauli4 / PORTFOLIO1
Created April 4, 2014 16:01
PORTFOLIO
Dear Mr Hoogstad,
I made my portfolio in the form of a website. The address is: websitemaker.jadepauli.nl
On this website, you can find links to my codes in gisthub and codepen.
I wrote the html and css for the website (with help from other codes as well of course), but because of a delay in ftp information, I could not yet make a 'proper' website. This is one of the goals for the next portfolio.
Please have a look at websitemaker.jadepauli.nl for the portfolio.
@jpauli4
jpauli4 / Assignment 5 (revised version Portfolio1)
Last active August 29, 2015 13:58
Assignment 5 (revised version Portfolio1)
//new css script
text {
font-size: 14px;
font-family: 'Pathway Gothic One', sans-serif;
font-weight: 400
}
.phase text {
font-size: 100px;
font-family: 'Pathway Gothic One', sans-serif;
@jpauli4
jpauli4 / Assignment 2 (revised version first portfolio)
Last active August 29, 2015 13:58
Assignment 2 (revised version first portfolio)
//I changed the commas
var data = {
Students : [
{ name : 'Jade', StudentNumber: '10350764' },
{ name : 'Anouk', StudentNumber: '000000' },
@jpauli4
jpauli4 / Assignment 1 (handed in)
Created April 2, 2014 10:01
Assignment 1 (handed in)
$( "h1" ).css( "border", "2px solid red" ).add( "p" ).css( "background", "yellow" );
$("ul").hide();
@jpauli4
jpauli4 / First version assignment 5 Jade and Patty (handed in)
Created April 2, 2014 09:56
First version assignment 5 Jade and Patty (handed in)
//define firebase
var firebase = new Firebase("https://vivid-fire-6976.firebaseio.com/");
//call firebase-data, execute tree-diagram when all data is there
d3.json("https:///vivid-fire-6976.firebaseio.com/.json", function(data) {
var width = 1000,
height = 400;
@jpauli4
jpauli4 / First version Assignment4 Jade and Patty (handed in)
Created April 2, 2014 09:55
First version Assignment4 Jade and Patty (handed in)
//CSS-script
text {
font-size: 10px;
font-family: helvetica;
font-weight: 400
}
.phase text {
font-size: 10px;
font-family: helvetica;
}
@jpauli4
jpauli4 / Assignment3 - first version Jade & Patty (handed in)
Created April 2, 2014 09:53
Assignment3 - first version Jade & Patty (handed in)
var week3 = JSON.parse(localStorage.assignment);
var allEvents = week3.events;
var w = 1000;
var h = 500;
var padding = 2;
var margin = {top:50, right:50, bottom:50, left:50};
@jpauli4
jpauli4 / assignment1 (revised version first portfolio)
Last active August 29, 2015 13:58
Assignment1 (revised version first portfolio)
$( "h1" ).css( "border", "2px solid green" ).find( "p" ).css( "background", "yellow" );
$("ul").hide();