- 09h00 - (JS) - Javascript, Ruby, Python e o mercado para os próximos anos - Alysson Franklin
- 10h00 - (JS) - Protótipos de aplicações REST com Node.js - Kaique Silva
- 11h00 - (Python) Python para Zumbis: primeiro MOOC brasileiro para ensino de programação - Fernando Masanori
- 12h00 - (JS) - Node.js: serious business - Pedro Franceschi
- 14h00 - (JS) - Fazendo buscas geolocalizadas com jQuery e MongoDB - Jean Carlo (Suissa)
- 15h00 - (Python) - Sem
__magica__
: usando bem os métodos especiais - Luciano Ramalho - 16h00 - (Ruby) - Segurança no Rails - Nando Vieira
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
/usr/local/lib | |
├── [email protected] | |
├── [email protected] | |
├─┬ [email protected] | |
│ ├─┬ [email protected] | |
│ │ ├── [email protected] | |
│ │ └── [email protected] | |
│ ├── [email protected] | |
│ └─┬ [email protected] | |
│ ├── [email protected] |
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
montage * -geometry +5+5 -background none sprite-icones.png |
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
# Path to your oh-my-zsh configuration. | |
ZSH=$HOME/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
ZSH_THEME="pmcgee" | |
# Example aliases |
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
var Apps, TVMaua; | |
TVMaua = TVMaua || {}; | |
TVMaua.apps = { | |
identificarUserAgent: function() { | |
var doc; | |
doc = document.documentElement; | |
doc.setAttribute('data-useragent', navigator.userAgent); | |
}, |
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
"use strict"; | |
function googleMaps() { | |
var infowindow, conteudoInfoWindow, estilosMapa, localizacao, mapOptions, mapa, iconeMarcador, marcador; | |
conteudoInfoWindow = | |
"<div class='infowindow'>" + | |
"<div class='nome-empresa'>" + | |
"<p>Grupo Mauá e Regiao de Comunicação</p>" + | |
"</div>" + | |
"<div class='endereco-mapa'>" + | |
"<p>" + |
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
# This is the main Apache server configuration file. It contains the | |
# configuration directives that give the server its instructions. | |
# See http://httpd.apache.org/docs/2.4/ for detailed information about | |
# the directives and /usr/share/doc/apache2/README.Debian about Debian specific | |
# hints. | |
# | |
# | |
# Summary of how the Apache 2 configuration works in Debian: | |
# The Apache 2 web server configuration in Debian is quite different to | |
# upstream's suggested way to configure the web server. This is because Debian's |
#Firefox OS
- Exemplos de WebAPIs: http://bit.ly/demo-apis
- Documentação WebAPIs: http://bit.ly/doc-web-apis
- Building Blocks (componentes prontos): http://bit.ly/ffos-blocks
- Simulador de Firefox OS: http://bit.ly/ffos-simulator
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
[ | |
{ "keys": ["ctrl+."], "command": "toggle_comment", "args": { "block": false } }, | |
{ "keys": ["ctrl+shift+."], "command": "toggle_comment", "args": { "block": true } }, | |
] |