Skip to content

Instantly share code, notes, and snippets.

View ThisIsDjonathan's full-sized avatar

Djonathan Krause ThisIsDjonathan

  • Blumenau, Santa Catarina. Brazil.
View GitHub Profile
@ThisIsDjonathan
ThisIsDjonathan / create_express_server.js
Last active October 10, 2018 13:37
Step by step to create NodeJS Express local server
/*
1. Add express
$ npm install express --save
2. Add cors
$ npm install cors --save
3. On Windows, add new firewall rule to allow receive request on PORT
*/
@ThisIsDjonathan
ThisIsDjonathan / run_python_server.txt
Created August 18, 2018 23:56
Run Python HTTP Server
python -m http.server
@ThisIsDjonathan
ThisIsDjonathan / auto_commit.bat
Created August 18, 2018 23:55
Auto commit by bat
cd C://Users//djodr//Documents//....
set HOME=%USERPROFILE%
git add .
git commit -m "auto commit"
git push origin master
pause