This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pi@raspi:~/dl $ cd OTTO && boards/rpi-proto-1/doc/jackstart.sh | |
Failed to stop ntp.service: Unit ntp.service not loaded. | |
console-kit-daemon: no process found | |
polkitd: no process found | |
gvfsd: no process found | |
dbus-daemon: no process found | |
dbus-launch: no process found | |
performanceperformanceperformanceperformancepi@raspi:~/dl/OTTO $ jackdmp 1.9.12 | |
Copyright 2001-2005 Paul Davis and others. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function chext() { | |
origExt=$1 | |
newExt=$2 | |
for f in *"${origExt}"; do | |
mv -- "$f" "${f%.$origExt}.$newExt" | |
done | |
return | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Author: Stephen King | |
// Contact: stephen.curtis.k@gmail.com | |
// Credits: http://www.gmap3.net | |
// Created using Google maps and the "gmap3" framework. | |
/* ========================================================================================= | |
AUTHOR NOTES | |
========================================================================================= | |
//LOAD initMap(); function at the end of your HTML document before the closing "body" tag. | |
LOAD destination(); function through a button's onclick="distance();" |