Skip to content

Instantly share code, notes, and snippets.

View matt-west's full-sized avatar

Matt West matt-west

View GitHub Profile
@matt-west
matt-west / postachio-categories-1.html
Created May 6, 2014 13:11
Postach.io Category Link Example
<a href="/tag/design" class="{{ set_active('/tag/design') }}">Design</a>
reader.abort();
var reader = new FileReader();
reader.onload = function(e) {
var rawData = reader.result;
}
reader.readAsBinaryString(file);
var reader = new FileReader();
reader.onload = function(e) {
var dataURL = reader.result;
}
reader.readAsDataURL(file);
var reader = new FileReader();
reader.onload = function(e) {
var text = reader.result;
}
reader.readAsText(file, encoding);
<input type="text" x-webkit-speech>
var options = {
enableHighAccuracy: true,
maximumAge : 60000,
timeout : 45000
};
navigator.geolocation.watchPosition(success, error, options);
navigator.geolocation.getCurrentPosition(function(position) {
// Get the positioning coordinates.
var lat = position.coords.latitude;
var lon = position.coords.longitude;
// Do something magical...
}, function() {
alert('Oops! An error occured.');
});
navigator.geolocation.getCurrentPosition(success, error, options);