Skip to content

Instantly share code, notes, and snippets.

# https://raw.githubusercontent.com/github/gitignore/master/Unity.gitignorei
# https://unity3d.com/learn/tutorials/topics/production/mastering-unity-project-folder-structure-version-control-systems
/[Ll]ibrary/
/[Tt]emp/
/[Oo]bj/
/[Bb]uild/
/[Bb]uilds/
/Assets/AssetStoreTools*
# Autogenerated VS/MD/Consulo solution and project files
@RyanQuackenbush
RyanQuackenbush / gist:d339f325ca857f773da5f0298d8967a8
Last active November 4, 2016 18:48
[CLI] Run Node Inspector & Open Chrome to Debugger
alias ni="chrome '127.0.0.1:8081/debug?port=5858' && node-inspector --web-port=8081"
@RyanQuackenbush
RyanQuackenbush / JSON Files to MongoDB
Created May 16, 2013 08:32
Takes a host name, db name, collection name, username, password, and file regex to search for. Then runs mongoimport command with matching files of the regex in the current directory. Files should be JSON formatted prior to importing. Requires argparse: "npm install argparse"
#!/usr/bin/env node
/**
* Takes a host name, db name, collection name, username, password, and file regex to search for. Then runs mongoimport command with matching files of the regex in the current directory. Files should be JSON formatted prior to importing.
* //mongoimport -h <host> -d <database> -c <collection> -u <user> -p <password> --file <input file>
*/
'use strict';
var fs = require('fs' ),
exec = require('child_process').exec;
@RyanQuackenbush
RyanQuackenbush / gist:3668602
Created September 7, 2012 18:57
Documenting AMD + Angularjs with webstorm 5 issue
/*global define:true */
define(["angular"],
function(angular) {
"use strict";
var mod = angular.module("mine", []);
/**
* Main class description here