Notes on building https://github.com/NCI-GDC/gdc-client
Following their instructions, get error in building lxml Python package:
Building wheels for collected packages: lxml
Building wheel for lxml (setup.py): started
Notes on building https://github.com/NCI-GDC/gdc-client
Following their instructions, get error in building lxml Python package:
Building wheels for collected packages: lxml
Building wheel for lxml (setup.py): started
OPENBLAS_DIR
$OPENBLAS_DIR/include$OPENBLAS_DIR/libMakefile.rule to set: DYNAMIC_ARCH=1make DYNAMIC_ARCH=1 to build./configure --prefix=/my/local/opt/R/$version \
| #!/usr/bin/env python3 | |
| import sys | |
| import os | |
| import re | |
| import pwd | |
| # some of the User_Aliases lines contain buggy usernames | |
| # which have "a" at the end of the username | |
| broken_usernames = set() |
| mkdir bin | |
| find . -not -type d -and -not -path '*/\.git/*' -exec git mv {} bin \; |
| TIL | |
| - tree [dirname] : shows an ASCII-formatted tree of directory *dirname* |
| python3 -c 'import crypt,getpass; print(crypt.crypt(getpass.getpass(), crypt.mksalt(crypt.METHOD_SHA512)))' |
The following work with Son of Grid Engine (SGE) 8.1.9 as configured on the University of Sheffield's ShARC and Iceberg clusters.
You can use the -hold_jid <<job-name or job-name>> option to make jobs run
only when other jobs have finished, rather than having jobs start and sit
waiting for other tasks to complete.
| #! /usr/bin/nft -f | |
| ### localhost | |
| define LOCALHOST = { 127.0.0.1 } | |
| define LOCALHOST6 = { ::1 } | |
| table inet filter { | |
| chain input { | |
| type filter hook input priority 0; policy drop; | |
| ct state invalid counter drop comment "early drop of invalid packets" |
| python-lsp-server | |
| importmagic | |
| epc | |
| pycodestyle | |
| mccabe | |
| pyflakes | |
| pylint | |
| rope | |
| yapf | |
| ipython |
| #!/usr/bin/env python | |
| import sys | |
| import os | |
| import numpy as np | |
| text = [[4, 3, 8, 9, 5, 1, 2, 7, 6], [8, 3, 4, 1, 5, 9, 6, 7, 2], | |
| [6, 1, 8, 7, 5, 3, 2, 9, 4], [6, 9, 8, 7, 5, 3, 2, 1, 4], | |
| [6, 1, 8, 7, 5, 3, 2, 1, 4], [6, 1, 3, 2, 9, 4, 8, 7, 5]] | |
| text = np.array(text) |