I hereby claim:
- I am boushley on github.
- I am boushley (https://keybase.io/boushley) on keybase.
- I have a public key whose fingerprint is DD4A ABD8 6F6C 5F8C 3675 29F2 8008 8EA6 F2C8 408D
To claim this, I am signing this object:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<title>Contact PLAYBOOK | Your Phoenix Family Fun Guide! Helping you find kid-Friendly activites, events, outings for families that are educational and fun for kids of all ages, serving the West Valley of Phoenix, AZ</title> | |
<meta http-equiv="content-type" content="text/html;charset=utf-8" /> | |
<meta http-equiv="Content-Style-Type" content="text/css" /> | |
<meta name="description" content="Phoenix Family Fun Guide to activites, outings, educational trips, dance lessons that are educational and fun serving the Valley of the Sun in Phoenix Arizona, our phoenix kids directory serving Peoria, AZ and Glendale, AZ, Surprise, AZ, and Scottsdale, AZ" /> |
function decodeUtf8(arrayBuffer) { | |
var result = ""; | |
var i = 0; | |
var c = 0; | |
var c1 = 0; | |
var c2 = 0; | |
var data = new Uint8Array(arrayBuffer); | |
// If we have a BOM skip it |
{ | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"elasticbeanstalk:*", | |
"ec2:*", | |
"elasticloadbalancing:*", | |
"cloudformation:*", | |
"autoscaling:*", |
<div> | |
{{ $foobar := printf `chrome/author/%s.html` .Params.author }} | |
{{ $foobar }} <!-- This prints "chrome/author/name.html" --> | |
{{ template $foobar . }} <!-- This blows up --> | |
{{ template "chrome/author/" + .Params.author + ".html" . }} <!-- This blows up --> | |
</div> |
<div> | |
{{ if eq .Params.author "boushley" }} | |
{{ template "chrome/author/boushley.html" . }} | |
{{ else if ... }} | |
... | |
{{ end }} | |
</div> |
alert('hi') |
I hereby claim:
To claim this, I am signing this object:
# List JAWS environment variables | |
# jaws env list [stage] [region] | |
jaws env list dev us-west-2 # This will show all environment variables for the stage `dev` in us-west-2 | |
# Set an environment variable | |
# jaws env set [stage] [region] [key] [value] | |
jaws env set dev us-west-2 MY_ENV_VAR somevalue # This sets the environment variable `MY_ENV_VAR` to `somevalue` for the dev stage in us-west-2 |
function createMockVideoElement() { | |
"use strict"; | |
var video = {}; | |
video.__mock_listeners = {}; | |
video.__mock_progress = function(toProgress) { | |
var endProgressAt = video.currentTime + toProgress; | |
video.__mock_fire_event('play'); |
(function(){ | |
var videoElement = document.querySelector("#videoPlayer"); | |
var url = "http://dash.edgesuite.net/envivio/Envivio-dash2/manifest.mpd"; | |
var player = MediaPlayer().create(); | |
player.initialize(videoElement, url, true); | |
var waitTimeStart; | |
videoElement.addEventListener('waiting', function() { | |
// If a second stream stalls keep the oldest start time | |
if (!waitTimeStart) { |