Get a tidbit on every commit!
Some example tidbits:
I'm still waiting for the advent of the computer science groupie.
TIL Ghostbusters (1984) was suppose to have only 3 main ghostbusters (Dan Aykroyd, Eddie Murphy and John Belushi)
Like fingerprints, everyone's tongue print is different.
An expert is a person who avoids the small errors as he sweeps on to the
grand fallacy.
-- Benjamin Stolberg
TIL a law was implemented in 1950's Greece whereby head shaving with manual clippers was used as punishment for young people caught by police, such as teddyboys and prostitutes. Obligatory hair clipping was finally abolished in Greece in 1982.
There is no opinion so absurd that some philosopher will not express it.
-- Marcus Tullius Cicero, "Ad familiares"
An electric eel can release a charge powerful enough to start 50 cars.
A man's house is his castle.
-- Sir Edward Coke
A snail breathes through its foot.
You shouldn't wallow in self-pity. But it's OK to put your feet in it
and swish them around a little.
-- Guindon
Ancient Chinese warriors would show off to their enemies before battle, by juggling.
pip install git-tidbit --user
You'll want to install this globally for your user (rather than inside a virtual environment) so any/all git repos can find it's modules.
Once installed, you'll need to run git init
in your existing repositories to pull in our
post-commit hook. If you'd like to do this for all of your existing repos, use the following:
find /my/dev/folders -name .git -type d -prune -execdir git init \;
Once uninstalled, git-tidbit will clean up after itself. You can double check it's cleanliness by looking at your git config for the init.templatedir
entry. If your git commits complain, remove the .git/hooks/post-commit
file.
-
Clone the repo
-
cd git-tidbit && virtualenv venv
-
pip install -e .
-
Add your module to the git_tidbit folder. As long as you implement
get_tidbit
and return a string, things should just work!
- You can test your module in isolation using the
if __name__ == "__main__": print get_tidbit()
convention
Use your normal git workflow. Whenever you commit, you'll learn something new!
git commit -m "I'm really just doing this to get a snapple fact"
git commit --amend
All tidbit modules must implement a get_tidbit
function
that returns a string. They are free to implement that functionality however they please
Reddit service fetches a random TIL (Today I learned)
Random snapple cap fact
You'll need fortune
installed. You can get it with your favorite package manager:
brew install fortune
yum install fortune-mod
apt-get install fortune fortune-mod
pacman -S fortune-mod