Skip to content

Instantly share code, notes, and snippets.

View ninjasort's full-sized avatar
💻
Working remotely

Cameron ninjasort

💻
Working remotely
  • San Francisco, CA
  • 05:05 (UTC -07:00)
View GitHub Profile
@ninjasort
ninjasort / react-redux.json
Last active June 10, 2016 04:22
React/Redux
{
"react-redux-links": "https://github.com/markerikson/react-redux-links",
"react-hot-boilerplate": "https://github.com/gaearon/react-hot-boilerplate",
"react-router": "https://github.com/reactjs/react-router/blob/master/docs/API.md#router",
"re-base": "https://github.com/tylermcginnis/re-base",
"react-redux-universal-hot-example": "https://github.com/erikras/react-redux-universal-hot-example",
"ReactChat": "https://github.com/phaistonian/ReactChat",
"starter-kit": "https://github.com/unicorn-standard/starter-kit",
"refire-forum": "https://github.com/hoppula/refire-forum",
"refire-app": "https://github.com/hoppula/refire-app",
@ninjasort
ninjasort / future-app.json
Last active May 10, 2016 20:23
Future App
{
"jss": "https://github.com/jsstyles/jss",
"router5": "https://github.com/router5/router5",
"immutable-js": "https://github.com/facebook/immutable-js",
"tape": "https://github.com/substack/tape",
"eslint-config-airbnb": "https://www.npmjs.com/package/eslint-config-airbnb",
"eslint-plugin-react": "https://www.npmjs.com/package/eslint-plugin-react",
"flow": "https://github.com/facebook/flow",
"react-css-modules": "https://github.com/gajus/react-css-modules"
}
{
"flexibility": "https://github.com/10up/flexibility"
}
@ninjasort
ninjasort / cli-creation.json
Last active May 12, 2016 18:36
Command Line Creation
{
"Inquirer.js": "https://github.com/SBoudrias/Inquirer.js",
"prompt": "https://github.com/flatiron/prompt",
"chalk": "https://github.com/chalk/chalk",
"awesome-nodejs": "https://github.com/sindresorhus/awesome-nodejs#command-line-utilities",
"commander": "https://github.com/tj/commander.js",
"args": "https://github.com/leo/args"
}
@ninjasort
ninjasort / api-creation.json
Last active June 11, 2016 02:30
API Creation
{
"slate": "https://github.com/tripit/slate",
"http-api-design": "https://github.com/interagent/http-api-design",
"osprey": "https://github.com/mulesoft/osprey",
"jsdoc": "https://github.com/jsdoc3/jsdoc",
"loopback": "https://github.com/strongloop/loopback",
"apidoc": "https://github.com/apidoc/apidoc",
"node-token-authentication": "https://github.com/scotch-io/node-token-authentication",
"jsonapitest": "https://github.com/peter/jsonapitest",
"nock": "https://github.com/node-nock/nock",
@ninjasort
ninjasort / apis.json
Last active December 28, 2017 00:30
node apis
{
"nodecommerce": "https://github.com/ttaub/nodecommerce",
"Shopify-api-node": "https://github.com/microapps/Shopify-api-node",
"medium-sdk-nodejs": "https://github.com/Medium/medium-sdk-nodejs",
"siteleaf-node": "https://github.com/siteleaf/siteleaf-node",
"node-harvest": "https://github.com/log0ymxm/node-harvest",
"docusign-node-client": "https://github.com/docusign/docusign-node-client",
"hellosign-nodejs-sdk": "https://github.com/HelloFax/hellosign-nodejs-sdk",
"intercom-node": "https://github.com/intercom/intercom-node",
"node-github": "https://github.com/mikedeboer/node-github",
@ninjasort
ninjasort / jquery-plugins.json
Last active July 16, 2016 22:05
jQuery Plugins
{
"isotope": "https://github.com/metafizzy/isotope",
"wow": "1.1.2",
"slicknav": "1.0.7",
"jquery-notebook": "latest",
"blueimp-file-upload": "9.12.1",
"ajaxchimp": "https://github.com/scdoshi/jquery-ajaxchimp",
"counter-up": "https://github.com/bfintal/Counter-Up",
"clndr": "http://kylestetz.github.io/CLNDR",
"vimeo-jquery-api": "https://github.com/jrue/Vimeo-jQuery-API",
@ninjasort
ninjasort / bower.json
Created April 9, 2016 23:06
Bower (Angular Deps)
}
"json3": "~3.3.1",
"es5-shim": "~4.3.1",
"angular-resource": "1.4.x",
"angular-spotify": "~1.2.0",
"lodash": "~3.10.1",
"angular-bootstrap": "~0.14.3",
"angular-ui-router": "~0.2.13",
"bootstrap-sass-official": "~3.3.1",
"angular-socialshare": "latest",
@ninjasort
ninjasort / webpack.sh
Created February 11, 2016 22:13
webpack cli
$ webpack --help
webpack 1.12.13
Usage: https://webpack.github.io/docs/cli.html
Options:
--help, -h, -?
--config
--context
--entry
--module-bind
@ninjasort
ninjasort / snippet.js
Last active January 2, 2016 23:50
IE placeholder
// http://kamikazemusic.com/quick-tips/jquery-html5-placeholder-fix/
function fixIEPlaceholders() {
if (!Modernizr.input.placeholder) {
$("input").each(function() {
if($(this).val() == "" && $(this).attr("placeholder") !== ""){
$(this).val($(this).attr("placeholder"));
$(this).focus(function(){
if($(this).val() == $(this).attr("placeholder")) $(this).val("");
});
$(this).blur(function(){