Skip to content

Instantly share code, notes, and snippets.

View lacymorrow's full-sized avatar
🕶️
Grok'ing

Lacy Morrow lacymorrow

🕶️
Grok'ing
View GitHub Profile
// uses jquery, but could be rewritten without
$(data).find('track').each(function (i, e) {
// console.log(e);
var tmp;
var loc = (tmp = e.getElementsByTagName('location')[0]) ? tmp.innerHTML : "";
var img = (tmp = e.getElementsByTagName('image')[0]) ? tmp.innerHTML : "";
var inf = (tmp = e.getElementsByTagName('info')[0]) ? tmp.innerHTML : "";
var buy = (tmp = e.getElementsByTagName('buy')[0]) ? tmp.innerHTML : "";
var fav = (tmp = e.getElementsByTagName('favorite')[0]) ? tmp.innerHTML : "";
var tid = (tmp = e.getElementsByTagName('id')[0]) ? tmp.innerHTML : "";
@lacymorrow
lacymorrow / loop-func.js
Last active November 17, 2017 09:19
JS - Loop a function call using setTimeout()
function doStuff() { return false; }
(function loopFunc() {
doStuff();
//setTimeout(arguments.callee, 100); // callee is deprecated
setTimeout(loopFunc, 100);
})()
@lacymorrow
lacymorrow / betaflight-dump
Last active November 17, 2017 09:21
BetaFlight CLI Commands
set telemetry_inversion=on
set small_angle=180
save
@lacymorrow
lacymorrow / setup.md
Last active November 17, 2017 09:21 — forked from lazd/Sony Super HAD HS1177 Camera Setup.md
HS1177 Sony Super HAD Camera Setup.md

Cam settings

Before you do anything, perform a factory reset.

##Exposure

Shutter: Auto

Brightness: 55

@lacymorrow
lacymorrow / gist:db4f7479db78bc58db8ac2078c38c5dc
Created December 14, 2017 00:08 — forked from lucasfais/gist:1207002
Sublime Text 2 - Useful Shortcuts

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt
@lacymorrow
lacymorrow / .shortcuts
Created February 8, 2018 00:33
Git Shortcuts
# Determine details about a deleted file
git log -1 -- <file>
@lacymorrow
lacymorrow / inset_input.css
Created February 28, 2018 00:53 — forked from nrrrdcore/inset_input.css
The Perfect Inset Input CSS
input {
height: 34px;
width: 100%;
border-radius: 3px;
border: 1px solid transparent;
border-top: none;
border-bottom: 1px solid #DDD;
box-shadow: inset 0 1px 2px rgba(0,0,0,.39), 0 -1px 1px #FFF, 0 1px 0 #FFF;
}
“Should array indices start at 0 or 1? My compromise of 0.5 was rejected without, I thought, proper consideration.” — Stan Kelly-Bootle
@lacymorrow
lacymorrow / isNode.js
Last active March 26, 2018 22:04
Returns `true` if running in a Node process
function isNode () {
return Object.prototype.toString.call( typeof process !== 'undefined' ? process : 0 ) === '[object process]'
}
@lacymorrow
lacymorrow / raspberrypi-backup-restore-sd.txt
Created August 12, 2018 05:27 — forked from wavecos/raspberrypi-backup-restore-sd.txt
Backup/Restore Raspberry Pi SD Card in Mac OS
# http://raspberrypi.stackexchange.com/questions/311/how-do-i-backup-my-raspberry-pi
diskutil list
# backup:
sudo dd if=/dev/disk2 of=raspberrypi20151118.img bs=1m
# restore:
dd if=sd.img of=/dev/sdb bs=4M