iPad-friendly. Drag the control points to modify the curve.
View it here.
This is a modification of Jason Davies work.
MONAD = (modifier) -> | |
prototype = Object.create null | |
prototype.is_monad = true | |
unit = (value) -> | |
monad = Object.create prototype | |
monad.bind = (func, args...) -> func(value, args...) | |
modifier(monad, value) if typeof modifier is 'function' | |
monad |
(define (push element) | |
(lambda (stack) | |
(list '() (cons element stack)))) | |
(define (pop) | |
(lambda (stack) | |
(let ((element (car stack)) | |
(new-stack (cdr stack))) | |
(list element new-stack)))) |
push = (element) -> (stack) -> | |
newStack = [element].concat stack | |
{value: element, stack: newStack} | |
pop = (stack) -> | |
element = stack[0] | |
newStack = stack.slice 1 | |
{value: element, stack: newStack} | |
bind = (stackOperation, continuation) -> (stack) -> |
<!DOCTYPE HTML> | |
<meta charset="utf8"> | |
<script src="leap.min.js"></script> | |
<style> | |
#box { | |
width: 200px; | |
height: 200px; | |
background-color: steelblue; | |
} | |
</style> |
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<script src="http://joyrexus.spc.uchicago.edu/resources/coffee-script.js"></script> | |
<style> | |
body { | |
font-family: 'Helvetica Neue'; | |
font-weight: 100; | |
color: #555; | |
} | |
div { |
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<link href='http://fonts.googleapis.com/css?family=Roboto+Slab:100' rel='stylesheet' | |
type='text/css'> | |
<style> | |
body { | |
font-family: 'Roboto Slab'; | |
font-weight: 100; | |
font-size: 100px; | |
} |
Cassie is requesting the standard speech counts for both parent and child speakers for all home visits (sessions 1 to 12).
The standard speech counts consist of counts for utterances, word tokens and types, as well as the MLU (mean length of utterance) measure
View final report.
#!/bin/sh | |
# | |
# usage: | |
# record.sh SECS FILE | |
# | |
# e.g.: | |
# record.sh 10 ~/Documents/Trials/08/audio | |
record() { |
#!/usr/bin/env coffee | |
# | |
# usage: | |
# record.coffee -t SECS FILE | |
# record.coffee --time SECS FILE | |
# | |
# e.g., to record a 10 second audio clip: | |
# | |
# record.coffee --time 10 ~/Documents/Trials/08/audio | |
# |