I hereby claim:
- I am kwcto on github.
- I am kwcto (https://keybase.io/kwcto) on keybase.
- I have a public key whose fingerprint is FEEC B64D 9C73 5068 E71D B1CA 7089 C10A B279 B774
To claim this, I am signing this object:
'editor': | |
'tabLength': 2 | |
'softTabs': false | |
'showInvisibles': true | |
'invisibles': | |
'cr': '↩' | |
'eol': '' | |
'space': '·' | |
'tab': '⇥' | |
'fontSize': 13 |
I hereby claim:
To claim this, I am signing this object:
See also: https://support.apple.com/en-us/HT201573
More tips: http://www.tekrevue.com/tip/mac-startup-options/
diskutil list
to view available drivesThere are tons of languages, frameworks and tools to choose from but Javascript has some amazing benefits.
In my humble opinion, this path is a way to get programming basics down quickly while learning a commercially viable skillset that will be in demand in the foreseeable future.
// https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Using_the_Scripting_Framework | |
// | |
// Check OpenOffice speadsheet text cells for similarity to a provided set of answers | |
// Will Sahatdjian - 12-29-2015 | |
// | |
// Based on original work by: | |
// Copyleft 2010 by Kas Thomas | |
// http://asserttrue.blogspot.com/ | |
// !!! CHANGE THESE PARAMETERS !!!! |
// See https://gist.github.com/kwcto/3cd3009b8cc12525669b to grade a simpler single-column set of answer rows | |
// | |
// Instructions for running Macros: | |
// https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Using_the_Scripting_Framework | |
// | |
// Check OpenOffice speadsheet text cells for similarity to a provided set of answers | |
// Will Sahatdjian - 12-29-2015 | |
// | |
// Based on original work by: | |
// Copyleft 2010 by Kas Thomas |
INFOPLIST="${TARGET_BUILD_DIR}/${INFOPLIST_PATH}" | |
echo "writing to $INFOPLIST" | |
PLISTCMD="Add :SERVER_IP string $(ifconfig | grep -Eo 'inet (addr:)?([0-9]*\.){3}[0-9]*' | grep -Eo '([0-9]*\.){3}[0-9]*' | grep -v '127.0.0.1' | head -1)" | |
echo -n "$INFOPLIST" | xargs -0 /usr/libexec/PlistBuddy -c "$PLISTCMD" || true | |
PLISTCMD="Set :SERVER_IP $(ifconfig | grep -Eo 'inet (addr:)?([0-9]*\.){3}[0-9]*' | grep -Eo '([0-9]*\.){3}[0-9]*' | grep -v '127.0.0.1' | head -1)" | |
echo -n "$INFOPLIST" | xargs -0 /usr/libexec/PlistBuddy -c "$PLISTCMD" || true |
// Use passport-auth0 instead of passport-github | |
// from https://github.com/feathersjs/feathers-authentication-oauth2/commit/1902760035af910f830a5692bad11799d37753a9 | |
const feathers = require('feathers'); | |
const rest = require('feathers-rest'); | |
const hooks = require('feathers-hooks'); | |
const memory = require('feathers-memory'); | |
const bodyParser = require('body-parser'); | |
const Auth0Strategy = require('passport-auth0').Strategy; | |
const errorHandler = require('feathers-errors/handler'); |