Skip to content

Instantly share code, notes, and snippets.

View TiagoFuelber's full-sized avatar

Tiago Fuelber TiagoFuelber

View GitHub Profile
@lbighetti
lbighetti / o_que_eu_faria_diferente.md
Last active August 9, 2018 03:23
O que eu faria diferente na minha carreira de desenvolvedor?

O que eu faria diferente na minha carreira de desenvolvedor?

@rafaels88 perguntou no slack do trainingcenter o seguinte:

Aos programadores mais experientes, preciso da ajuda de vocês:

To afim de fazer um video sobre coisas que eu faria diferente em relação aos meus anos como programador, 
profissionalmente. Quero ajudar as pessoas que estão iniciando na carreira, quero ajudar quem já tá 3 
anos e tá perdido, quero ajudar quem tá ha 10 anos trabalhando mas tbm ta perdido... 
@PurpleBooth
PurpleBooth / README-Template.md
Last active June 10, 2024 06:12
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@paulirish
paulirish / zIndex-bookmarklet.js
Created October 15, 2009 19:35
find all elements with a z-index and indicate what they are.
// find all elements with a z-index and indicate what they are.
// uses css outline which is not supported in IE <8
function contrast(color){ return '#' +
(Number('0x'+color.substr(1)).toString(10) > 0xffffff/2 ? '000000' : 'ffffff');
}
jQuery('*')
.filter(function(){ return $(this).css('zIndex') !== 'auto'; })
.each(function(){