$ git config --global user.name "Joh Doe"
$ git config --global user.email johndoe@mail.com
$ git config --global color.ui true
$ git config --global core.editor nano
$ git config --global merge.tool opendiff
#MONGO DB
##export data
$ mongoexport --db mydb --collection customers --out customers.json
##import data
#GULP
sudo npm install --save-dev gulp gulp-utils
This file contains hidden or 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
| --INSERT UPDATE - DELETE MERGE | |
| --INSERT | |
| INSERT INTO wawi.abteilungen | |
| VALUES ('FE', 'Forschung und Entwicklung'); --insertar un valor | |
| INSERT INTO wawi.abteilungen |
#coffeescript
##variables
name = "value
Install git
$ sudo apt-get update
$ sudo apt-get install git
$ git config --global user.name "Your Name"
$ git config --global user.email "youremail@domain.com"
$ git config --list
This file contains hidden or 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
| # Load balancer configuration | |
| upstream exampleApp { | |
| # Directs to the process with least number of connections. | |
| least_conn; | |
| # One failed response will take a server out of circulation for 20 seconds. | |
| server 127.0.0.1:10080 fail_timeout=20s; | |
| #server 127.0.0.1:10081 fail_timeout=20s; | |
| #server 127.0.0.1:10082 fail_timeout=20s; | |
| #server 127.0.0.1:10083 fail_timeout=20s; |
This file contains hidden or 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 module:false*/ | |
| module.exports = function(grunt) { | |
| // load all grunt tasks matching the `grunt-*` pattern | |
| require('load-grunt-tasks')(grunt); | |
| // Project configuration. | |
| grunt.initConfig({ | |
| //take names from here |