Skip to content

Instantly share code, notes, and snippets.

View WagnerMoreira's full-sized avatar

Wagner Moreira WagnerMoreira

View GitHub Profile
@WagnerMoreira
WagnerMoreira / chart-points-by-expectation-x-reality.js
Last active January 2, 2016 14:49
Burndown Chart das expectativas de Expectativa X Realidade de pontos da sprint
//2 séries
// -> Expectativa de pontos
// -> Realidade de pontos feitos
// 1 Categoria com os dias da sprint
$(function () {
$('#container').highcharts({
title: {
text: 'Burndown Chart',
@WagnerMoreira
WagnerMoreira / chart-sprint-cards-by-type.js
Last active January 2, 2016 14:59
Chart com o número de cards da sprint separados por tipo, (to do, doing, done, to review, e reviewd)
$(function () {
// Build the chart
$('#container').highcharts({
chart: {
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false
},
title: {
text: 'Browser market shares at a specific website, 2010'
@WagnerMoreira
WagnerMoreira / chart-resolvidos-x-nao-resolvidos.js
Last active January 2, 2016 14:59
Chart de cards resolvidos e não resolvidos ainda da sprint
$(function () {
$('#container').highcharts({
chart: {
type: 'column'
},
title: {
text: 'Cards'
},
xAxis: {
categories: ['cards']
@WagnerMoreira
WagnerMoreira / chart-finais-x-iniciais.js
Created January 9, 2014 20:18
Chart de pontos finais x iniciais da sprint
$(function () {
$('#container').highcharts({
chart: {
type: 'column',
width: 900,
},
title: {
text: 'Pontos Finais X Iniciais'
},
subtitle: {

OSX - Mavericks

HomeBrew

ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"

brew update

RVM

#!/bin/bash
#############################################
# AUTHOR: GUILHERME TEODORO #
# MAC MINI VAULT - MAC MINI COLOCATION #
# MACMINIVAULT.COM - @MACMINIVAULT #
# VERSION 1.05 RELEASE DATE OCT 11 2013 #
# DESC: THIS SCRIPT INSTALLS MySQL on OSX #
#############################################
#REQUIREMENTS:
# OS X 10.7 or newer
@WagnerMoreira
WagnerMoreira / gist:11288979
Created April 25, 2014 13:07
Hide Alt/Tittle from images
(function($){
$.fn.hideTips = function(){
return this.each(function(){
var $elem = $(this)
var savealt = $elem.attr('alt');
var savetitle = $elem.attr('title');
$elem.hover(function(){
$elem.removeAttr('title').removeAttr('alt');
},function(){
$elem.attr({title:savetitle,alt:savealt});
@WagnerMoreira
WagnerMoreira / remove_DS_Store.md
Created June 13, 2014 14:39
Script for remove all .DS_Store

find ./ -type f | grep .DS_Store | xargs rm

@mixin background-image-retina($file, $type, $width, $height) {
background-image: url($file + '.' + $type);
@media (-webkit-min-device-pixel-ratio: 2), (-moz-min-device-pixel-ratio: 2) {
& {
background-image: url($file + '@2x.' + $type);
-webkit-background-size: $width $height;
}
}
}

Lista de estudo para Desenvolvedores Front-End

Quer estudar sobre algo além do trio mágico HTML, CSS e Javascript e não sabe por onde começar?

Segue uma lista com sugestões de estudo extra para Desenvolvedores Front-End.

Static Generators

  • Harp
  • Hexo