I hereby claim:
- I am kshaffer on github.
- I am krisshaffer (https://keybase.io/krisshaffer) on keybase.
- I have a public key ASAcPbuDkhJLGRkyH782IbMGvjYb1dIzDwWWU2zJIdNmzAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| library(dplyr) | |
| library(tibble) | |
| library(gutenbergr) | |
| # List authors in Project Gutenberg, by number of works (descending) | |
| gutenberg_works() %>% | |
| group_by(author) %>% | |
| summarize(count = n()) %>% | |
| arrange(desc(count)) |
| When running | |
| app/console doctrine:fixtures:load | |
| I get the following error: | |
| PHP Fatal error: Cannot redeclare class Marca\DocBundle\DataFixtures\ORM\AdditionalFixtures\LoadMarkupsetData in /home/shaffer/public/marca.local/public/src/Marca/DocBundle/DataFixtures/ORM/AdditionalFixtures/UGAMarkupSet.php on line 19 | |
| Fatal error: Cannot redeclare class Marca\DocBundle\DataFixtures\ORM\AdditionalFixtures\LoadMarkupsetData in /home/shaffer/public/marca.local/public/src/Marca/DocBundle/DataFixtures/ORM/AdditionalFixtures/UGAMarkupSet.php on line 19 |
| # rhythmgen | |
| # Python module for generating practice rhyhm exercises in Lilypond code | |
| # usage: | |
| # >>> from rhythmgen import * | |
| # >>> randomLine(compoundBeats,randomCompoundTop(),randomBottom(),randomLength()) | |
| # then copy and paste the code into a Lilypond file with a percussion staff | |
| # Copyright (C) 2013 Kris P. Shaffer |