Skip to content

Instantly share code, notes, and snippets.

@KamilaBorowska
Created September 3, 2012 10:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KamilaBorowska/3608429 to your computer and use it in GitHub Desktop.
Save KamilaBorowska/3608429 to your computer and use it in GitHub Desktop.
humans.txt
# Acknowledgments »ö«
use v6;
my %contributions =
'Larry Wall' => (
'Perl', 'Perl 6', 'Camelia', 'helpful feedback', 'content'
),
'Moritz Lenz' => (
'initiative', 'content', 'design', 'server administration'
),
'Carl Mäsak' => (
'design', 'content', 'constructive bikeshedding'
),
'Daniel Ruoso' => ('content', 'design fixes'),
'Susanne Schmidt' => 'design',
'Daniel Wright' => 'perl6.org domain',
'Carlin Bingham' => 'pedantic bug fixing',
'Herbert Breunung' => 'minor content';
say 'This site owes its existence to';
for %contributions.keys.sort -> $person {
say "* $person (%contributions{$person}.join(", "))";
}
say '* and others: https://github.com/perl6/perl6.org/graphs/impact';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment