Facilitating Group Learning: Strategies for Success with Adult Learners Hardcover – October 12, 2010
[Make It Stick: The Science of Successful Learn
STAGE_PATH=$1 | |
REPO_PATH=$2 | |
clear | |
echo 'Git Setup' | |
echo '' | |
echo '+--------------------------------------------------------+' | |
echo '| Setting up deployment repo |' | |
echo '|--------------------------------------------------------|' | |
printf "| Repo Dir: " |
package main | |
import ( | |
"net/http" | |
"text/template" | |
) | |
var uploadTemplate, err = template.ParseFiles("upload.html") | |
var doneTemplate, err2 = template.ParseFiles("done.html") |
package main | |
import ( | |
"fmt" | |
"net/http" | |
"text/template" | |
"io" | |
"io/ioutil" | |
) |
import math | |
class Vector(object): | |
def __init__(self, x, y): | |
self.x = float(x) | |
self.y = float(y) | |
def __add__(self, vector): | |
return Vector(vector.x + self.x, vector.y + self.y) | |
def __sub__(self, vector): |
Facilitating Group Learning: Strategies for Success with Adult Learners Hardcover – October 12, 2010
[Make It Stick: The Science of Successful Learn