====== Day 4: Research Journal ====== We will take 15 minutes to address these comments: - http://eitanrapa2014.wordpress.com - great documentation of your projects. keep doing that. - http://isabellacorbo.wordpress.com/ - Nice header. Please try the “Featured Image” option for each Post. - http://franciscajara.wordpress.com - Put a picture for the About page. Needs project thumbnails. Great posts. - http://isakv.wordpress.com - i love the hex picture. - http://camidiaz246.wordpress.com - Fantastic and beautiful! - http://altermatttomas.wordpress.com - great design. - http://matiaschen.wordpress.com - looks good. more informative posts please. - http://lorenzoahn.wordpress.com - great style. great blog. check the pages/posts. - http://matimooreno.wordpress.com - creative header design. more posts. - http://bennettnicolas.wordpress.com - pages/post. I like your name/logo. - http://vittocorbo.wordpress.com - more pictures. need links. please write your About page. - http://margaritao2000.wordpress.com/ - needs a mylinks page with open processing. - http://marinacastro00.wordpress.com - Wow. Amazing design. Keep it up. - http://fhgaming09.wordpress.com - look for the “Featured Image” option in posts. Great work. - http://danielzegers.wordpress.com - fantastic work, Daniel. Very well done. - http://josefinarovira.wordpress.com/ - Great writing! Let's try a different theme. - http://sebatala.wordpress.com/ - more pictures. one for every post. where's your My Links page? - http://lacasadelsabio.wordpress.com - beautiful design. you have great talent. - http://tomasaldana.wordpress.com/ - I like that you post a lot. please put pictures for everything. I do not see your My Links page. - http://laura1200.wordpress.com/ - writing is fantastic. you almost don't need images, but please put images. Also, I don't see your My Links page for your openprocessing. ====== Research Journaling ====== We will spend 30 minutes on our research journaling. ===== Blog 1: Write a Post about your projects yesterday ===== Please include screen shots of all your projects. ===== Blog 2: Write a post to address these bullet points ===== You can use the internet: - Give an example of Permutation (with repetition AND without) - Give an example of Combination (with repetition AND without) - Give an example of an independent probability - Give an example of a dependent probability - Why is the prisoners dilemma a dilemma? - What is a dominant strategy? - What is a nash equilibrium? - What is a simultaneous game? - What is the Monty Hall problem? - What is information cascade? ===== Programming ===== KEY PRESS // Name: // Date // Keypress project // SECTION 1 int x = 20; int y = 20; //SECTION 2 void setup() { //setup function called initially, only once size(500, 400); } //SECTION 3 void draw() { //draw function loops background(255); // makes it black fill(255,0,0); ellipse(mouseX,mouseY,20,20); fill(0,255,0); ellipse(x,y,20,20); if (key == 'd'){ x = x+1; } } SCREEN SAVER BALL int x = 50; // variables int y = 50; int dx = 9; // velocity (9,5) int dy = 5; void setup() { //setup function called initially, only once size(500, 250); background(255); //set background white } void draw() { //draw function loops ellipse(x,y,20,20); x = x + dx; y = y + dy; if (x > 500) { // X axis collision dx = -9; } else if (x < 0) { dx = 9; } if (y > 250) { // Y axis collision dy *= -1; // the same as dy = dy*(-1) } else if (y < 0) { dy *= -1; } }