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
# From https://coderwall.com/p/-wbo5q/pip-install-a-specific-github-repo-tag-or-branch | |
pip install -e git://github.com/{ username }/{ reponame }.git@{ tag name }#egg={ desired egg name } |
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
# From http://stackoverflow.com/questions/35245401/combining-conda-environment-yml-with-pip-requrements-txt | |
# run: conda env create --file environment.yml | |
name: test-env | |
dependencies: | |
- python>=3.5 | |
- anaconda | |
- pip | |
- pip: | |
- http://www.lfd.uci.edu/~gohlke/pythonlibs/bofhrmxk/opencv_python-3.1.0-cp35-none-win_amd64.whl |
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
body { | |
margin: 0; | |
font-family: Helvetica; | |
} | |
table.dataframe { | |
border-collapse: collapse; | |
border: none; | |
} | |
table.dataframe tr { | |
border: none; |
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
export GIT_AUTHOR_DATE="Thu Jul 07 19:43:04 2016 -0500" | |
export GIT_COMMITTER_DATE="Thu Jul 07 19:43:04 2016 -0500" | |
git commit -m "My Commit Message" |
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
robocopy "src/path" "dst/path" /MIR /COPY:DAT /MT:16 /W:10 |
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
var promise1 = {}; //something that returns a promise, like $http.get(...) | |
vra promise2 = {}; //something that returns a promise, like $http.get(...) | |
$q.all([promise1, promise2]) | |
.then(function success(response) { | |
console.log(response.data); | |
}, function failure(response) { | |
alert('Error!'); | |
console.log(response); | |
}); |
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
findstr /sin “searchstring” *.* > output.txt |
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
pip install --index-url http://pypi.python.org/simple --trusted-host pypi.python.org pymongo |
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
--Procedure: schema_name.stored_procedure_name --<<EDIT stored_procedure_name | |
CREATE PROCEDURE schema_name.stored_procedure_name --<<EDIT stored_procedure_name | |
/** | |
* @ParameterOne DATATYPE --<<EDIT parameters | |
* ,@ParameterTwo DATATYPE | |
* ,... | |
**/ | |
AS | |
--Configure pertinent session options | |
SET XACT_ABORT OFF; |