Oh the Places You'll Code – Questions?



Oh the Places You'll Code – Questions?

2 61


swot

Reveal.JS presentation for SWOT class

On Github jimmyjacobson / swot

Oh the Places You'll Code

Created by Jimmy Jacobson

My First Computer

Macintosh 512k

My First Code

BASIC

							
10 PRINT "Hello World!"
20 GOTO 10
							
					

My First Program

Choose Your Own Adventure

Important Rules

Never be afraid to say "I don't understand".

Never make fun of someone for not understanding.

Always be willing to share what you have learned and coded.

Unless it's homework or a test.

Fun with Javascript

JQuery

Manipulate HTML on your Webpage

Click

JQuery

$(document).ready(function(){
  $("button").click(function(){
    $("#div1").fadeToggle();
    $("#div2").fadeToggle("slow");
    $("#div3").fadeToggle(3000);
  });
});
					

Chart.js

Chart.js

var data = {
	labels : ["January","February","March","April","May","June","July"],
	datasets : 
		[{
			fillColor : "rgba(220,220,220,0.5)",
			strokeColor : "rgba(220,220,220,1)",
			pointColor : "rgba(220,220,220,1)",
			pointStrokeColor : "#fff",
			data : [65,59,90,81,56,55,40]
		}]
};

var ctx = document.getElementById("myChart").getContext("2d");
new Chart(ctx).Line(data, {});
					

This Presentation!

Reveal.JS

This whole presentation is in HTML, CSS and Javascript

Questions?

I have some if you don't

Am I going to learn everything I need to know in school?

Is writing code pretty much the most fun thing ever?

Is writing code going to make me rich?

Did you REALLY make a website called Wedgies.com?

! The End

The princess is in another castle