The Github doesn't provide country code for Brazil (+55). To add this option, just run the code below in your console. The option Brazil +55
will be the first on the list, already selected:
🇧🇷 [pt-BR]
/* bling.js */ | |
window.$ = document.querySelector.bind(document); | |
window.$$ = document.querySelectorAll.bind(document); | |
Node.prototype.on = window.on = function(name, fn) { this.addEventListener(name, fn); }; | |
NodeList.prototype.__proto__ = Array.prototype; | |
NodeList.prototype.on = function(name, fn) { this.forEach((elem) => elem.on(name, fn)); }; |
The Github doesn't provide country code for Brazil (+55). To add this option, just run the code below in your console. The option Brazil +55
will be the first on the list, already selected:
🇧🇷 [pt-BR]
'use strict'; | |
import gulp from 'gulp'; | |
import config from '../config'; | |
import browserSync from 'browser-sync'; | |
gulp.task('default', gulp.parallel('html', 'scripts', 'styles', 'server', () => { | |
gulp.watch(config.paths.html.all, gulp.parallel('html', gulp.series('html', browserSync.reload))); | |
gulp.watch(config.paths.scripts.all, gulp.parallel('scripts', browserSync.reload)); | |
gulp.watch(config.paths.styles.all, gulp.parallel('styles', browserSync.reload)); |
'use strict'; | |
import source from 'vinyl-source-stream'; | |
import gulp from 'gulp'; | |
import browserify from 'browserify'; | |
import babelify from 'babelify'; | |
import run from 'run-sequence'; | |
import rimraf from 'rimraf'; | |
import shell from 'gulp-shell'; | |
import server from 'gulp-live-server'; |
Let suppose I have two github accounts, https://github.com/rahul-office and https://github.com/rahul-personal. Now i want to setup my mac to easily talk to both the github accounts.
NOTE: This logic can be extended to more than two accounts also. :)
The setup can be done in 5 easy steps: