Skip to content

Instantly share code, notes, and snippets.

View edx903's full-sized avatar

Erdong edx903

  • E.D. X
View GitHub Profile
@edx903
edx903 / npm-using-https-for-git.sh
Created August 5, 2022 04:48 — forked from taoyuan/npm-using-https-for-git.sh
Force git to use https:// instead of git://
# npm using https for git
git config --global url."https://github.com/".insteadOf git@github.com:
git config --global url."https://".insteadOf git://
# npm using git for https
git config --global url."git@github.com:".insteadOf https://github.com/
git config --global url."git://".insteadOf https://
@edx903
edx903 / zombie_france.py
Created March 3, 2016 04:10 — forked from Zulko/zombie_france.py
Zombie pandemic simulation in France
"""
Model of a Zombie outbreak in France, starting in Grenoble
This is a rewrite from this blog post by Max Berrgren:
http://maxberggren.github.io/2014/11/27/model-of-a-zombie-outbreak/
with a different country, a slightly different model, and different
libraries. The map of population density is taken from Wikimedia Commons

Most active GitHub users (git.io/top)

The count of contributions (summary of Pull Requests, opened issues and commits) to public repos at GitHub.com from Sun, 18 Mar 2012 19:23:53 GMT till Mon, 18 Mar 2013 19:23:53 GMT.

Only first 1000 GitHub users according to the count of followers are taken. Sorting algo in pseudocode:

githubUsers
  .filter((user) -> user.followers > 165)
 .sortBy('contributions')