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 bash | |
| set -Eeuo pipefail | |
| trap cleanup SIGINT SIGTERM ERR EXIT | |
| script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P) | |
| usage() { | |
| cat <<EOF | |
| Usage: $(basename "${BASH_SOURCE[0]}") [-h] [-v] [-f] -p param_value arg1 [arg2...] |
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
| Wheeler graphs | |
| Gagie, Manzini, Siren | |
| Theoretical Computer Science, 2017 | |
| https://www.sciencedirect.com/science/article/pii/S0304397517305285 | |
| Notes of a whiteboard presentation to the Bonsai team in Lille. | |
| These notes largely follow the paper. | |
| Rayan Chikhi, 2019 |
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
| Save NextFlow logo as this file. |
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
| # go to 'https://developers.facebook.com/tools/explorer' to get your access token | |
| access_token <- "******************* INPUT YOUR ACCESS TOKEN ******************************" | |
| require(RCurl) | |
| require(rjson) | |
| # Facebook json function copied from original (Romain Francois) post | |
| facebook <- function( path = "me", access_token, options){ | |
| if( !missing(options) ){ | |
| options <- sprintf( "?%s", paste( names(options), "=", unlist(options), collapse = "&", sep = "" ) ) |
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
| (ns three.demo) | |
| (def camera (THREE.Camera. 75 (/ window/innerWidth | |
| window/innerHeight) 1 10000)) | |
| (set! (.z (.position camera)) 1000) | |
| (def scene (THREE.Scene.)) | |
| (def geometry (THREE.CubeGeometry. 200 200 200)) | |
| (def obj (js/Object.)) | |
| (set! (.color obj) 0xff0000) | |
| (set! (.wireframe obj) true) | |
| (def material (THREE.MeshBasicMaterial. obj)) |