At UPS, we want a weather site where the user enters a zip code and gets the current weather in that area. This is going to be displayed on monitors in our locations throughout the US during business hours so it's important that the information updates automatically (without needing to refresh the page) as the weather and temperature change. Also, we want it to be beautiful and eye catching, and for the background to be related to the current weather. We also want the current time, date, and city (based on zip code) displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Do exit ticket from last class as a warm up quiz: | |
https://gist.github.com/efuquen/88e8ced65ddde45e1644 | |
Finish project from last class: | |
http://codepen.io/efuquen/pen/azEOOO?editors=001 | |
I have a post project activity which I will demo here: |
#MIHS ScriptEd Exit Ticket - 2/10/2015
Get a sheet of paper, write your name, and then answer the following questions:
-
For the string
"We're all alike."
What is the index of the first space, the index of the second space, and the index of the period? What is the length of the string? -
Write what will be printed to the console after the following code:
var message = "We can't stop at all"
message = message.replace("at", "us");
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Do Now | |
- open nitrous | |
- create 'space-invader' folder | |
- in this folder create 'index.html' | |
- copy the html on screen' (https://gist.github.com/efuquen/85284d6d64d3692b1734) | |
Lecture | |
- Go over what an algorithm is. | |
- Explain javascript (*real programming*) | |
- Discuss difference between js & css/html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Space Invaders</title> | |
<script src="http://dv00f9dtk4nbg.cloudfront.net/mihs/2014/public/js/engine.js"></script> | |
</head> | |
<body> | |
<canvas id="canvas"></canvas> | |
<script> | |
</script> | |
</body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var canvas = null; | |
var ctx = null; | |
var moves = []; | |
var sprite = { | |
x: 0, | |
y: 0, | |
width: 100, | |
height: 100, | |
speed: 1, | |
color: '#c00', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
efuquen@efuquen-MacBookPro:~/Code/test/rust$ sudo apt-get install cargo | |
Reading package lists... Done | |
Building dependency tree | |
Reading state information... Done | |
Some packages could not be installed. This may mean that you have | |
requested an impossible situation or if you are using the unstable | |
distribution that some required packages have not yet been created | |
or been moved out of Incoming. | |
The following information may help to resolve the situation: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> last scoverage-test:executeTests | |
java.io.InvalidClassException: scoverage.Coverage; local class incompatible: stream classdesc serialVersionUID = -7159697436876606548, local class serialVersionUID = -8676941113756807635 | |
at java.io.ObjectStreamClass.initNonProxy(ObjectStreamClass.java:617) | |
at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1622) | |
at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1517) | |
at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1771) | |
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1350) | |
at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370) | |
at scoverage.IOUtils$.deserialize(IOUtils.scala:53) | |
at scoverage.IOUtils$.deserialize(IOUtils.scala:50) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
CURRENT_BRANCH="$(git symbolic-ref HEAD | awk -F '\/' '{ print $NF }')" | |
if [[ $CURRENT_BRANCH =~ ^.*US[0-9][0-9]*$ ]]; then | |
STORY_ID="$(echo $CURRENT_BRANCH | sed 's/^.*\(US[0-9][0-9]*\)$/\1/')" | |
cat $1 | awk '{if(NR == 1) { print "'${STORY_ID}' -",$0 } else { print $0 } }' > $1.tmp | |
mv $1.tmp $1 | |
fi |