Skip to content

Commit

Permalink
Added GitHub Org stat log post
Browse files Browse the repository at this point in the history
  • Loading branch information
carsongee committed Apr 14, 2017
1 parent 04935ae commit 730851f
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
4 changes: 2 additions & 2 deletions _posts/2016-09-04-color-themes.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ terminal emulators and Emacs. First up, the "gift":

## Clipped Compound Color Scheme

I'm all about collaboration and open source tasties. So, PRs to these themes can be done
directly to this site at the
I'm all about collaboration and open source tasties. So, PRs to these
themes can be done directly to this site at the
[carsongee.github.io repo](github.com/carsongee/carsongee.github.io/tree/master/files/posts/clipped-compound).
It was blast making them, and I'd highly recommend making your own. I
used [terminal.sexy](http://terminal.sexy) for making the terminal
Expand Down
16 changes: 16 additions & 0 deletions _posts/2017-04-14-github-org-stats.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
layout: post
title: "Github Organization Statistics Script"
short_description: "A script for getting github stats for people in an organization"
description: |
I got curious about how much code/commits/repos I've contributed
to at my current gig, and I couldn't find anything else out there,
so I pulled together a script for getting contributor statistics for
a specified organization on Github
img: /img/posts/privateinvestocat.jpg
---

All you'll generally need to is to have a github username and
password, run `pip install PyGithub` and then you can run the
[script](https://github.com/carsongee/junk/blob/master/shell/github_org_stats.py):
{% gist carsongee/0c57c3ad4dc0df2e71273f0ed837febd %}
Binary file added img/posts/privateinvestocat.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,11 +188,13 @@ function promptHandler() {
}

function fadeIn() {
var increment = 15
var i = 0;
var isTag, text;
var str = $('#content').html();
if (str.indexOf('class="gist"') > 0) increment = 400;
(function type() {
i = i + 15;
i = i + increment;
text = str.slice(0, i);
$('#typein').html(text);
if (text === str) {
Expand Down

0 comments on commit 730851f

Please sign in to comment.