$ keytool -genkey -v -keystore debug.keystore -storepass android -alias androiddebugkey -keypass android -keyalg RSA -keysize 2048 -validity 10000 -dname "C=US, O=Android, CN=Android Debug"
See also: https://github.com/pditommaso/awesome-pipeline
- Arvados http://arvados.org
- Taverna http://www.taverna.org.uk/
- Galaxy http://galaxyproject.org/
- SHIWA https://www.shiwa-workflow.eu/
- Oozie https://oozie.apache.org/
- DNANexus https://wiki.dnanexus.com/API-Specification-v1.0.0/IO-and-Run-Specifications# https://wiki.dnanexus.com/API-Specification-v1.0.0/Workflows-and-Analyses#
- BioDT http://www.biodatomics.com/
- Agave http://agaveapi.co/live-docs/
This file contains 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
def make_python_identifier(string, namespace=None, reserved_words=None, | |
convert='drop', handle='force'): | |
""" | |
Takes an arbitrary string and creates a valid Python identifier. | |
If the python identifier created is already in the namespace, | |
or if the identifier is a reserved word in the reserved_words | |
list, or is a python default reserved word, | |
adds _1, or if _1 is in the namespace, _2, etc. | |
Parameters |
This file contains 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
# Rime dictionary | |
# encoding: utf-8 | |
--- | |
name: greek | |
version: "0.1" | |
sort: original | |
... | |
# 小写希腊字母 |
This file contains 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
http://freecode-freecode.blogspot.com/2008/11/how-to-gbkgb2312-and-utf-8-encoding.html | |
GB2312UTF8 = { | |
Dig2Dec : function(s){ | |
var retV = 0; | |
if(s.length == 4){ | |
for(var i = 0; i < 4; i ++){ | |
retV += eval(s.charAt(i)) * Math.pow(2, 3 - i); | |
} | |
return retV; |
This file contains 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 | |
# EM --- emacsclient wrapper | |
# Emacs client wrapper support (sudo) editing of single files and diff mode. | |
# A POSIX variable | |
# Reset in case getopts has been used previously in the shell. | |
OPTIND=1 | |
usage() { | |
cat << EOF |
This file contains 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
* |
This file contains 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
SetTitleMatchMode, 2 | |
#IfWinActive Zim ahk_class gdkWindowToplevel | |
!1:: | |
SendInput, {AppsKey}e{Tab}{Tab}{Tab}{Tab}100{Enter}{Enter} | |
return | |
!2:: | |
SendInput, {AppsKey}e{Tab}{Tab}{Tab}{Tab}200{Enter}{Enter} | |
return | |
!3:: |