mkdir ~/opt
wget 'https://cache.ruby-lang.org/pub/ruby/2.2/ruby-2.2.3.tar.gz'
tar -zxof ruby-2.2.3.tar.gz
pushd ruby-2.2.3
configure --prefix=$HOME/opt
make -j 8 && make install
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
#include <stdio.h> | |
#include <execinfo.h> | |
#include <signal.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
void handler(int sig) { | |
void *array[10]; | |
size_t size; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
PFRMAT TS | |
TARGET T0797 | |
MODEL 1 | |
PARENT 4k1pD_101 | |
ATOM 1 N LYS 1 17.732 0.913 0.782 1.00 12.20 N | |
ATOM 2 CA LYS 1 17.343 2.320 0.827 1.00 12.45 C | |
ATOM 3 C LYS 1 15.822 2.469 0.762 1.00 11.12 C | |
ATOM 4 O LYS 1 15.195 2.051 -0.213 1.00 8.23 O | |
ATOM 5 CB LYS 1 18.027 3.070 -0.318 1.00 18.67 C | |
ATOM 6 CG LYS 1 17.834 4.582 -0.378 1.00 18.67 C |
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
# Created by https://www.gitignore.io/api/c++,cmake | |
### C++ ### | |
# Prerequisites | |
*.d | |
# Compiled Object files | |
*.slo | |
*.lo |
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
import logging | |
import cppimport | |
import time | |
import threading | |
import numpy | |
spinner = cppimport.imp("spinner") |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#Adaptive subclass to support minimum cluster size and grouped scaling | |
#Cluster modification via gcloud calls | |
from __future__ import division | |
from math import ceil | |
import click | |
import subprocess | |
import distributed.deploy.adaptive as adaptive | |
import logging |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.