This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# There may be some more dependencies that I installed before getting to R and R Studio | |
sudo apt-get install libqt4-core libqt4-gui libqt4-gui qt4-dev-tools \ | |
fort77 tk8.5 tcl8.5 tk8.5-dev tcl8.5-dev cfortran | |
cd $INSTALL_FOLDER | |
curl http://lib.stat.cmu.edu/R/CRAN/src/base/R-3/R-3.0.2.tar.gz | |
tar xvf R-3.0.2.tar.gz | |
cd R-3.0.2 | |
export CXXFLAGS="$CXXFLAGS -fPIC" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
from __future__ import print_function | |
from __future__ import unicode_literals | |
from __future__ import division | |
from random import SystemRandom | |
from django.core.management.base import BaseCommand | |
from django.db import transaction |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Set all repositories of a given GitHub organization name for a given user | |
to watching. | |
""" | |
import argparse | |
import json | |
import requests | |
import os | |