Skip to content

Instantly share code, notes, and snippets.

View skvggor's full-sized avatar
🇯🇲
Peace && Love.

Marcos skvggor

🇯🇲
Peace && Love.
View GitHub Profile
@skvggor
skvggor / npm-packages
Created December 25, 2013 21:40
sudo npm -g ls
/usr/local/lib
├── [email protected]
├── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ └─┬ [email protected]
│ ├── [email protected]
@skvggor
skvggor / palestras.md
Created November 28, 2013 23:36
Palestras [Rupy 2013]

Palestra que pretendo ver no Rupy 2013

29 de novembro de 2013

  1. 09h00 - (JS) - Javascript, Ruby, Python e o mercado para os próximos anos - Alysson Franklin
  2. 10h00 - (JS) - Protótipos de aplicações REST com Node.js - Kaique Silva
  3. 11h00 - (Python) Python para Zumbis: primeiro MOOC brasileiro para ensino de programação - Fernando Masanori
  4. 12h00 - (JS) - Node.js: serious business - Pedro Franceschi
  5. 14h00 - (JS) - Fazendo buscas geolocalizadas com jQuery e MongoDB - Jean Carlo (Suissa)
  6. 15h00 - (Python) - Sem __magica__: usando bem os métodos especiais - Luciano Ramalho
  7. 16h00 - (Ruby) - Segurança no Rails - Nando Vieira
montage * -geometry +5+5 -background none sprite-icones.png
@skvggor
skvggor / .zshrc
Created November 19, 2013 10:48
My .zshrc
# 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
@skvggor
skvggor / Apps.js
Created November 13, 2013 13:52
Apps TV Mauá
var Apps, TVMaua;
TVMaua = TVMaua || {};
TVMaua.apps = {
identificarUserAgent: function() {
var doc;
doc = document.documentElement;
doc.setAttribute('data-useragent', navigator.userAgent);
},
@skvggor
skvggor / googleMapsAPI-example.js
Created November 9, 2013 21:19
Application example of Google Maps API.
"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 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
@skvggor
skvggor / atalhos
Created October 19, 2013 19:31
Atalhos sublime text
[
{ "keys": ["ctrl+."], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+shift+."], "command": "toggle_comment", "args": { "block": true } },
]