This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*global define:true */ | |
define(["angular"], | |
function(angular) { | |
"use strict"; | |
var mod = angular.module("mine", []); | |
/** | |
* Main class description here |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias ni="chrome '127.0.0.1:8081/debug?port=5858' && node-inspector --web-port=8081" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |