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
@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;
}
@lacymorrow
lacymorrow / .shortcuts
Created February 8, 2018 00:33
Git Shortcuts
# Determine details about a deleted file
git log -1 -- <file>
@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 / util.css
Last active March 19, 2019 21:56
CSS Code Utilities
/* Text smoothing */
body {
font-family: Camphor, Open Sans, Segoe UI, sans-serif;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Nice hover effect
button:hover {
@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 / parse-url-params.js
Last active September 4, 2018 02:42
JS - Parse URL `GET` parameters from and HTTP request
/* function parseURLParams
* Accepts a http parameter string or grabs the one from the current URL
* Returns a dictionary
* Ex: '?api_key=XYZ&version=2' => { api_key: 'XYZ', version: 2}
*
* query: string | undefined
*/
function parseURLParams (query) {
if(!query)
@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

// 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 : "";