logo

drewdevault.com

[mirror] blog and personal website of Drew DeVault
commit: 6fa5a0ffed5cc783a92f9eb4394dcaa7538575e6
parent 0697d103cfec4fd10252ee527475fb0236f02113
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sat, 21 Nov 2020 10:30:19 -0500

Improve FOSS jobs git command

Diffstat:

Mcontent/blog/A-few-ways-to-make-money-in-FOSS.gmi2+-
Mcontent/blog/A-few-ways-to-make-money-in-FOSS.md2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/content/blog/A-few-ways-to-make-money-in-FOSS.gmi b/content/blog/A-few-ways-to-make-money-in-FOSS.gmi @@ -16,7 +16,7 @@ One way to make money in FOSS is to get someone to pay you to write free softwar I have a little trick that I often suggest to people who vaguely want to work “in FOSS”, but who aren’t trying to find the monetization potential in their own projects. Use git to clone the source repositories for some (large) projects you’re interested in, the kind of stuff you want to work on, and then run this command: ``` -git log -n100000 --format="%ae" | cut -d@ -f2 | sort -u | less +git log -n100000 --format="%ae" | cut -d@ -f2 | sort | uniq -c | sort -nr | less ``` => https://drewdevault.com/2020/08/10/How-to-contribute-to-FOSS.html See also: I want to contribute to your project, how do I start? diff --git a/content/blog/A-few-ways-to-make-money-in-FOSS.md b/content/blog/A-few-ways-to-make-money-in-FOSS.md @@ -37,7 +37,7 @@ you're interested in, and then run this command: ``` -git log -n100000 --format="%ae" | cut -d@ -f2 | sort -u | less +git log -n100000 --format="%ae" | cut -d@ -f2 | sort | uniq -c | sort -nr | less ``` This will output a list of the email domains who have committed to the