├── .gitignore ├── README.md ├── config.py ├── fib.py ├── images ├── C++-JavaScript-venn2.png ├── General-histogram.png ├── YouAreAwesome@sebyddd.gif └── awesome-machine-learning@josephmisiti.gif ├── task_cal_influence.py ├── task_cal_pagerank.py ├── task_draw_graphs.py ├── task_draw_histogram.py ├── task_draw_venn2.py ├── task_gen_events_graphs-cal_pagerank-cal_influence.py ├── task_gen_events_graphs.py └── task_grab_watch_events.py /.gitignore: -------------------------------------------------------------------------------- 1 | config.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydwch/the-most-influential-developers-on-github/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydwch/the-most-influential-developers-on-github/HEAD/config.py -------------------------------------------------------------------------------- /fib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydwch/the-most-influential-developers-on-github/HEAD/fib.py -------------------------------------------------------------------------------- /images/C++-JavaScript-venn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydwch/the-most-influential-developers-on-github/HEAD/images/C++-JavaScript-venn2.png -------------------------------------------------------------------------------- /images/General-histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydwch/the-most-influential-developers-on-github/HEAD/images/General-histogram.png -------------------------------------------------------------------------------- /images/YouAreAwesome@sebyddd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydwch/the-most-influential-developers-on-github/HEAD/images/YouAreAwesome@sebyddd.gif -------------------------------------------------------------------------------- /images/awesome-machine-learning@josephmisiti.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydwch/the-most-influential-developers-on-github/HEAD/images/awesome-machine-learning@josephmisiti.gif -------------------------------------------------------------------------------- /task_cal_influence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydwch/the-most-influential-developers-on-github/HEAD/task_cal_influence.py -------------------------------------------------------------------------------- /task_cal_pagerank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydwch/the-most-influential-developers-on-github/HEAD/task_cal_pagerank.py -------------------------------------------------------------------------------- /task_draw_graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydwch/the-most-influential-developers-on-github/HEAD/task_draw_graphs.py -------------------------------------------------------------------------------- /task_draw_histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydwch/the-most-influential-developers-on-github/HEAD/task_draw_histogram.py -------------------------------------------------------------------------------- /task_draw_venn2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydwch/the-most-influential-developers-on-github/HEAD/task_draw_venn2.py -------------------------------------------------------------------------------- /task_gen_events_graphs-cal_pagerank-cal_influence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydwch/the-most-influential-developers-on-github/HEAD/task_gen_events_graphs-cal_pagerank-cal_influence.py -------------------------------------------------------------------------------- /task_gen_events_graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydwch/the-most-influential-developers-on-github/HEAD/task_gen_events_graphs.py -------------------------------------------------------------------------------- /task_grab_watch_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydwch/the-most-influential-developers-on-github/HEAD/task_grab_watch_events.py --------------------------------------------------------------------------------