Bueller
Choose students at a randomly fair rate.
Getting started with Dev League cohort names
- Install via
npm
with the command$ npm install -g bueller
- Run with the command
$ bueller -c [COHORT_NUMBER]
- Press the
enter
key to get a random student's name.
Example of running bueller with cohort 4 names:
$ bueller -c 4
By default, bueller looks for a file located in the cohorts/
directory and a .json
file. e.g. $ bueller -c 4
will look for a file at this path: cohorts/4.json
Getting started with your own list of students
- Install via
npm
with the command$ npm install -g bueller
- use the
-f
flag to pass a path to bueller, e.g.$ bueller -f ../../path/to/file/of/students.json
File must be in json format. Look in the cohorts
directory of this repository for the internal format of the json file.
Features
Bueller started out as fully Math.random
then Owen implemented mean reverting algorithm
so that students would get chosen at an equal rate.
You can configure the degree of variance, by default the value is 2
which means that
there may be a slight chance of seeing a student's more than once in a set.
A degree of:
0
each student should be called before repeating a name10
totally random
To change the degree of variance, use the -d
flag:
$ bueller -c 10 -d 7
See it in action by Owen Yang
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request from your feature branch :D
Contributers:
License
The MIT License (MIT)
Copyright (c) 2015 Ray Faris
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.