- Do you have an Github account ? If not create one.
- Install required tools
- Latest Git Client
- gpg tools
# Ubuntu
sudo apt-get install gpa seahorse
# MacOS with https://brew.sh/
| var webrtc = require('webrtc-swarm') | |
| var signalhub = require('signalhub') | |
| var hyperdrive = require('hyperdrive') | |
| var memdb = require('memdb') | |
| var pump = require('pump') | |
| var DEFAULT_SIGNALHUBS = 'https://signalhub.mafintosh.com' | |
| var drive = hyperdrive(memdb()) |
# Ubuntu
sudo apt-get install gpa seahorse
# MacOS with https://brew.sh/
| # Save this file | |
| # mac - "~/Library/Application Support/Sublime Text 3/Packages/" | |
| # linux - "~/.config/sublime-text-3/Packages/" | |
| # NOTE! | |
| # ~/.nvm/alias/default must contain full version name. | |
| # $ nvm alias default v4.3.5 | |
| import os |
| { | |
| "name": "my-app", | |
| "version": "1.0.0", | |
| "description": "My test app", | |
| "main": "src/js/index.js", | |
| "scripts": { | |
| "jshint:dist": "jshint src/js/*.js", | |
| "jshint": "npm run jshint:dist", | |
| "jscs": "jscs src/*.js", | |
| "browserify": "browserify -s Validating -o ./dist/js/build.js ./lib/index.js", |
$ git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git$ nano ~/.zshrcpath=('/path/to/depot_tools' $path)10/05/2012 - Foundation #16: Kevin Systrom (Instagram) @almirfilho@caiogondim17/05/2012 - Foundation #01: Jack Dorsey (Twitter) @almirfilho@caiogondim@yurigoytacaz24/05/2012 - Foundation #10: Dennis Crowley (Foursquare) @almirfilho@caiogondim@yurigoytacaz13/06/2012 - WWDC 2012 @almirfilho@caiogondim20/06/2012 - The True Story of Internet Ep. 1: Browser Wars @almirfilho@caiogondim@joseriosneto28/06/2012 - The True Story of Internet Ep. 2: The Search @almirfilho@caiogondim[@yurigoytacaz](http://twitter.com/yurNa falta de um site decente e realmente atualizado com os eventos de front-end que vão rolar, dê um pulo aqui ;)
Finalmente temos um site decente para listar os eventos, por isso a partir de agora essa lista não será mais atualizada e todos os esforços estarão concentrados na página de Eventos do BrazilJS.
| var parser = document.createElement('a'); | |
| parser.href = "http://example.com:3000/pathname/?search=test#hash"; | |
| parser.protocol; // => "http:" | |
| parser.hostname; // => "example.com" | |
| parser.port; // => "3000" | |
| parser.pathname; // => "/pathname/" | |
| parser.search; // => "?search=test" | |
| parser.hash; // => "#hash" | |
| parser.host; // => "example.com:3000" |