Reveal-js-Presentation-For-School



Reveal-js-Presentation-For-School

0 0


Reveal-js-Presentation-For-School

Coolio Presentation Built off of the &yet themed Reveal from lukekarrys

On Github bentleyjensen / Reveal-js-Presentation-For-School

This

Internship

Thing

Bentley Jensen

&yet

My Qualifications

  • Taking MultiMedia Atrs: Web Design and Computer Science I
  • My interest

My "Interview"

  • Prepared to interview a lot of places
  • Didn't think I was good enough to get into this one
  • They didn't even really have an internship at first

The Office

What I do

var canvas=document.getElementById('canvas');
var ctx = canvas.getContext('2d');
ctx.canvas.width  = window.innerWidth;
ctx.canvas.height = window.innerHeight;

var primus = Primus.connect('laptop.local/draw');

primus.on('open', function () {
    console.log("Connection is Open.");
    primus.write("requestLog");
});

primus.on('data', function  (data) {
        console.log(data);
    if(data.id=='dot'){
        var xLog = data.xCoord;
        var yLog = data.yCoord;
        var userColorLog=data.color;
        var dotSizeLog=data.diam;

        //draw the circle 
        ctx.beginPath();
               //x-pos, y-pos, diameter, start angle, end angle in radians
        ctx.arc(xLog,yLog,dotSizeLog,0,2*Math.PI);
        ctx.fillStyle=userColorLog;
        ctx.fill();
    }
    if (data=='erased!') {
        ctx.clearRect(0, 0, canvas.width, canvas.height);
    };
});

My Project

  • Backend
  • Clientside
  • Magic Inbetween

To Make

A Whiteboard!

PSH!

Easy.

Connecting Course

  • MMA Web Design
    • HTML
  • Comp Sci I
    • Basic Prgramming Logic

Big Title Slide

This is a blockqoute!Line 2Luke?

The End ?

 

0