fix for amazon prime videos
http://askubuntu.com/questions/362259/how-to-watch-videos-in-amazon-prime-instant-video
install pulse audio volume control to change sound output to HDMI
fix for amazon prime videos
http://askubuntu.com/questions/362259/how-to-watch-videos-in-amazon-prime-instant-video
install pulse audio volume control to change sound output to HDMI
errSecMissingEntitlement = -34018, /* Internal error when a required entitlement isn't present. */
# | |
# python drive.py "origin" ["waypoint" ... ] "destination" | |
# | |
# i.e. python drive.py "Union Square, San Francisco" "Ferry Building, San Francisco" 'Bay Bridge' SFO | |
import sys, json, urllib2, md5, os.path, pprint | |
from math import radians, sin, cos, atan2, pow, sqrt | |
from urllib import quote_plus | |
from xml.sax.saxutils import escape | |
from optparse import OptionParser |
##Day 2: Closure exercises
Write a function, nonsense
that takes an input string
. This function contains another function, blab
which alerts string
and is immediately called inside the function nonsense
. blab
should look like this inside of the nonsense
function:
var blab = function(){
alert(string);
};
In your function, nonsense
, change the immediate call to a setTimeout so that the call to blab
comes after 2 seconds. The blab
function itself should stay the same as before.
git svn fetch | |
git svn rebase | |
git push origin master |
Click Here To Install
Click Here To Install
itms-services://?action=download-manifest&url=https://httpbin.org/
// --------------------------------------------------------------------------- | |
// Example NewPing library sketch that does a ping about 20 times per second. | |
// --------------------------------------------------------------------------- | |
#include <NewPing.h> | |
// LED Colors | |
int ledcolor = 0; | |
int a = 1000; //this sets how long the stays one color for |
function log(logStatement) { | |
console.log(logStatement); | |
} | |
var nums = [1, 2, 3, 4]; | |
doSomething(nums); | |
function doSomething([first, second, ...others]){ | |
log(first); //logs 1 | |
log(second); //logs 2 |
#via: http://superuser.com/a/72787 | |
md5 -q <(find . -type f 2>/dev/null | xargs md5 -q | sort) |