ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
brew update
This file contains 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
//2 séries | |
// -> Expectativa de pontos | |
// -> Realidade de pontos feitos | |
// 1 Categoria com os dias da sprint | |
$(function () { | |
$('#container').highcharts({ | |
title: { | |
text: 'Burndown Chart', |
This file contains 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
$(function () { | |
// Build the chart | |
$('#container').highcharts({ | |
chart: { | |
plotBackgroundColor: null, | |
plotBorderWidth: null, | |
plotShadow: false | |
}, | |
title: { | |
text: 'Browser market shares at a specific website, 2010' |
This file contains 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
$(function () { | |
$('#container').highcharts({ | |
chart: { | |
type: 'column' | |
}, | |
title: { | |
text: 'Cards' | |
}, | |
xAxis: { | |
categories: ['cards'] |
This file contains 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
$(function () { | |
$('#container').highcharts({ | |
chart: { | |
type: 'column', | |
width: 900, | |
}, | |
title: { | |
text: 'Pontos Finais X Iniciais' | |
}, | |
subtitle: { |
This file contains 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
#!/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 |
This file contains 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
(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}); |
find ./ -type f | grep .DS_Store | xargs rm
This file contains 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
@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; | |
} | |
} | |
} |
OlderNewer