Skip to content

Instantly share code, notes, and snippets.

View mogox's full-sized avatar
🇲🇽
🤖

Enrique Carlos Mogollan mogox

🇲🇽
🤖
View GitHub Profile
@mogox
mogox / gist:9143210
Last active March 29, 2016 00:24
Git tips(reminders)

Adding a remote

git remote add upstream https://github.com/otheruser/repo.git

List of remotes

git remote -v
@mogox
mogox / gist:7299336
Last active December 27, 2015 08:49
Healthcare initiatives where rubyist can participate
@mogox
mogox / gist:1268017
Created October 6, 2011 17:25
Mixpanel Javascript Object for testing
var mpq = {}
fns = ["init","track","track_links","track_forms","register","register_once","identify","name_tag","set_config"];
_.each(fns, function(f) {
mpq[f] = function() { return true };
});