Skip to content

Instantly share code, notes, and snippets.

View pensiero's full-sized avatar
🍕
Eating a Pizza

Oscar Fanelli pensiero

🍕
Eating a Pizza
View GitHub Profile
@alebcay
alebcay / cooler.7
Last active October 25, 2023 23:48
Quickly export your Homebrew and Homebrew-Cask settings: the configured taps, installed formulae, and installed casks.
.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "COOLER" "7" "February 2014" "" ""
.
.SH "NAME"
\fBcooler\fR \- import and export homebrew settings
.
.SH "SYNOPSIS"
\fBname import name_of_cooler_bundle\fR
@bylatt
bylatt / gist:4971506
Last active September 16, 2018 16:58
My .bash_profile setup on OS X. Modified from Mark Otto's bash style (http://markdotto.com/2013/01/13/improved-terminal-hotness/) by adding git color for status.
alias ls='ls -Glah'
alias web='open -a Safari.app'
alias mail='open -a Mail.app'
alias todo='open -a Reminders.app'
git_branch () {
if git rev-parse --git-dir >/dev/null 2>&1
then echo -e "" [$(git branch 2>/dev/null| sed -n '/^\*/s/^\* //p')]
else
echo ""
fi
@paulmillr
paulmillr / active.md
Last active May 15, 2024 02:25
Most active GitHub users (by contributions). http://twitter.com/paulmillr

Most active GitHub users (git.io/top)

The count of contributions (summary of Pull Requests, opened issues and commits) to public repos at GitHub.com from Wed, 21 Sep 2022 till Thu, 21 Sep 2023.

Only first 1000 GitHub users according to the count of followers are taken. This is because of limitations of GitHub search. Sorting algo in pseudocode:

githubUsers
 .filter(user => user.followers > 1000)