Skip to content

Instantly share code, notes, and snippets.

Requirements

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.

Resources

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:
@efuquen
efuquen / mihs-scripted-exit-2_10_2015.md
Last active August 29, 2015 14:15
MIHS ScriptEd Do Now for 2/10/2015

#MIHS ScriptEd Exit Ticket - 2/10/2015

Get a sheet of paper, write your name, and then answer the following questions:

  1. 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?

  2. 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");
@efuquen
efuquen / mihs-functions.md
Last active August 29, 2015 14:13
MIHS Functions
@efuquen
efuquen / mihs-scripted-12-10-2014
Last active August 29, 2015 14:11
MIHS ScriptEd - December 10th 2014
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
<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>
var canvas = null;
var ctx = null;
var moves = [];
var sprite = {
x: 0,
y: 0,
width: 100,
height: 100,
speed: 1,
color: '#c00',
@efuquen
efuquen / gist:85369807e150061e1118
Created June 25, 2014 05:31
Cargo Ubuntu 14.04 apt-get failure
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:
@efuquen
efuquen / gist:11229985
Last active August 29, 2015 14:00
Scoverage 0.98.4 error with Scala 2.11.0
> 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)
@efuquen
efuquen / gist:6235987
Last active December 21, 2015 02:38
Will prepend a git commit with a user story number, which conforms to the regex "US[0-9][0-9]*", *if* the currently checked out branch ends in the user story. For example, a branch called "some-branch-name-US1234" will have all git commits starting with "US1234 - Some git commit message here". If you are in a branch that does not end in User Sto…
#!/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