Skip to content

Instantly share code, notes, and snippets.

@fdiasr
fdiasr / contact-labels.js
Last active December 29, 2015 00:59
Script to convert custom labels (with brazilian phone operators) to default labels on Google Contact, using Google Script. It can be necessary when you have a mobile or app that dont show numbers with this custom labels.
/**
* you nedd enable some access, and create a spreedsheat called 'contact-data', before it
* the script need to be run on google script - https://script.google.com
*/
function contactLabelChange()
{
backupContacts();
var contacts = getMyContacts();
@17twenty
17twenty / simple_git.md
Created September 27, 2013 18:32
A Simple Git branching model

a simple git branching model

This is a very simple git workflow. It (and variants) is in use by many people. I settled on it after using it very effectively at Athena. GitHub does something similar; Zach Holman mentioned it in this talk.

The gist

@jbenet
jbenet / simple-git-branching-model.md
Last active April 9, 2024 03:31
a simple git branching model

a simple git branching model (written in 2013)

This is a very simple git workflow. It (and variants) is in use by many people. I settled on it after using it very effectively at Athena. GitHub does something similar; Zach Holman mentioned it in this talk.

Update: Woah, thanks for all the attention. Didn't expect this simple rant to get popular.