├── .gitignore ├── LICENSE ├── README.md ├── RU_STUB ├── c └── list │ ├── Makefile │ ├── example.c │ ├── list.c │ └── list.h └── python ├── csv_print.py ├── examples └── password_check_example.py ├── get_as_python.py ├── get_as_python.txt ├── get_tfs2015_build_definition_id.py ├── infix_to_postfix_re.py ├── infix_to_postfix_shunting_yard.py ├── magento_xmlrpc.py ├── password_check.py ├── password_check.txt ├── s3_parallel_download.md ├── s3_parallel_download.py ├── s3_parallel_upload.md ├── s3_parallel_upload.py ├── ssl_sign.md ├── ssl_sign.py ├── ssl_webserver.txt ├── ssl_webserver ├── index.html ├── server.crt.pem ├── server.csr.pem ├── server.private_key.pem └── ssl_webserver.py ├── text_prompts.py └── text_prompts.txt /.gitignore: -------------------------------------------------------------------------------- 1 | example 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/README.md -------------------------------------------------------------------------------- /RU_STUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/RU_STUB -------------------------------------------------------------------------------- /c/list/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/c/list/Makefile -------------------------------------------------------------------------------- /c/list/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/c/list/example.c -------------------------------------------------------------------------------- /c/list/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/c/list/list.c -------------------------------------------------------------------------------- /c/list/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/c/list/list.h -------------------------------------------------------------------------------- /python/csv_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/csv_print.py -------------------------------------------------------------------------------- /python/examples/password_check_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/examples/password_check_example.py -------------------------------------------------------------------------------- /python/get_as_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/get_as_python.py -------------------------------------------------------------------------------- /python/get_as_python.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/get_as_python.txt -------------------------------------------------------------------------------- /python/get_tfs2015_build_definition_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/get_tfs2015_build_definition_id.py -------------------------------------------------------------------------------- /python/infix_to_postfix_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/infix_to_postfix_re.py -------------------------------------------------------------------------------- /python/infix_to_postfix_shunting_yard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/infix_to_postfix_shunting_yard.py -------------------------------------------------------------------------------- /python/magento_xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/magento_xmlrpc.py -------------------------------------------------------------------------------- /python/password_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/password_check.py -------------------------------------------------------------------------------- /python/password_check.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/password_check.txt -------------------------------------------------------------------------------- /python/s3_parallel_download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/s3_parallel_download.md -------------------------------------------------------------------------------- /python/s3_parallel_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/s3_parallel_download.py -------------------------------------------------------------------------------- /python/s3_parallel_upload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/s3_parallel_upload.md -------------------------------------------------------------------------------- /python/s3_parallel_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/s3_parallel_upload.py -------------------------------------------------------------------------------- /python/ssl_sign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/ssl_sign.md -------------------------------------------------------------------------------- /python/ssl_sign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/ssl_sign.py -------------------------------------------------------------------------------- /python/ssl_webserver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/ssl_webserver.txt -------------------------------------------------------------------------------- /python/ssl_webserver/index.html: -------------------------------------------------------------------------------- 1 | Hello. 2 | -------------------------------------------------------------------------------- /python/ssl_webserver/server.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/ssl_webserver/server.crt.pem -------------------------------------------------------------------------------- /python/ssl_webserver/server.csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/ssl_webserver/server.csr.pem -------------------------------------------------------------------------------- /python/ssl_webserver/server.private_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/ssl_webserver/server.private_key.pem -------------------------------------------------------------------------------- /python/ssl_webserver/ssl_webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/ssl_webserver/ssl_webserver.py -------------------------------------------------------------------------------- /python/text_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/text_prompts.py -------------------------------------------------------------------------------- /python/text_prompts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsoprea/RandomUtility/HEAD/python/text_prompts.txt --------------------------------------------------------------------------------