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
<canvas id = "c" > </canvas> | |
<a target="_blank" href="http://codepen.io/stuffit/pen/lJDqa" id="p">new project: planet ecosystem</a> | |
<div id="info"> | |
<div id="top"> | |
<a target="_blank" id="site" href="http://lonely-pixel.com">my website</a> | |
<a id="close" href="">close</a> | |
</div> | |
<p> |
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
#!/bin/sh | |
WORLD='world' | |
SERVER='localhost' | |
PASSWD='mcrcon-password' | |
MCUSER='minecraft' | |
MCPATH='/srv/minecraft' | |
BACKUPPATH='/srv/minecraft/backup/worlds' | |
REMOTE_BACKUPSERVER=example.com | |
REMOTE_USER=foo | |
REMOTE_BACKUPPATH='/home/foo/backup/minecraft/worlds' |
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
#!/usr/bin/env python | |
import base64, hashlib, hmac, json, sys, getpass | |
from Crypto.Cipher import AES | |
from Crypto.Hash import RIPEMD, SHA256 | |
base58_chars = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz' | |
def prompt(p): | |
return getpass.getpass(p + ": ") |
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
#PBS -l nodes=2:ppn=12 | |
#PBS -N JobName | |
cd ${PBS_O_WORKDIR} | |
NPROCS=`wc -l <$PBS_NODEFILE` | |
MPIRUN="mpirun -machinefile $PBS_NODEFILE -n $NPROC" | |
export GMX_MAXBACKUP=1000 # max number of gro backup | |
GMDIR=/home/kmtu/local/gromacs-4.6.6/bin |
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
if [[ ! $# == 1 ]]; then | |
echo "Usage: $0 <index of md>" | |
exit 1; | |
fi | |
idx=$1 | |
sdir=../../2-npt | |
tdir=md$idx | |
mkdir $tdir |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>True Trello Printer</title> | |
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet"> | |
<style> | |
body{margin:15%;} | |
.panel-body{ |
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
if [[ ! $# == 1 ]]; then | |
echo "Usage: $0 <md index>" | |
exit 1; | |
fi | |
IDX=$1 | |
cd md$1 &&\ | |
cat > run_md-nve.sh <<EOF | |
#PBS -l nodes=2:ppn=12 | |
#PBS -N system-md$IDX |
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
if [[ ! $# == 1 ]]; then | |
echo "Usage: $0 <index of md>" | |
exit 1; | |
fi | |
idx=$1 | |
sdir=../../2-npt | |
tdir=md$idx | |
if [[ ! -d "$tdir" ]]; then |
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
! XDR Fortran Interface | |
! 2014 (c) James W. Barnett <[email protected]> | |
! https://github.com/wesbarnett/ | |
module xtc | |
use, intrinsic :: iso_c_binding, only: C_PTR, C_CHAR, C_FLOAT, C_INT | |
implicit none | |
private |
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
! XDR Fortran Interface Example Program | |
! 2014 (c) James W. Barnett <[email protected]> | |
! https://github.com/wesbarnett/ | |
program read_xtc_prog | |
use, intrinsic :: iso_c_binding, only: C_NULL_CHAR, C_PTR, c_f_pointer | |
use xtc | |
implicit none |
OlderNewer