Computer Science - High School

Course Description

Posts

June 3rd - June 5th

Welcome to the last week of school! It has been such a joy to work with you this year! I hope you all have a wonderful summer! Remember to practice safe technology use and give yourself screen breaks! 

February 19 - 22

Welcome to tech! This week you will get to know the computer la and rules! We will start keyboarding this week as well.

December 17 - 21

Last week of the semester! High School will attend specials on Monday and have finals in the high school the rest of the week. Thank you all for a wonderful semester and have a wonderful winter break! 

December 3 -7

This week we will begin our introduction to programming with the Computer Science Principals Course. 

November 19 - 30

Happy Thanksgiving Break Everyone!! When we return from break we will be returning to our digital information unit in the Computer Science Principals course working with lossy and lossless information and text compression. 

November 12 - 16

1-2 Welcome to CS and Keyboarding
3-4 Welcome to CS and 3D modeling 
5-6 Welcome to CS and 3D modeling 
7-8 HTML website development 
HS Computer Science Principals 

November 5th - 9th

1-2 Keyboarding and Coding
3-4 Coding
5-6 Problem Solving and Coding
7-8 HTML website development 
HS Computer Science Principals 

So wake me up lyrics

Feeling my way through the darkness
Guided by a beating heart
I can't tell where the journey will end
But I know where to start
They tell me I'm too young to understand
They say I'm caught up in a dream
Well life will pass me by if I don't open up my eyes
Well that's fine by me


So wake me up when it's all over
When I'm wiser and I'm older
All this time I was finding myself
And I didn't know I was lost
So wake me up when it's all over
When I'm wiser and I'm older
All this time I was finding myself
And I didn't know I was lost



I tried carrying the weight of the world
But I only have two hands

I hope I get the chance to travel the world
But I don't have any plans

I wish that I could stay forever this young
Not afraid to close my eyes

Life's a game made for everyone
And love is the prize


So wake me up when it's all over
When I'm wiser and I'm older
All this time I was finding myself
And I didn't know I was lost
So wake me up when it's all over
When I'm wiser and I'm older
All this time I was finding myself
And I didn't know I was lost



I didn't know I was lost
I didn't know I was lost
I didn't know I was lost
I didn't know I was lost

Blackbird Lyrics

What does the fox say lyrics

Dog goes "woof"
Cat goes "meow"
Bird goes "tweet"
And mouse goes "squeek"
Cow goes "moo"
Frog goes "croak"
And the elephant goes "toot"
Ducks say "quack"
And fish go "blub"
And the seal goes "ow ow ow"
But there's one sound
That no one knows
What does the fox say?
"Ring-ding-ding-ding-dingeringeding!
Gering-ding-ding-ding-dingeringeding!
Gering-ding-ding-ding-dingeringeding!"
What the fox say?
"Wa-pa-pa-pa-pa-pa-pow!
Wa-pa-pa-pa-pa-pa-pow!
Wa-pa-pa-pa-pa-pa-pow!"
What the fox say?
"Hatee-hatee-hatee-ho!
Hatee-hatee-hatee-ho!
Hatee-hatee-hatee-ho!"
What the fox say?
"Joff-tchoff-tchoffo-tchoffo-tchoff!
Tchoff-tchoff-tchoffo-tchoffo-tchoff!
Joff-tchoff-tchoffo-tchoffo-tchoff!"
What the fox say?
Big blue eyes
Pointy nose
Chasing mice
And digging holes
Tiny paws
Up the

September 4th - 7th

Parents! THIS Thursday, September 6th, Amanda Novak and Generation Schools Network are hosting a Parent & Student Focus Group about topics such as bullying, social emotional learning, and more. Join us for meaningful conversation and DONUTS on Thursday morning from 8:15am-9:15am. We need your input - your voices matter!
 
1-2 Welcome and keyboarding
3-4 Welcome and Invention project
5-6 Welcome and Toy project
7-8 Robotics
HS Computer Science Principals 

Temp. sensor lab

/*
SparkFun Tinker Kit
Example sketch 07
TEMPERATURE SENSOR
Use the "serial monitor" window to read a temperature sensor.
This sketch was written by SparkFun Electronics,
with lots of help from the Arduino community.
This code is completely free for any use.
Visit http://learn.sparkfun.com/products/2 for SIK information.
Visit http://www.arduino.cc to learn more about Arduino.
*/
//analog input pin constant
const int tempPin = 0;
//raw reading variable
int tempVal;
//voltage variable
float volts;
//final temperature variables
float tempC;
float tempF;
void setup()
{
// start the serial port at 9600 baud
Serial.begin(9600);
}
 
void loop()
{
//read the temp sensor and store it in tempVal
tempVal = analogRead(tempPin);
//print out the 10 value from analogRead
Serial.print("TempVal = ");
Serial.print(tempVal);
//print a spacer
Serial.print(" **** ");
//converting that reading to voltage by multiplying the reading by 5V (voltage of //the RedBoard)
volts = tempVal * 5;
volts /= 1023.0;
//print out the raw voltage over the serial port
Serial.print("volts: ");
Serial.print(volts, 3);
//print out divider
Serial.print(" **** ");
//calculate temperature celsius from voltage
//equation found on the sensor spec.
tempC = (volts - 0.5) * 100 ;
// print the celcius temperature over the serial port
Serial.print(" degrees C: ");
Serial.print(tempC);
//print spacer
Serial.print(" **** ");
// Convert from celcius to fahrenheit
tempF = (tempC * 9.0 / 5.0) + 32.0;
//print the fahrenheit temperature over the serial port
Serial.print(" degrees F: ");
Serial.println(tempF);
//wait a bit before taking another reading
delay(1000);
}

August 27 - 30

1-2 Coding
3-4 Invention Project
5-6 Toy and digital story project
7-8 Arduino
HS CSP