Comment on Commits.io – Create a poster from your codeparentComments−lucb1e11y10 minutesBasically what it does is grab some files from the repository, removes newlines and prints it. cat $(find -type f | shuf -n 1) | tr -d '\n' | print That didn't take me 10 minutes to come up with, let alone run.−quadrature11yThey should really be caching the poster after each render. I've been staring at a loading screen for a while now.−cec11ySince this is for git repositories you'd probably want to sub that `find -type f' for `git ls-files'.−euphemize11yMy time estimate included opening illustrator, layout out the code and printing it :)
Comments
Basically what it does is grab some files from the repository, removes newlines and prints it.
That didn't take me 10 minutes to come up with, let alone run.They should really be caching the poster after each render. I've been staring at a loading screen for a while now.
Since this is for git repositories you'd probably want to sub that `find -type f' for `git ls-files'.
My time estimate included opening illustrator, layout out the code and printing it :)