I hereby claim:
- I am fharper on github.
- I am fredericharper (https://keybase.io/fredericharper) on keybase.
- I have a public key ASCd4CVtv9wBWnpX0hr_eOLvZxtvI0rsSpdQpKTzj6tRlAo
To claim this, I am signing this object:
# ensure the path is right | |
cd /Volumes/RECORD/RECORD | |
# delete bad files | |
find . -name "*.WAV" -type 'f' -size -1kb -delete | |
# batch process the recording | |
for f in *.WAV; | |
do |
* { | |
margin: 5px; | |
} | |
#image { | |
visibility: hidden; | |
position: absolute; | |
left: 0px; | |
} |
git() | |
{ | |
if [ "$1" = clone ] ; then | |
/usr/bin/git "$@" && cd $(basename $_ .git) | |
echo 'Changing directory to repo folder...' | |
else | |
/usr/bin/git "$@" | |
fi | |
} |
I hereby claim:
To claim this, I am signing this object:
<audio mozaudiochannel="content" preload="none" src="http://upload.wikimedia.org/wikipedia/en/4/45/ACDC_-_Back_In_Black-sample.ogg" autoplay></audio> |
(function() { | |
"use strict"; | |
function resizeCanvas() { | |
var canvas = document.querySelector("#canvas"); | |
var context = canvas.getContext("2d"); | |
//Need to set the canvas size here, as it zoom with CSS | |
canvas.width = window.innerWidth; | |
canvas.height = window.innerHeight; |
function functionToCallOnorientationChange() { | |
var orientation = screen.mozOrientation; | |
if (orientation === "portrait-primary" || orientation === "portrait-secondary" ) { | |
//do something | |
} | |
else if if (orientation === "landscape-primary" || orientation === "landscape-secondary" ) { | |
//do something else | |
} | |
} |
var activity = new MozActivity({ | |
name: "view", | |
data: { | |
type: ["video/mp4"], | |
url: "http://techslides.com/demos/sample-videos/small.mp4" | |
} | |
}); |