├── sam
├── sam-app
│ ├── hello_world
│ │ ├── __init__.py
│ │ └── requirements.txt
│ └── tests
│ │ └── unit
│ │ └── __init__.py
└── sam-app-with-private-serverless-api
│ ├── hello_world
│ ├── __init__.py
│ └── requirements.txt
│ └── tests
│ └── unit
│ └── __init__.py
├── terraform
├── aws
│ ├── aws_config
│ │ └── variables.tf
│ ├── terraform_module_aws_rds
│ │ └── variables.tf
│ ├── terraform_target_group
│ │ ├── versions.tf
│ │ └── main.tf
│ ├── terraform_ecs_with_parameter_store
│ │ ├── versions.tf
│ │ ├── templates
│ │ │ └── ecs_cluster_node.sh
│ │ └── parameter_store.tf
│ ├── rds_with_readreplicas
│ │ ├── variables.tf
│ │ └── README.md
│ ├── terraform_ecs
│ │ └── templates
│ │ │ └── ecs_cluster_node.sh
│ ├── terraform_ecs_environment
│ │ ├── vpc
│ │ │ └── README.md
│ │ ├── modules
│ │ │ └── ecs
│ │ │ │ └── templates
│ │ │ │ └── ecs_cluster_node.sh
│ │ └── ecs
│ │ │ └── dev
│ │ │ └── us-west-2
│ │ │ └── templates
│ │ │ └── ecs_cluster_node.sh
│ ├── terraform_ecs_multicontainer_task
│ │ ├── main.tf
│ │ └── templates
│ │ │ └── ecs_cluster_node.sh
│ ├── terraform_ecs_service_task_and_elbv2
│ │ ├── main.tf
│ │ └── templates
│ │ │ └── ecs_cluster_node.sh
│ ├── terraform_ecs_service_and_task
│ │ └── templates
│ │ │ └── ecs_cluster_node.sh
│ ├── aws_module_asg_and_template_with_gp3
│ │ └── README.md
│ └── terraform_elbv2_listener_rule_multiple_values
│ │ └── README.md
├── terraform_with_workspaces
│ └── variables.tf
├── terraform_aws_tags_with_local_variable
│ ├── versions.tf
│ └── vars.tf
├── terraform_cloudwatch_metric_alarm
│ └── vars.tf
├── terraform_state_mv
│ ├── mv_to_another_configuration
│ │ ├── target_configuration
│ │ │ └── main.tf
│ │ └── source_configuration
│ │ │ └── main.tf
│ └── mv_within_configuration
│ │ └── main.tf
├── terraform_for_each_list_objects
│ ├── variables.tf
│ └── terraform.tfvars
├── terraform_with_environments
│ └── vpc_modules
│ │ └── README.md
├── terraform_mysql_user_provision
│ ├── variables.tf
│ └── main.tf
├── terraform_template
│ └── templates
│ │ └── user_data.sh
└── terraform_with_pagerduty
│ └── README.md
├── ruby
├── basic_rails_asset_pipeline
│ ├── log
│ │ └── .keep
│ ├── app
│ │ ├── models
│ │ │ ├── .keep
│ │ │ └── concerns
│ │ │ │ └── .keep
│ │ ├── mailers
│ │ │ └── .keep
│ │ ├── assets
│ │ │ └── images
│ │ │ │ └── .keep
│ │ ├── controllers
│ │ │ ├── concerns
│ │ │ │ └── .keep
│ │ │ └── application_controller.rb
│ │ └── helpers
│ │ │ └── application_helper.rb
│ ├── lib
│ │ ├── assets
│ │ │ └── .keep
│ │ └── tasks
│ │ │ └── .keep
│ ├── public
│ │ ├── favicon.ico
│ │ ├── robots.txt
│ │ └── assets
│ │ │ ├── application-943ad24e6862b6fb0a4880bc104e52e6a3a5abba68ff6e54f18c16a45f2fad5b.js.gz
│ │ │ └── application-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css.gz
│ ├── test
│ │ ├── fixtures
│ │ │ └── .keep
│ │ ├── helpers
│ │ │ └── .keep
│ │ ├── mailers
│ │ │ └── .keep
│ │ ├── models
│ │ │ └── .keep
│ │ ├── controllers
│ │ │ └── .keep
│ │ └── integration
│ │ │ └── .keep
│ ├── vendor
│ │ └── assets
│ │ │ ├── javascripts
│ │ │ └── .keep
│ │ │ └── stylesheets
│ │ │ └── .keep
│ ├── bin
│ │ ├── bundle
│ │ └── rake
│ ├── config
│ │ ├── boot.rb
│ │ ├── initializers
│ │ │ ├── cookies_serializer.rb
│ │ │ ├── mime_types.rb
│ │ │ ├── session_store.rb
│ │ │ └── filter_parameter_logging.rb
│ │ └── environment.rb
│ ├── config.ru
│ └── Rakefile
├── ruby_on_rails_hello_world
│ └── helloworld
│ │ ├── log
│ │ └── .keep
│ │ ├── tmp
│ │ └── .keep
│ │ ├── lib
│ │ ├── assets
│ │ │ └── .keep
│ │ └── tasks
│ │ │ └── .keep
│ │ ├── storage
│ │ └── .keep
│ │ ├── vendor
│ │ └── .keep
│ │ ├── public
│ │ ├── favicon.ico
│ │ ├── apple-touch-icon.png
│ │ ├── apple-touch-icon-precomposed.png
│ │ └── robots.txt
│ │ ├── test
│ │ ├── fixtures
│ │ │ ├── .keep
│ │ │ └── files
│ │ │ │ └── .keep
│ │ ├── helpers
│ │ │ └── .keep
│ │ ├── mailers
│ │ │ └── .keep
│ │ ├── models
│ │ │ └── .keep
│ │ ├── system
│ │ │ └── .keep
│ │ ├── controllers
│ │ │ └── .keep
│ │ ├── integration
│ │ │ └── .keep
│ │ └── application_system_test_case.rb
│ │ ├── .ruby-version
│ │ ├── app
│ │ ├── assets
│ │ │ ├── images
│ │ │ │ └── .keep
│ │ │ ├── javascripts
│ │ │ │ └── channels
│ │ │ │ │ └── .keep
│ │ │ └── config
│ │ │ │ └── manifest.js
│ │ ├── models
│ │ │ ├── concerns
│ │ │ │ └── .keep
│ │ │ └── application_record.rb
│ │ ├── controllers
│ │ │ ├── concerns
│ │ │ │ └── .keep
│ │ │ └── application_controller.rb
│ │ ├── views
│ │ │ └── layouts
│ │ │ │ └── mailer.text.erb
│ │ ├── helpers
│ │ │ └── application_helper.rb
│ │ ├── jobs
│ │ │ └── application_job.rb
│ │ ├── channels
│ │ │ └── application_cable
│ │ │ │ ├── channel.rb
│ │ │ │ └── connection.rb
│ │ └── mailers
│ │ │ └── application_mailer.rb
│ │ ├── package.json
│ │ ├── bin
│ │ ├── rake
│ │ ├── bundle
│ │ └── rails
│ │ ├── config
│ │ ├── spring.rb
│ │ ├── environment.rb
│ │ ├── routes.rb
│ │ ├── initializers
│ │ │ ├── mime_types.rb
│ │ │ └── filter_parameter_logging.rb
│ │ ├── boot.rb
│ │ └── cable.yml
│ │ ├── config.ru
│ │ └── Rakefile
├── yaml_load_with_begin_rescue
│ ├── valid_yaml_file.yaml
│ └── invalid_yaml_file.yaml
├── basic_sidekiq_worker
│ ├── Gemfile
│ ├── basic_sidekiq_worker.sh
│ ├── README.md
│ └── Vagrantfile
├── socket_get_hostname
│ └── socket_get_hostname.rb
├── ruby_exception_handling
│ └── ruby_unhandled_exception.rb
├── profiling
│ ├── memory_profiler
│ │ ├── hello.rb
│ │ └── memory_profiler_example.rb
│ └── rbspy
│ │ └── rbspy_example.rb
├── file_exists
│ └── file_exists.rb
├── iterate_over_array
│ └── iterate_over_array.rb
├── rest_client_example
│ └── rest_client_get.rb
├── erb
│ └── erb_access_environment_variable
│ │ └── erb_access_environment_variable.rb
└── hash_value_or_default
│ └── hash_value_or_default_with_dig_diff_types.rb
├── gradle
├── gradle_file_exists
│ └── test_file_exists.txt
├── gradle_rename_root_project
│ └── settings.gradle
├── gradle_tar_directory
│ ├── root_test_file.txt
│ ├── lib
│ │ └── lib_test_file.txt
│ ├── src
│ │ └── src_test_file.txt
│ └── exclude_dir
│ │ └── exclude_test_file.txt
├── hello_world
│ ├── src
│ │ └── main
│ │ │ └── java
│ │ │ └── org
│ │ │ └── world
│ │ │ └── hello
│ │ │ └── HelloWorld.java
│ └── build.gradle
└── gradle_basics
│ └── build.gradle
├── hiera
└── hiera_test
│ └── common.yaml
├── python
├── django
│ └── basic_django_site
│ │ └── mysite
│ │ ├── mysite
│ │ ├── __init__.py
│ │ └── views.py
│ │ └── db.sqlite3
├── Flask
│ ├── get_config
│ │ └── config
│ │ │ └── production.cfg
│ └── get_config_from_env
│ │ └── config
│ │ └── production.cfg
├── urllib3
│ └── urllib3_simple_connection
│ │ ├── requirements.txt
│ │ └── urlllib3.py
├── unittest
│ └── unittest_multiple_modules
│ │ └── tests
│ │ └── __init__.py
├── boto3
│ ├── s3_bucket_without_ssl
│ │ ├── file_transmitted_with_ssl.txt
│ │ └── file_transmitted_without_ssl.txt
│ ├── ecs_run_task
│ │ ├── requirements.txt
│ │ └── ecs_run_task.py
│ ├── s3_list_buckets
│ │ └── s3_list_buckets.py
│ └── s3_create_bucket
│ │ └── s3_create_bucket.py
├── reportlab
│ └── basic_report
│ │ └── hello.pdf
├── jinja2
│ └── jinja2_using_file_template
│ │ └── my_templates
│ │ └── city_info_template.txt
├── quality_standards
│ └── README.md
├── PyQT5
│ └── pyqt5_simple_example
│ │ ├── README.md
│ │ └── Vagrantfile
├── logging
│ └── logging_with_config_dict
│ │ └── logging_conf.yaml
├── sphinx
│ └── basic_sphinx
│ │ ├── conf.rst
│ │ └── basic_sphinx.rst
├── newrelic-api
│ └── newrelic-api.py
├── pandas
│ └── dataframe_from_csv
│ │ └── dataframe_from_csv.py
├── virtualenv
│ └── bootstrap_script
│ │ └── create_my_app_bootstrap_diagram.png
├── wsgi_application
│ └── wsgi_application.py
├── credstash
│ └── credstash_get_value
│ │ └── credstash_get_value.py
├── dict_sort_python37
│ └── README.md
├── finviz
│ └── basic_finviz_query
│ │ └── basic_finviz_query.py
├── set
│ └── set_comprehension
│ │ └── set_comprehension.py
├── gunicorn
│ └── basic_gunicorn_setup
│ │ └── deploy.sh
├── environ_variables
│ └── python_get_print_environ_variable.py
└── split_on_string
│ └── basic_split_on_string.py
├── docker
├── docker_compose_basic
│ ├── mysql
│ │ └── Dockerfile
│ └── web
│ │ ├── requirements.txt
│ │ ├── Dockerfile
│ │ └── web.py
├── supervisor_test
│ ├── static
│ │ └── index.html
│ ├── entrypoint.sh
│ └── supervisord.conf
├── docker_with_nginx_proxy_to_nodejs
│ ├── static
│ │ └── index.html
│ ├── entrypoint.sh
│ └── provision.sh
├── docker_with_nginx_gzip
│ ├── Dockerfile
│ └── README.md
├── docker_exit_with_shell_entrypoint
│ ├── nginx_shell_wrapper
│ │ ├── entrypoint.sh
│ │ └── Dockerfile
│ ├── nginx_shell_wrapper_exec_mode
│ │ ├── entrypoint.sh
│ │ └── Dockerfile
│ ├── nginx_shell_wrapper_exec_bash
│ │ ├── entrypoint.sh
│ │ └── Dockerfile
│ └── nginx
│ │ └── Dockerfile
├── docker_build_with_build_args
│ └── Dockerfile
├── docker_with_environment_variable
│ └── Dockerfile
├── docker_compose_with_mysql
│ └── docker-compose.yaml
└── jsonfile_with_multiple_labels
│ └── README.md
├── php
├── phpunit_simple_test
│ ├── phpunit
│ ├── vendor
│ │ ├── bin
│ │ │ └── phpunit
│ │ ├── sebastian
│ │ │ ├── version
│ │ │ │ ├── .gitignore
│ │ │ │ └── .gitattributes
│ │ │ ├── environment
│ │ │ │ └── .gitignore
│ │ │ ├── comparator
│ │ │ │ ├── .gitignore
│ │ │ │ └── tests
│ │ │ │ │ └── bootstrap.php
│ │ │ ├── global-state
│ │ │ │ └── .gitignore
│ │ │ ├── exporter
│ │ │ │ └── .gitignore
│ │ │ ├── recursion-context
│ │ │ │ └── .gitignore
│ │ │ └── diff
│ │ │ │ ├── .gitignore
│ │ │ │ └── tests
│ │ │ │ └── fixtures
│ │ │ │ └── patch.txt
│ │ ├── phpunit
│ │ │ ├── phpunit
│ │ │ │ ├── tests
│ │ │ │ │ ├── _files
│ │ │ │ │ │ ├── bar.xml
│ │ │ │ │ │ ├── foo.xml
│ │ │ │ │ │ ├── expectedFileFormat.txt
│ │ │ │ │ │ ├── JsonData
│ │ │ │ │ │ │ ├── simpleObject.json
│ │ │ │ │ │ │ └── arrayObject.json
│ │ │ │ │ │ ├── NoTestCaseClass.php
│ │ │ │ │ │ ├── configuration.colors.empty.xml
│ │ │ │ │ │ ├── configuration.colors.true.xml
│ │ │ │ │ │ ├── CoveredFunction.php
│ │ │ │ │ │ ├── configuration.colors.false.xml
│ │ │ │ │ │ ├── configuration.colors.invalid.xml
│ │ │ │ │ │ ├── DummyException.php
│ │ │ │ │ │ ├── CustomPrinter.php
│ │ │ │ │ │ ├── NotVoidTestCase.php
│ │ │ │ │ │ ├── EmptyTestCaseTest.php
│ │ │ │ │ │ ├── NamespaceCoveredFunction.php
│ │ │ │ │ │ ├── NonStatic.php
│ │ │ │ │ │ ├── ConcreteTest.php
│ │ │ │ │ │ ├── InheritedTestCase.php
│ │ │ │ │ │ ├── Success.php
│ │ │ │ │ │ ├── configuration.custom-printer.xml
│ │ │ │ │ │ ├── Inheritance
│ │ │ │ │ │ │ ├── InheritanceA.php
│ │ │ │ │ │ │ └── InheritanceB.php
│ │ │ │ │ │ ├── NoTestCases.php
│ │ │ │ │ │ ├── NothingTest.php
│ │ │ │ │ │ ├── OverrideTestCase.php
│ │ │ │ │ │ ├── AbstractTest.php
│ │ │ │ │ │ ├── ConcreteTest.my.php
│ │ │ │ │ │ ├── MockRunner.php
│ │ │ │ │ │ ├── NoArgTestCaseTest.php
│ │ │ │ │ │ ├── ClassWithScalarTypeDeclarations.php
│ │ │ │ │ │ ├── Failure.php
│ │ │ │ │ │ ├── ThrowNoExceptionTestCase.php
│ │ │ │ │ │ ├── Struct.php
│ │ │ │ │ │ ├── TestTestError.php
│ │ │ │ │ │ ├── TestSkipped.php
│ │ │ │ │ │ ├── TestIncomplete.php
│ │ │ │ │ │ ├── IncompleteTest.php
│ │ │ │ │ │ ├── WasRun.php
│ │ │ │ │ │ ├── IniTest.php
│ │ │ │ │ │ ├── OneTestCase.php
│ │ │ │ │ │ ├── ThrowExceptionTestCase.php
│ │ │ │ │ │ ├── CoverageNoneTest.php
│ │ │ │ │ │ └── NotPublicTestCase.php
│ │ │ │ │ ├── Regression
│ │ │ │ │ │ ├── 684
│ │ │ │ │ │ │ └── Issue684Test.php
│ │ │ │ │ │ ├── 783
│ │ │ │ │ │ │ ├── OneTest.php
│ │ │ │ │ │ │ └── TwoTest.php
│ │ │ │ │ │ └── GitHub
│ │ │ │ │ │ │ ├── 74
│ │ │ │ │ │ │ └── NewException.php
│ │ │ │ │ │ │ ├── 322
│ │ │ │ │ │ │ └── phpunit322.xml
│ │ │ │ │ │ │ ├── 797
│ │ │ │ │ │ │ └── bootstrap797.php
│ │ │ │ │ │ │ ├── 873
│ │ │ │ │ │ │ └── Issue873Test.php
│ │ │ │ │ │ │ ├── 1216
│ │ │ │ │ │ │ ├── bootstrap1216.php
│ │ │ │ │ │ │ ├── phpunit1216.xml
│ │ │ │ │ │ │ └── Issue1216Test.php
│ │ │ │ │ │ │ ├── 1265
│ │ │ │ │ │ │ ├── phpunit1265.xml
│ │ │ │ │ │ │ └── Issue1265Test.php
│ │ │ │ │ │ │ ├── 1330
│ │ │ │ │ │ │ ├── phpunit1330.xml
│ │ │ │ │ │ │ └── Issue1330Test.php
│ │ │ │ │ │ │ ├── 1351
│ │ │ │ │ │ │ └── ChildProcessClass1351.php
│ │ │ │ │ │ │ ├── 1437
│ │ │ │ │ │ │ └── Issue1437Test.php
│ │ │ │ │ │ │ └── 1570
│ │ │ │ │ │ │ └── Issue1570Test.php
│ │ │ │ │ ├── Fail
│ │ │ │ │ │ └── fail.phpt
│ │ │ │ │ └── bootstrap.php
│ │ │ │ ├── src
│ │ │ │ │ └── Util
│ │ │ │ │ │ └── PHP
│ │ │ │ │ │ └── eval-stdin.php
│ │ │ │ ├── .gitattributes
│ │ │ │ └── build
│ │ │ │ │ └── bin
│ │ │ │ │ └── phpab
│ │ │ ├── php-timer
│ │ │ │ ├── .gitattributes
│ │ │ │ └── .gitignore
│ │ │ ├── php-code-coverage
│ │ │ │ ├── .gitattributes
│ │ │ │ ├── tests
│ │ │ │ │ └── _files
│ │ │ │ │ │ ├── CoveredFunction.php
│ │ │ │ │ │ ├── source_without_ignore.php
│ │ │ │ │ │ └── CoverageNoneTest.php
│ │ │ │ ├── scripts
│ │ │ │ │ └── auto_append.php
│ │ │ │ └── .gitignore
│ │ │ ├── php-file-iterator
│ │ │ │ ├── .gitattributes
│ │ │ │ └── .gitignore
│ │ │ ├── php-text-template
│ │ │ │ ├── .gitattributes
│ │ │ │ └── .gitignore
│ │ │ ├── php-token-stream
│ │ │ │ ├── .gitattributes
│ │ │ │ ├── tests
│ │ │ │ │ ├── _fixture
│ │ │ │ │ │ ├── issue19.php
│ │ │ │ │ │ ├── classInNamespace.php
│ │ │ │ │ │ ├── issue30.php
│ │ │ │ │ │ ├── classInScopedNamespace.php
│ │ │ │ │ │ ├── source2.php
│ │ │ │ │ │ ├── classExtendsNamespacedClass.php
│ │ │ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php
│ │ │ │ │ │ └── multipleNamespacesWithOneClassUsingNonBraceSyntax.php
│ │ │ │ │ └── bootstrap.php
│ │ │ │ └── .gitignore
│ │ │ └── phpunit-mock-objects
│ │ │ │ ├── .gitattributes
│ │ │ │ ├── tests
│ │ │ │ ├── _fixture
│ │ │ │ │ ├── AnInterface.php
│ │ │ │ │ ├── AnotherInterface.php
│ │ │ │ │ ├── TraversableMockTestInterface.php
│ │ │ │ │ ├── Bar.php
│ │ │ │ │ ├── InterfaceWithStaticMethod.php
│ │ │ │ │ ├── ClassWithStaticMethod.php
│ │ │ │ │ ├── Foo.php
│ │ │ │ │ ├── MockTestInterface.php
│ │ │ │ │ ├── FunctionCallback.php
│ │ │ │ │ └── SomeClass.php
│ │ │ │ └── bootstrap.php
│ │ │ │ ├── src
│ │ │ │ └── Framework
│ │ │ │ │ └── MockObject
│ │ │ │ │ └── Generator
│ │ │ │ │ ├── trait_class.tpl.dist
│ │ │ │ │ ├── wsdl_method.tpl.dist
│ │ │ │ │ ├── mocked_clone.tpl.dist
│ │ │ │ │ ├── mocked_static_method.tpl.dist
│ │ │ │ │ ├── unmocked_clone.tpl.dist
│ │ │ │ │ └── wsdl_class.tpl.dist
│ │ │ │ └── .gitignore
│ │ ├── phpdocumentor
│ │ │ └── reflection-docblock
│ │ │ │ └── .gitignore
│ │ ├── phpspec
│ │ │ └── prophecy
│ │ │ │ └── .gitignore
│ │ ├── symfony
│ │ │ └── yaml
│ │ │ │ ├── .gitignore
│ │ │ │ └── Tests
│ │ │ │ └── Fixtures
│ │ │ │ └── embededPhp.yml
│ │ ├── doctrine
│ │ │ └── instantiator
│ │ │ │ └── .gitignore
│ │ └── autoload.php
│ ├── composer.json
│ └── composer.phar
├── simple_composer
│ ├── vendor
│ │ ├── bin
│ │ │ └── jp.php
│ │ ├── mtdowling
│ │ │ └── jmespath.php
│ │ │ │ └── .gitignore
│ │ ├── guzzlehttp
│ │ │ ├── guzzle
│ │ │ │ └── src
│ │ │ │ │ ├── Exception
│ │ │ │ │ ├── GuzzleException.php
│ │ │ │ │ ├── TooManyRedirectsException.php
│ │ │ │ │ ├── TransferException.php
│ │ │ │ │ ├── ClientException.php
│ │ │ │ │ ├── ServerException.php
│ │ │ │ │ └── BadResponseException.php
│ │ │ │ │ └── functions_include.php
│ │ │ ├── promises
│ │ │ │ ├── tests
│ │ │ │ │ └── bootstrap.php
│ │ │ │ ├── .gitignore
│ │ │ │ ├── src
│ │ │ │ │ ├── functions_include.php
│ │ │ │ │ └── CancellationException.php
│ │ │ │ └── Makefile
│ │ │ └── psr7
│ │ │ │ ├── .gitignore
│ │ │ │ ├── src
│ │ │ │ └── functions_include.php
│ │ │ │ └── tests
│ │ │ │ └── bootstrap.php
│ │ ├── aws
│ │ │ └── aws-sdk-php
│ │ │ │ └── src
│ │ │ │ ├── Exception
│ │ │ │ ├── CredentialsException.php
│ │ │ │ ├── UnresolvedApiException.php
│ │ │ │ ├── UnresolvedEndpointException.php
│ │ │ │ └── UnresolvedSignatureException.php
│ │ │ │ ├── Api
│ │ │ │ └── Parser
│ │ │ │ │ └── Exception
│ │ │ │ │ └── ParserException.php
│ │ │ │ ├── S3
│ │ │ │ └── Exception
│ │ │ │ │ ├── PermanentRedirectException.php
│ │ │ │ │ └── S3Exception.php
│ │ │ │ ├── Ecs
│ │ │ │ └── Exception
│ │ │ │ │ └── EcsException.php
│ │ │ │ ├── Efs
│ │ │ │ └── Exception
│ │ │ │ │ └── EfsException.php
│ │ │ │ ├── data
│ │ │ │ ├── sqs
│ │ │ │ │ └── 2012-11-05
│ │ │ │ │ │ └── paginators-1.json.php
│ │ │ │ └── cloudtrail
│ │ │ │ │ └── 2013-11-01
│ │ │ │ │ └── paginators-1.json.php
│ │ │ │ ├── Sts
│ │ │ │ └── Exception
│ │ │ │ │ └── StsException.php
│ │ │ │ ├── CloudHsm
│ │ │ │ └── Exception
│ │ │ │ │ └── CloudHsmException.php
│ │ │ │ ├── Ssm
│ │ │ │ └── Exception
│ │ │ │ │ └── SsmException.php
│ │ │ │ ├── Support
│ │ │ │ └── Exception
│ │ │ │ │ └── SupportException.php
│ │ │ │ ├── Iot
│ │ │ │ └── Exception
│ │ │ │ │ └── IotException.php
│ │ │ │ ├── Lambda
│ │ │ │ └── Exception
│ │ │ │ │ └── LambdaException.php
│ │ │ │ ├── Waf
│ │ │ │ └── Exception
│ │ │ │ │ └── WafException.php
│ │ │ │ ├── Kms
│ │ │ │ └── Exception
│ │ │ │ │ └── KmsException.php
│ │ │ │ ├── Ses
│ │ │ │ └── Exception
│ │ │ │ │ └── SesException.php
│ │ │ │ ├── Sqs
│ │ │ │ └── Exception
│ │ │ │ │ └── SqsException.php
│ │ │ │ ├── Emr
│ │ │ │ └── Exception
│ │ │ │ │ └── EmrException.php
│ │ │ │ ├── Rds
│ │ │ │ └── Exception
│ │ │ │ │ └── RdsException.php
│ │ │ │ ├── Sns
│ │ │ │ └── Exception
│ │ │ │ │ └── SnsException.php
│ │ │ │ ├── Swf
│ │ │ │ └── Exception
│ │ │ │ │ └── SwfException.php
│ │ │ │ ├── Acm
│ │ │ │ └── Exception
│ │ │ │ │ └── AcmException.php
│ │ │ │ └── CodeDeploy
│ │ │ │ └── Exception
│ │ │ │ └── CodeDeployException.php
│ │ ├── autoload.php
│ │ └── composer
│ │ │ ├── autoload_classmap.php
│ │ │ └── autoload_namespaces.php
│ ├── composer.phar
│ └── composer.json
├── vagrant_php_server
│ └── apache_php.sh
├── set_response_code
│ └── set_response_code.php
└── php_string_explode
│ └── php_string_explode.php
├── heroku
└── heroku_python_basic_app
│ ├── Procfile
│ ├── requirements.txt
│ └── hello.py
├── nginx
├── ubuntu_nginx_php
│ └── php_site
│ │ └── index.php
├── ubuntu_nginx_php_env_variable
│ └── php_site
│ │ └── index.php
├── nginx_uwsgi_flask
│ └── uwsgi_config.ini
├── nginx_uwsgi_flask_with_passed_variable
│ ├── config
│ │ ├── development.cfg
│ │ └── production.cfg
│ └── uwsgi_config.ini
└── centos_nginx_php_ansible
│ └── ansible
│ └── files
│ └── index.php
├── nodejs_command
├── hello_world
│ ├── README.md
│ └── hello_world.js
├── aws_api_command
│ ├── README.md
│ └── package.json
└── nodejs_mediaconvert_createjob
│ └── README.md
├── vagrant
├── provisioner_ansible_local
│ └── ansible
│ │ └── playbook.retry
├── provisioner_salt
│ ├── salt
│ │ ├── top.sls
│ │ ├── salt-minion.conf
│ │ └── global.sls
│ └── README.md
├── basic_ubuntu
│ ├── basic_ubuntu.sh
│ └── Vagrantfile
├── basic_amazon_linux_2
│ └── shell_provision_script.sh
├── dual_provisioner
│ ├── shared.sh
│ ├── vagrant_only.sh
│ └── Vagrantfile
└── shell_provisioner_script_with_env_vars
│ └── shell_provisioner_script_with_env_vars.sh
├── ansible
├── ansible_playbook_with_vars
│ ├── playbooks
│ │ ├── vars_test.retry
│ │ └── appconfig.j2
│ ├── README.md
│ └── Vagrantfile
├── ansible_playbook_for_loop
│ └── ansible
│ │ ├── initial_playbook.yml
│ │ └── roles
│ │ └── sample_vhost_configuration
│ │ ├── templates
│ │ └── vhost_configuration.j2
│ │ └── tasks
│ │ └── main.yml
├── sample_playbook
│ └── README.md
├── deploy_cloudformation_role
│ └── playbooks
│ │ └── roles
│ │ └── manage_cloudformation
│ │ └── vars
│ │ └── main.yml
├── basic_ansible_playbook
│ ├── Vagrantfile
│ └── playbooks
│ │ └── ntp.yml
└── ansible_dry_run
│ ├── playbooks
│ └── sample_playbook.yaml
│ └── Vagrantfile
├── envkey
├── node_envkey_app_precedence
│ └── .env
└── node_envkey_app
│ └── envkey.js
├── phing
└── phing_lint_task
│ ├── echo_pass.php
│ ├── files_set_01
│ ├── echo_01.php
│ └── echo_02.php
│ ├── files_set_02
│ ├── echo_01.php
│ └── echo_02.php
│ └── echo_fail.php
├── serverless_framework
├── serverless_with_global_var
│ ├── config.dev.yml
│ ├── config.prd.yml
│ └── serverless.yml
└── serverless_with_node_on_cron
│ └── .gitignore
├── sidekiq
└── README.md
├── travis
├── Dockerfile
├── .travis.yml
└── README.md
├── nodejs
├── node_dotenv
│ ├── .env
│ └── dotenv.js
├── hello_world
│ ├── hello_world.js
│ └── README.md
├── node_jest_test
│ ├── sum.js
│ ├── sum.test.js
│ └── README.md
├── node_wait_on_for_port
│ └── package.json
├── node_ssh_tunnel
│ └── vars.sh
├── basic_node_package
│ └── index.js
├── node_docker_cpu_measures
│ └── cpu_count.js
├── node_for_loop
│ └── README.md
├── node_read_file
│ ├── README.md
│ └── node_read_file_sync.js
├── node_asynchronous_options
│ ├── 1200px-Llama_lying_down.jpg
│ ├── 2560px-Lama_glama_Laguna_Colorada_2.jpg
│ ├── node_initial_file.js
│ ├── test.html
│ └── promise.js
└── node_variable_interpolation_from_envvar
│ └── node_variable_interpolation_from_envvar.js
├── aws
├── s3
│ ├── s3_vpc_endpoint_terraform
│ │ ├── main.tf
│ │ └── README.md
│ └── s3_bucket_with_versioning
│ │ ├── waffles.jpg
│ │ └── output-example.png
├── ecr
│ └── ecr_with_scan_and_sns_publish_and_filter
│ │ └── README.md
├── codedeploy
│ ├── codedeploy_agent_install_ubuntu_1510
│ │ └── aws_credentials
│ └── basic_codedeploy_install
│ │ └── files
│ │ ├── index.html
│ │ ├── scripts
│ │ └── after_install.sh
│ │ └── appspec.yml
├── cloudformation
│ ├── serverless_function
│ │ └── lambda
│ │ │ └── hello_world.py
│ ├── s3_endpoint_with_parameters_and_environment
│ │ ├── dev01.json
│ │ ├── prd01.json
│ │ └── qa01.json
│ ├── cloudformation_change_parameters
│ │ └── parameters
│ │ │ ├── us-west-2_2az.json
│ │ │ └── us-west-2_3az.json
│ ├── cloudformation_az_agnostic_one_file
│ │ └── params
│ │ │ ├── eu-west-1.json
│ │ │ ├── sa-east-1.json
│ │ │ ├── us-east-2.json
│ │ │ ├── us-west-2.json
│ │ │ ├── ap-south-1.json
│ │ │ ├── eu-west-2.json
│ │ │ ├── us-west-1.json
│ │ │ ├── ap-northeast-1.json
│ │ │ ├── ca-central-1.json
│ │ │ ├── eu-central-1.json
│ │ │ ├── us-east-1.json
│ │ │ ├── ap-northeast-2.json
│ │ │ ├── ap-southeast-1.json
│ │ │ └── ap-southeast-2.json
│ ├── s3_endpoint_with_parameters
│ │ └── s3_endpoint_allowed_resources_parameters.json
│ └── function_transform_include
│ │ └── ubuntu_ami.yaml
├── amplify
│ └── basic_amplify
│ │ ├── index.html
│ │ └── basic_amplify.yaml
├── elasticbeanstalk
│ ├── elasticbeanstalk_with_cron
│ │ ├── requirements.txt
│ │ ├── .gitignore
│ │ ├── crons
│ │ │ └── eb_crons
│ │ └── app.py
│ └── elasticbeanstalk_deployment
│ │ └── README.md
├── terraform
│ └── guardduty
│ │ └── guardduty_detector
│ │ └── main.tf
├── elb
│ └── elb_backend_selfsigned_cert
│ │ └── apache_selfsigned_cert.sh
├── lambda
│ └── lambda_with_ssm
│ │ └── requirements.txt
├── eks
│ └── eks_introduction
│ │ └── application_definitions
│ │ └── nginx_service.yaml
├── cloudfront
│ └── cloudfront_redirect_all_index_s3
│ │ └── index.html
├── sts
│ └── sts_basic_application
│ │ └── Resources
│ │ └── get_federation_token - Required Permissions.json
├── eventbridge
│ └── basic_eventbus_and_sender
│ │ └── basic_eventbus.yaml
├── awscli_tool
│ └── snippets_autoscaling.md
└── ecs
│ └── ecs_task_with_secretsmanager
│ └── parse_combined_secrets.js
├── apache2
└── apache2_basic_install
│ └── apache2_basic_install.sh
├── grunt
├── grunt_compress_directory
│ ├── directory_to_be_compressed
│ │ ├── directory_1
│ │ │ └── file_1.txt
│ │ └── directory_2
│ │ │ └── file_2.txt
│ └── package.json
├── grunt_fail
│ ├── Gruntfile.js
│ └── package.json
├── grunt_arguments
│ └── package.json
├── grunt_multitask
│ └── package.json
└── grunt_environment_variables
│ └── package.json
├── fluentbit
├── fluentbit_with_s3_output_config
│ └── fluentbit.env
└── fluentbit_with_tag_setter_and_selector
│ └── README.md
├── fluentd
├── basic_fluentd_use_centos_ansible
│ └── ansible
│ │ ├── playbook.yml
│ │ └── roles
│ │ └── fluentd
│ │ ├── templates
│ │ ├── config.d
│ │ │ ├── match.d
│ │ │ │ └── standard.conf
│ │ │ └── source.d
│ │ │ │ └── system_logs.conf
│ │ └── td-agent.conf
│ │ └── files
│ │ └── td-agent
└── basic_fluentd_install_centos
│ └── basic_fluentd_install_centos.sh
├── tomcat
└── webapp_with_routing
│ └── WebContent
│ ├── META-INF
│ └── MANIFEST.MF
│ └── WEB-INF
│ └── lib
│ └── servlet-api.jar
├── dot
└── basic_dot_digraph
│ └── basic_dot_digraph.dot
├── gitlab
└── gitlab_runner_terraform
│ ├── variables.tf
│ └── README.md
├── logstash
└── logstash_installed_via_ansible
│ └── ansible
│ ├── playbook.yml
│ └── roles
│ └── logstash_server
│ └── files
│ └── elasticsearch.repo
├── redis
├── redis_284
│ └── redis_284_basic_install.sh
└── redis_insight_with_docker
│ └── docker-compose.yaml
├── go
├── hello_world
│ └── hello_world.go
└── newrelic_api_connector
│ └── go.mod
├── solr
├── solr_cloud
│ ├── README.md
│ └── zookeeper_instance.sh
└── solr_single_instance_apt
│ ├── solr_single_instance.sh
│ └── README.md
├── aws-security-viz
└── README.md
├── gatsby
├── src
│ └── pages
│ │ └── index.js
└── gatsby-config.js
├── maven
├── maven_basic_project
│ ├── artifact
│ │ └── target
│ │ │ ├── maven-status
│ │ │ └── maven-compiler-plugin
│ │ │ │ ├── compile
│ │ │ │ └── default-compile
│ │ │ │ │ ├── createdFiles.lst
│ │ │ │ │ └── inputFiles.lst
│ │ │ │ └── testCompile
│ │ │ │ └── default-testCompile
│ │ │ │ ├── createdFiles.lst
│ │ │ │ └── inputFiles.lst
│ │ │ ├── classes
│ │ │ └── com
│ │ │ │ └── cloudavail
│ │ │ │ └── App.class
│ │ │ ├── maven-archiver
│ │ │ └── pom.properties
│ │ │ └── test-classes
│ │ │ └── com
│ │ │ └── cloudavail
│ │ │ └── AppTest.class
│ ├── install_maven.sh
│ └── Vagrantfile
└── maven_bintray_deploy
│ ├── install_maven.sh
│ └── Vagrantfile
├── openvpn
├── openvpn_client_in_docker
│ ├── openvpn_client_files
│ │ └── .gitignore
│ └── Dockerfile
└── openvpn_community_edition_docker_amazon_linux_2
│ └── Dockerfile
├── ssh
└── ssh_ProxyCommand
│ └── Images
│ ├── ssh Proxy with -t.png
│ └── ssh Proxy without -t.png.png
├── swift
├── set_variable
│ └── set_variable.playground
│ │ ├── Contents.swift
│ │ ├── timeline.xctimeline
│ │ ├── contents.xcplayground
│ │ ├── Sources
│ │ └── SupportCode.swift
│ │ └── playground.xcworkspace
│ │ ├── xcuserdata
│ │ └── cjohnson.xcuserdatad
│ │ │ └── UserInterfaceState.xcuserstate
│ │ └── contents.xcworkspacedata
├── basic_class
│ └── basic_class.playground
│ │ ├── Contents.swift
│ │ ├── contents.xcplayground
│ │ ├── Results.playgrounddata
│ │ └── Sources
│ │ └── SupportCode.swift
├── functions
│ └── functions.playground
│ │ ├── Results.playgrounddata
│ │ ├── timeline.xctimeline
│ │ ├── contents.xcplayground
│ │ ├── Sources
│ │ └── SupportCode.swift
│ │ └── playground.xcworkspace
│ │ ├── xcuserdata
│ │ └── cjohnson.xcuserdatad
│ │ │ └── UserInterfaceState.xcuserstate
│ │ └── contents.xcworkspacedata
├── for_loops
│ └── for_loops.playground
│ │ ├── timeline.xctimeline
│ │ ├── contents.xcplayground
│ │ ├── Sources
│ │ └── SupportCode.swift
│ │ └── playground.xcworkspace
│ │ ├── xcuserdata
│ │ └── cjohnson.xcuserdatad
│ │ │ └── UserInterfaceState.xcuserstate
│ │ └── contents.xcworkspacedata
├── variable_in_string
│ └── variable_in_string.playground
│ │ ├── Results.playgrounddata
│ │ ├── timeline.xctimeline
│ │ ├── Contents.swift
│ │ ├── contents.xcplayground
│ │ └── Sources
│ │ └── SupportCode.swift
├── inheritance_basics
│ └── inheritance_basics.playground
│ │ ├── timeline.xctimeline
│ │ ├── contents.xcplayground
│ │ ├── Sources
│ │ └── SupportCode.swift
│ │ └── playground.xcworkspace
│ │ └── contents.xcworkspacedata
├── arrays_and_dictionaries
│ └── arrays_and_dictionaries.playground
│ │ ├── timeline.xctimeline
│ │ ├── Results.playgrounddata
│ │ ├── contents.xcplayground
│ │ └── Sources
│ │ └── SupportCode.swift
├── BridgingHeader
│ └── BridgingHeader.xcodeproj
│ │ └── project.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcuserdata
│ │ └── cjohnson.xcuserdatad
│ │ └── UserInterfaceState.xcuserstate
├── bridge_header
│ └── bridge_header.xcodeproj
│ │ └── project.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcuserdata
│ │ └── cjohnson.xcuserdatad
│ │ └── UserInterfaceState.xcuserstate
├── bridging_header
│ └── bridging_header.xcodeproj
│ │ └── project.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcuserdata
│ │ └── cjohnson.xcuserdatad
│ │ └── UserInterfaceState.xcuserstate
└── Calculator
│ └── Calculator
│ └── Calculator.xcodeproj
│ └── project.xcworkspace
│ └── xcuserdata
│ └── cjohnson.xcuserdatad
│ └── UserInterfaceState.xcuserstate
├── apache_zookeeper
└── apache_zookeeper_standalone
│ └── zookeeper_instance.sh
├── packer
├── packer_ami_two_regions
│ └── ami_two_regions_vars.json
├── windows_with_nodejs_and_iis
│ ├── iisstart.htm
│ └── nodejs_script_copy_file.js
├── base_windows_image_userdata_build
│ └── packer_simple_config.ps1
└── packer_build_docker_image_with_ansible
│ └── playbook.yml
├── vagrant_aws_flow
├── deploy
│ └── deploy.sh
├── docs
│ ├── build
│ │ └── README.md
│ └── deploy
│ │ └── README.md
└── html
│ └── index.html
├── ant
└── ant_echo_task
│ ├── build.xml
│ └── README.md
├── crashplan
└── crashplan_client_ubuntu
│ ├── README.md
│ └── Vagrantfile
├── objective-c
├── hello-world.playground
│ ├── Contents.swift
│ ├── contents.xcplayground
│ ├── Results.playgrounddata
│ └── Sources
│ │ └── SupportCode.swift
├── HelloWorld
│ └── HelloWorld.xcodeproj
│ │ └── project.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcuserdata
│ │ └── cjohnson.xcuserdatad
│ │ └── UserInterfaceState.xcuserstate
└── SimpleMath
│ └── SimpleMath.xcodeproj
│ └── project.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcuserdata
│ └── cjohnson.xcuserdatad
│ └── UserInterfaceState.xcuserstate
├── postgres
└── basic_postgres_install
│ ├── basic_postgres_install.sh
│ └── Vagrantfile
├── puppet
├── basic_erb_template
│ └── mytemplate.erb
└── if_scope_lookup_var_template
│ └── mytemplate.erb
├── kubernetes
├── kubernetes_deploy
│ └── config
│ │ ├── namespaces
│ │ └── dev.yaml
│ │ └── deploy
│ │ └── dev
│ │ └── nginx_config_map.yaml
├── kubernetes_pod_with_secrets_as_file
│ └── secrets.txt
├── kubernetes_basic_deployment
│ └── README.md
├── kubernetes_pod_with_configmap
│ └── configmap.yaml
├── kubernetes_env_var_from_config_map
│ ├── configmap
│ │ └── development.yaml
│ └── pods
│ │ └── nginx.yaml
├── kubernetes_pod_with_configmap_as_file
│ └── configmap.yaml
└── kubernetes_cronjob
│ └── README.md
├── mysql
└── basic_docker_mysql_container_with_database
│ └── world.sql
├── yaml
└── yaml_alias
│ ├── README.md
│ └── yaml_alias.yaml
├── vestacp
└── basic_vestacp_install
│ ├── install_script.sh
│ └── README.md
├── centos
├── centos_systemd_enable
│ ├── centos_systemd_enable.sh
│ └── Vagrantfile
└── centos_change_timezone
│ └── Vagrantfile
├── java
├── springwebapp
│ └── src
│ │ └── main
│ │ └── webapp
│ │ └── WEB-INF
│ │ └── helloWorld.jsp
└── basic_heapdump_jmap
│ └── ForLoop.java
├── nmap
└── python-nmap-scanner
│ └── README.md
├── microsoft
└── windows_7
│ └── disable_windows_10_upgrade
│ └── disable_windows_10_upgrade.reg
├── newrelic
└── newrelic_php_agent_install
│ └── ansible
│ └── files
│ └── index.php
├── sysdig
└── read_file_with_docker
│ └── README.md
├── webpack
├── basic_webpack_project
│ ├── dist
│ │ └── index.html
│ └── webpack.config.js
└── webpack_s3_publish
│ └── dist
│ └── index.html
├── make
└── make_accept_cli_argument
│ └── Makefile
├── javascript
└── return_uri
│ └── return_uri.html
├── haproxy
└── haproxy_with_ssh
│ └── backend.sh
├── audiowaveform
├── Dockerfile
└── README.md
├── bash
└── if_or_condition
│ └── if_or_condition.sh
├── spark
├── pyspark_install
│ └── pyspark_install.sh
└── spark_install
│ └── Vagrantfile
├── percona
├── percona_toolkit_install
│ └── Vagrantfile
└── pt-query-digest-example
│ └── README.md
├── sequelize
└── basic_sequelize_migration
│ └── Vagrantfile
├── .gitignore
├── sumologic
└── sumologic_docker_file
│ └── README.md
├── debian
└── debian_update_timezone
│ └── Dockerfile
├── selenium
├── selenium_python_get_screenshot
│ └── Vagrantfile
└── selenium_python_chrome_headless
│ └── Vagrantfile
├── sqoop
└── basic_sqoop
│ └── Vagrantfile
├── JMX-Starter
└── ForLoop.java
├── grafana
└── elasticsearch_logstash_latest_grafana
│ └── data_sources
│ └── elasticsearch.json
├── logdna
└── logdna_fluentd_forwarder
│ └── README.md
└── postfix
├── basic_postfix_smtp_relay_aws_ses
└── Vagrantfile
└── basic_postfix_smtp_relay_config
└── Vagrantfile
/sam/sam-app/hello_world/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/sam/sam-app/tests/unit/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/terraform/aws/aws_config/variables.tf:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/basic_rails_asset_pipeline/log/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/gradle/gradle_file_exists/test_file_exists.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/hiera/hiera_test/common.yaml:
--------------------------------------------------------------------------------
1 | my_value: 'string'
--------------------------------------------------------------------------------
/ruby/basic_rails_asset_pipeline/app/models/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/basic_rails_asset_pipeline/lib/assets/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/basic_rails_asset_pipeline/lib/tasks/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/sam/sam-app/hello_world/requirements.txt:
--------------------------------------------------------------------------------
1 | requests
--------------------------------------------------------------------------------
/ruby/basic_rails_asset_pipeline/app/mailers/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/basic_rails_asset_pipeline/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/basic_rails_asset_pipeline/test/fixtures/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/basic_rails_asset_pipeline/test/helpers/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/basic_rails_asset_pipeline/test/mailers/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/basic_rails_asset_pipeline/test/models/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/log/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/tmp/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/python/django/basic_django_site/mysite/mysite/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/basic_rails_asset_pipeline/app/assets/images/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/basic_rails_asset_pipeline/app/models/concerns/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/basic_rails_asset_pipeline/test/controllers/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/basic_rails_asset_pipeline/test/integration/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/lib/assets/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/lib/tasks/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/storage/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/vendor/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/docker/docker_compose_basic/mysql/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM mysql
2 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/phpunit:
--------------------------------------------------------------------------------
1 | vendor/phpunit/phpunit/phpunit
--------------------------------------------------------------------------------
/ruby/basic_rails_asset_pipeline/app/controllers/concerns/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/basic_rails_asset_pipeline/vendor/assets/javascripts/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/basic_rails_asset_pipeline/vendor/assets/stylesheets/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/test/fixtures/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/test/helpers/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/test/mailers/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/test/models/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/test/system/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/sam/sam-app-with-private-serverless-api/hello_world/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/sam/sam-app-with-private-serverless-api/tests/unit/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/docker/supervisor_test/static/index.html:
--------------------------------------------------------------------------------
1 |
Hello World!
2 |
--------------------------------------------------------------------------------
/heroku/heroku_python_basic_app/Procfile:
--------------------------------------------------------------------------------
1 | web: gunicorn hello:app
2 |
--------------------------------------------------------------------------------
/nginx/ubuntu_nginx_php/php_site/index.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/nodejs_command/hello_world/README.md:
--------------------------------------------------------------------------------
1 | # Run
2 | `node hello_world.js`
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/bin/phpunit:
--------------------------------------------------------------------------------
1 | ../phpunit/phpunit/phpunit
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/.ruby-version:
--------------------------------------------------------------------------------
1 | ruby-2.5.1
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/app/assets/images/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/app/models/concerns/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/test/controllers/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/test/fixtures/files/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/test/integration/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vagrant/provisioner_ansible_local/ansible/playbook.retry:
--------------------------------------------------------------------------------
1 | default
2 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/sebastian/version/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 |
--------------------------------------------------------------------------------
/php/simple_composer/vendor/bin/jp.php:
--------------------------------------------------------------------------------
1 | ../mtdowling/jmespath.php/bin/jp.php
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/app/controllers/concerns/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/public/apple-touch-icon.png:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vagrant/provisioner_salt/salt/top.sls:
--------------------------------------------------------------------------------
1 | base:
2 | '*':
3 | - global
--------------------------------------------------------------------------------
/ansible/ansible_playbook_with_vars/playbooks/vars_test.retry:
--------------------------------------------------------------------------------
1 | testserver
2 |
--------------------------------------------------------------------------------
/envkey/node_envkey_app_precedence/.env:
--------------------------------------------------------------------------------
1 | DB_PASSWORD="ReplacedBy.ENVFile"
2 |
--------------------------------------------------------------------------------
/phing/phing_lint_task/echo_pass.php:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/phpunit/tests/_files/bar.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/phpunit/tests/_files/foo.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/python/Flask/get_config/config/production.cfg:
--------------------------------------------------------------------------------
1 | DATABASE = '192.168.2.4'
2 |
--------------------------------------------------------------------------------
/python/urllib3/urllib3_simple_connection/requirements.txt:
--------------------------------------------------------------------------------
1 | urllib3==1.26.8
2 |
--------------------------------------------------------------------------------
/sam/sam-app-with-private-serverless-api/hello_world/requirements.txt:
--------------------------------------------------------------------------------
1 | requests
--------------------------------------------------------------------------------
/serverless_framework/serverless_with_global_var/config.dev.yml:
--------------------------------------------------------------------------------
1 | MY_VAR: Warriors
--------------------------------------------------------------------------------
/serverless_framework/serverless_with_global_var/config.prd.yml:
--------------------------------------------------------------------------------
1 | MY_VAR: Bulls
--------------------------------------------------------------------------------
/sidekiq/README.md:
--------------------------------------------------------------------------------
1 | # This is how to run Sidekiq Service as a Systemd
2 |
3 |
--------------------------------------------------------------------------------
/travis/Dockerfile:
--------------------------------------------------------------------------------
1 | from python:3.6
2 | CMD ["python", "-c", "print(12345)"]
3 |
--------------------------------------------------------------------------------
/nodejs/node_dotenv/.env:
--------------------------------------------------------------------------------
1 | BASEBALL_TEAM="Dodgers"
2 | BASKETBALL_TEAM="Warriors"
3 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/php-timer/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/sebastian/version/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/python/Flask/get_config_from_env/config/production.cfg:
--------------------------------------------------------------------------------
1 | DATABASE = '192.168.2.4'
2 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/app/assets/javascripts/channels/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/public/apple-touch-icon-precomposed.png:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/docker/docker_compose_basic/web/requirements.txt:
--------------------------------------------------------------------------------
1 | Flask==1.0
2 | mysql-connector==2.1.6
--------------------------------------------------------------------------------
/docker/docker_with_nginx_proxy_to_nodejs/static/index.html:
--------------------------------------------------------------------------------
1 | Hello World!
2 |
--------------------------------------------------------------------------------
/nodejs_command/aws_api_command/README.md:
--------------------------------------------------------------------------------
1 | # Overview
2 |
3 | # Run
4 | node aws_api.js
--------------------------------------------------------------------------------
/phing/phing_lint_task/files_set_01/echo_01.php:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/phing/phing_lint_task/files_set_01/echo_02.php:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/phing/phing_lint_task/files_set_02/echo_01.php:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/phing/phing_lint_task/files_set_02/echo_02.php:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/python/unittest/unittest_multiple_modules/tests/__init__.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 |
--------------------------------------------------------------------------------
/nodejs_command/hello_world/hello_world.js:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 | console.log("Hello World!")
--------------------------------------------------------------------------------
/phing/phing_lint_task/echo_fail.php:
--------------------------------------------------------------------------------
1 | $b
3 | echo "echo fail"
4 | ?>
5 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/php-code-coverage/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/php-file-iterator/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/php-text-template/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/php-token-stream/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/phpunit-mock-objects/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt:
--------------------------------------------------------------------------------
1 | FOO
2 |
--------------------------------------------------------------------------------
/python/boto3/s3_bucket_without_ssl/file_transmitted_with_ssl.txt:
--------------------------------------------------------------------------------
1 | File transmitted with SSL.
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/app/views/layouts/mailer.text.erb:
--------------------------------------------------------------------------------
1 | <%= yield %>
2 |
--------------------------------------------------------------------------------
/vagrant/basic_ubuntu/basic_ubuntu.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 |
3 | echo "Ubuntu Started"
4 |
--------------------------------------------------------------------------------
/ansible/ansible_playbook_with_vars/playbooks/appconfig.j2:
--------------------------------------------------------------------------------
1 | api_endpoint = {{ api_endpoint }}
2 |
--------------------------------------------------------------------------------
/aws/s3/s3_vpc_endpoint_terraform/main.tf:
--------------------------------------------------------------------------------
1 | provider "aws" {
2 | region = "us-west-2"
3 | }
4 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpdocumentor/reflection-docblock/.gitignore:
--------------------------------------------------------------------------------
1 | .idea
2 | vendor
3 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpspec/prophecy/.gitignore:
--------------------------------------------------------------------------------
1 | *.tgz
2 | *.phar
3 | bin
4 | vendor
5 |
--------------------------------------------------------------------------------
/python/boto3/s3_bucket_without_ssl/file_transmitted_without_ssl.txt:
--------------------------------------------------------------------------------
1 | File transmitted without SSL.
--------------------------------------------------------------------------------
/apache2/apache2_basic_install/apache2_basic_install.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | apt-get -y install apache2
3 |
--------------------------------------------------------------------------------
/aws/s3/s3_vpc_endpoint_terraform/README.md:
--------------------------------------------------------------------------------
1 | # Overview
2 |
3 | This snippet provides a configuration
--------------------------------------------------------------------------------
/docker/docker_with_nginx_gzip/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM nginx
2 | COPY nginx.conf /etc/nginx/conf.d/gzip.conf
3 |
--------------------------------------------------------------------------------
/grunt/grunt_compress_directory/directory_to_be_compressed/directory_1/file_1.txt:
--------------------------------------------------------------------------------
1 | This is file_1.txt.
--------------------------------------------------------------------------------
/grunt/grunt_compress_directory/directory_to_be_compressed/directory_2/file_2.txt:
--------------------------------------------------------------------------------
1 | This is file_2.txt.
--------------------------------------------------------------------------------
/nodejs/hello_world/hello_world.js:
--------------------------------------------------------------------------------
1 | // prints Hello World to Console
2 | console.log("Hello World!");
3 |
--------------------------------------------------------------------------------
/nodejs_command/nodejs_mediaconvert_createjob/README.md:
--------------------------------------------------------------------------------
1 | # Overview
2 |
3 | # Run
4 | node aws_api.js
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/phpunit/tests/_files/JsonData/simpleObject.json:
--------------------------------------------------------------------------------
1 | {"Mascott":"Tux"}
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/symfony/yaml/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/ruby/basic_rails_asset_pipeline/app/helpers/application_helper.rb:
--------------------------------------------------------------------------------
1 | module ApplicationHelper
2 | end
3 |
--------------------------------------------------------------------------------
/ruby/yaml_load_with_begin_rescue/valid_yaml_file.yaml:
--------------------------------------------------------------------------------
1 | first_key: 'Giants'
2 | second_key: 'Dodgers'
3 |
--------------------------------------------------------------------------------
/fluentbit/fluentbit_with_s3_output_config/fluentbit.env:
--------------------------------------------------------------------------------
1 | AWS_ACCESS_KEY_ID=
2 | AWS_SECRET_ACCESS_KEY=
3 |
--------------------------------------------------------------------------------
/nodejs/node_jest_test/sum.js:
--------------------------------------------------------------------------------
1 | function sum(a, b) {
2 | return a + b;
3 | }
4 | module.exports = sum;
5 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/ruby/yaml_load_with_begin_rescue/invalid_yaml_file.yaml:
--------------------------------------------------------------------------------
1 | first_key: 'Giants'
2 | []second_key:'Dodgers'
3 |
--------------------------------------------------------------------------------
/terraform/aws/terraform_module_aws_rds/variables.tf:
--------------------------------------------------------------------------------
1 | variable "db_password" {
2 | type = string
3 | }
4 |
--------------------------------------------------------------------------------
/terraform/terraform_with_workspaces/variables.tf:
--------------------------------------------------------------------------------
1 | variable "environment" {
2 | type = "string"
3 | }
4 |
--------------------------------------------------------------------------------
/fluentd/basic_fluentd_use_centos_ansible/ansible/playbook.yml:
--------------------------------------------------------------------------------
1 | ---
2 | - hosts: all
3 | roles:
4 | - fluentd
--------------------------------------------------------------------------------
/nodejs/node_wait_on_for_port/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "dependencies": {
3 | "wait-on": "^6.0.0"
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/app/helpers/application_helper.rb:
--------------------------------------------------------------------------------
1 | module ApplicationHelper
2 | end
3 |
--------------------------------------------------------------------------------
/terraform/aws/terraform_target_group/versions.tf:
--------------------------------------------------------------------------------
1 |
2 | terraform {
3 | required_version = ">= 0.12"
4 | }
5 |
--------------------------------------------------------------------------------
/tomcat/webapp_with_routing/WebContent/META-INF/MANIFEST.MF:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | Class-Path:
3 |
4 |
--------------------------------------------------------------------------------
/docker/docker_exit_with_shell_entrypoint/nginx_shell_wrapper/entrypoint.sh:
--------------------------------------------------------------------------------
1 | #!bin/bash
2 | nginx -g 'daemon off;'
3 |
--------------------------------------------------------------------------------
/dot/basic_dot_digraph/basic_dot_digraph.dot:
--------------------------------------------------------------------------------
1 | digraph basic_digraph {
2 | a -> b;
3 | b -> c;
4 | b -> d;
5 | }
--------------------------------------------------------------------------------
/php/phpunit_simple_test/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "require": {
3 | "phpunit/phpunit": "^4.8"
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/php/vagrant_php_server/apache_php.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | apt-get -y install apache2
4 | apt-get -y install php5
5 |
--------------------------------------------------------------------------------
/terraform/aws/terraform_ecs_with_parameter_store/versions.tf:
--------------------------------------------------------------------------------
1 | terraform {
2 | required_version = ">= 0.12"
3 | }
4 |
--------------------------------------------------------------------------------
/terraform/terraform_aws_tags_with_local_variable/versions.tf:
--------------------------------------------------------------------------------
1 | terraform {
2 | required_version = "~>0.11"
3 | }
4 |
--------------------------------------------------------------------------------
/vagrant/basic_amazon_linux_2/shell_provision_script.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 |
3 | echo "Amazon Linux 2 Started"
4 |
--------------------------------------------------------------------------------
/aws/ecr/ecr_with_scan_and_sns_publish_and_filter/README.md:
--------------------------------------------------------------------------------
1 | # Overview
2 |
3 | Snippet is checked in but is untested.
4 |
--------------------------------------------------------------------------------
/gitlab/gitlab_runner_terraform/variables.tf:
--------------------------------------------------------------------------------
1 | variable "gitlab_runner_registration_token" {
2 | type = "string"
3 | }
4 |
--------------------------------------------------------------------------------
/logstash/logstash_installed_via_ansible/ansible/playbook.yml:
--------------------------------------------------------------------------------
1 | ---
2 | - hosts: all
3 | roles:
4 | - logstash_server
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/php-token-stream/tests/_fixture/issue19.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/phpunit/tests/_files/configuration.colors.true.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/vagrant/provisioner_salt/salt/salt-minion.conf:
--------------------------------------------------------------------------------
1 | # tell the salt-minion to look for local state files
2 | file_client: local
3 |
--------------------------------------------------------------------------------
/aws/codedeploy/codedeploy_agent_install_ubuntu_1510/aws_credentials:
--------------------------------------------------------------------------------
1 | [default]
2 | aws_access_key_id =
3 | aws_secret_access_key =
4 |
--------------------------------------------------------------------------------
/docker/docker_exit_with_shell_entrypoint/nginx_shell_wrapper_exec_bash/entrypoint.sh:
--------------------------------------------------------------------------------
1 | #!bin/bash
2 | exec nginx -g 'daemon off;'
3 |
--------------------------------------------------------------------------------
/go/hello_world/hello_world.go:
--------------------------------------------------------------------------------
1 | package main
2 |
3 | import "fmt"
4 |
5 | func main() {
6 | fmt.Printf("hello, world\n")
7 | }
8 |
--------------------------------------------------------------------------------
/nodejs/node_ssh_tunnel/vars.sh:
--------------------------------------------------------------------------------
1 | export DST_HOST=''
2 | export PRIVATE_KEY=''
3 | export SSH_HOST=''
4 | export SSH_USERNAME=''
5 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/composer.phar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cloudavail/snippets/HEAD/php/phpunit_simple_test/composer.phar
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/php-text-template/.gitignore:
--------------------------------------------------------------------------------
1 | /composer.lock
2 | /composer.phar
3 | /.idea
4 | /vendor
5 |
6 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/phpunit/tests/_files/CoveredFunction.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/php/simple_composer/vendor/mtdowling/jmespath.php/.gitignore:
--------------------------------------------------------------------------------
1 | vendor
2 | composer.lock
3 | phpunit.xml
4 | compiled
5 | artifacts/
6 |
--------------------------------------------------------------------------------
/python/reportlab/basic_report/hello.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cloudavail/snippets/HEAD/python/reportlab/basic_report/hello.pdf
--------------------------------------------------------------------------------
/solr/solr_cloud/README.md:
--------------------------------------------------------------------------------
1 | # Objective:
2 | Creates an Zookeeper (single node, not clustered) and two node Apache Solr Cluster.
3 |
--------------------------------------------------------------------------------
/solr/solr_cloud/zookeeper_instance.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | sudo apt-get -y update
4 | apt-get -y install zookeeper zookeeperd
5 |
--------------------------------------------------------------------------------
/terraform/aws/rds_with_readreplicas/variables.tf:
--------------------------------------------------------------------------------
1 | variable "read_replica_count" {
2 | type = number
3 | default = 1
4 | }
5 |
--------------------------------------------------------------------------------
/ansible/ansible_playbook_for_loop/ansible/initial_playbook.yml:
--------------------------------------------------------------------------------
1 | ---
2 | - hosts: all
3 | roles:
4 | - sample_vhost_configuration
5 |
--------------------------------------------------------------------------------
/nginx/ubuntu_nginx_php_env_variable/php_site/index.php:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/nodejs/basic_node_package/index.js:
--------------------------------------------------------------------------------
1 | exports.printMsg = function() {
2 | console.log("This is a message from the demo package");
3 | }
4 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/doctrine/instantiator/.gitignore:
--------------------------------------------------------------------------------
1 | phpunit.xml
2 | composer.lock
3 | build
4 | vendor
5 | coverage.clover
6 |
--------------------------------------------------------------------------------
/python/jinja2/jinja2_using_file_template/my_templates/city_info_template.txt:
--------------------------------------------------------------------------------
1 | The city {{city_name}} was founded in {{city_founding_date}}.
--------------------------------------------------------------------------------
/terraform/terraform_cloudwatch_metric_alarm/vars.tf:
--------------------------------------------------------------------------------
1 | variable "dimension_key_one" {
2 | default = "Name"
3 | type = "string"
4 | }
--------------------------------------------------------------------------------
/ansible/sample_playbook/README.md:
--------------------------------------------------------------------------------
1 | # Overview
2 | The `sample_playbook.yml` file describes the different components of an Ansible Playbook.
3 |
--------------------------------------------------------------------------------
/aws-security-viz/README.md:
--------------------------------------------------------------------------------
1 | # Overview
2 | Runs the AWS Security Visualization tool available at https://github.com/anaynayak/aws-security-viz.
--------------------------------------------------------------------------------
/aws/s3/s3_bucket_with_versioning/waffles.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cloudavail/snippets/HEAD/aws/s3/s3_bucket_with_versioning/waffles.jpg
--------------------------------------------------------------------------------
/gatsby/src/pages/index.js:
--------------------------------------------------------------------------------
1 | import React from "react"
2 |
3 | export default function Home() {
4 | return
Hello world!
5 | }
6 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/php-code-coverage/tests/_files/CoveredFunction.php:
--------------------------------------------------------------------------------
1 | ' . file_get_contents('php://input'));
4 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/phpunit/tests/_files/configuration.colors.invalid.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/sebastian/environment/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | /vendor
3 | /composer.lock
4 | /composer.phar
5 | /phpunit.xml
6 |
--------------------------------------------------------------------------------
/python/quality_standards/README.md:
--------------------------------------------------------------------------------
1 | # Overview
2 |
3 | This document seeks to provide quality standards for freelance scripting projects.
4 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "helloworld",
3 | "private": true,
4 | "dependencies": {}
5 | }
6 |
--------------------------------------------------------------------------------
/solr/solr_single_instance_apt/solr_single_instance.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | sudo apt-get -y update
4 | sudo apt-get -y install solr-tomcat
5 |
--------------------------------------------------------------------------------
/terraform/terraform_state_mv/mv_to_another_configuration/target_configuration/main.tf:
--------------------------------------------------------------------------------
1 | provider "aws" {
2 | region = "us-west-2"
3 | }
4 |
--------------------------------------------------------------------------------
/docker/docker_with_nginx_proxy_to_nodejs/entrypoint.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | nodejs /var/node/static/server.js &
3 | /usr/sbin/nginx
4 | tail -f /dev/null
--------------------------------------------------------------------------------
/maven/maven_basic_project/artifact/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst:
--------------------------------------------------------------------------------
1 | com/cloudavail/App.class
2 |
--------------------------------------------------------------------------------
/nginx/nginx_uwsgi_flask/uwsgi_config.ini:
--------------------------------------------------------------------------------
1 | [uwsgi]
2 | plugins = python
3 | uwsgi-socket = /tmp/uwsgi.sock
4 | wsgi-file = /vagrant/flask_app.py
5 |
--------------------------------------------------------------------------------
/nodejs/node_docker_cpu_measures/cpu_count.js:
--------------------------------------------------------------------------------
1 | var os = require('os'),
2 | cpuCount = os.cpus().length;
3 | console.log(`CPU Cores: ${cpuCount}`);
4 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/phpunit/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 | composer.json merge=ours
3 | src/Runner/Version.php merge=ours
4 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/phpunit/tests/_files/DummyException.php:
--------------------------------------------------------------------------------
1 | {
4 | expect(sum(1, 2)).toBe(3);
5 | });
6 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/php-code-coverage/tests/_files/source_without_ignore.php:
--------------------------------------------------------------------------------
1 | 7.0"
8 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/public/robots.txt:
--------------------------------------------------------------------------------
1 | # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
2 |
--------------------------------------------------------------------------------
/ruby/socket_get_hostname/socket_get_hostname.rb:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 |
3 | require 'socket'
4 |
5 | hostname = Socket.gethostname
6 |
7 | puts hostname
8 |
--------------------------------------------------------------------------------
/terraform/aws/terraform_ecs/templates/ecs_cluster_node.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash -
2 |
3 | cat > /etc/ecs/ecs.config <
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/aws/codedeploy/basic_codedeploy_install/files/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CodeDeploy is Working
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/crashplan/crashplan_client_ubuntu/README.md:
--------------------------------------------------------------------------------
1 | # Overview
2 |
3 | This is currently untested - but the install does complete and the CrashPlan application does run.
4 |
--------------------------------------------------------------------------------
/grunt/grunt_arguments/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "grunt_argument",
3 | "version": "0.0.1",
4 | "devDependencies": {
5 | "grunt": "^0.4.4"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/grunt/grunt_multitask/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "grunt_argument",
3 | "version": "0.0.1",
4 | "devDependencies": {
5 | "grunt": "^0.4.4"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/nginx/nginx_uwsgi_flask_with_passed_variable/config/development.cfg:
--------------------------------------------------------------------------------
1 | # note that configuration variables must be written in all uppercase
2 | DATABASE = 'localhost'
3 |
--------------------------------------------------------------------------------
/nginx/nginx_uwsgi_flask_with_passed_variable/config/production.cfg:
--------------------------------------------------------------------------------
1 | # note that configuration variables must be written in all uppercase
2 | DATABASE = '192.168.2.4'
3 |
--------------------------------------------------------------------------------
/nodejs/node_for_loop/README.md:
--------------------------------------------------------------------------------
1 | # Overview
2 |
3 | This snippet runs a nodejs script that reads and outputs a file.
4 |
5 | # Run
6 |
7 | `./node_read_file.js`
8 |
--------------------------------------------------------------------------------
/nodejs/node_read_file/README.md:
--------------------------------------------------------------------------------
1 | # Overview
2 |
3 | This snippet runs a nodejs script that reads and outputs a file.
4 |
5 | # Run
6 |
7 | `./node_read_file.js`
8 |
--------------------------------------------------------------------------------
/objective-c/hello-world.playground/Contents.swift:
--------------------------------------------------------------------------------
1 | //: Playground - noun: a place where people can play
2 |
3 | import Cocoa
4 |
5 | var str = "Hello, playground"
6 |
--------------------------------------------------------------------------------
/objective-c/hello-world.playground/contents.xcplayground:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/phpunit/tests/_files/EmptyTestCaseTest.php:
--------------------------------------------------------------------------------
1 |
2 | My FQDN Hostname is: <%= @fqdn %>
3 | My Variable is: <%= scope.lookupvar('my_variable') %>
--------------------------------------------------------------------------------
/python/django/basic_django_site/mysite/mysite/views.py:
--------------------------------------------------------------------------------
1 | from django.http import HttpResponse
2 |
3 | def hello(request):
4 | return HttpResponse("Hello world")
5 |
--------------------------------------------------------------------------------
/python/sphinx/basic_sphinx/conf.rst:
--------------------------------------------------------------------------------
1 | conf module
2 | ===========
3 |
4 | .. automodule:: conf
5 | :members:
6 | :undoc-members:
7 | :show-inheritance:
8 |
--------------------------------------------------------------------------------
/ruby/ruby_exception_handling/ruby_unhandled_exception.rb:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 |
3 | File.open("file_not_exist.txt", "r")
4 |
5 | puts "Ruby Program Continues"
6 |
--------------------------------------------------------------------------------
/ruby/ruby_on_rails_hello_world/helloworld/app/models/application_record.rb:
--------------------------------------------------------------------------------
1 | class ApplicationRecord < ActiveRecord::Base
2 | self.abstract_class = true
3 | end
4 |
--------------------------------------------------------------------------------
/serverless_framework/serverless_with_node_on_cron/.gitignore:
--------------------------------------------------------------------------------
1 | # package directories
2 | node_modules
3 | jspm_packages
4 |
5 | # Serverless directories
6 | .serverless
--------------------------------------------------------------------------------
/ssh/ssh_ProxyCommand/Images/ssh Proxy without -t.png.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cloudavail/snippets/HEAD/ssh/ssh_ProxyCommand/Images/ssh Proxy without -t.png.png
--------------------------------------------------------------------------------
/terraform/aws/terraform_ecs_service_task_and_elbv2/main.tf:
--------------------------------------------------------------------------------
1 | provider "aws" {
2 | region = "us-west-2"
3 | }
4 |
5 | data "aws_availability_zones" "available" {}
6 |
--------------------------------------------------------------------------------
/docker/docker_build_with_build_args/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM ubuntu:latest
2 | # ARG must be after "FROM"
3 | ARG BUILD_ARG
4 | RUN echo "The value of BUILD ARG is: $BUILD_ARG"
5 |
--------------------------------------------------------------------------------
/kubernetes/kubernetes_deploy/config/namespaces/dev.yaml:
--------------------------------------------------------------------------------
1 | {
2 | "kind": "Namespace",
3 | "apiVersion": "v1",
4 | "metadata": {
5 | "name": "dev"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/mysql/basic_docker_mysql_container_with_database/world.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cloudavail/snippets/HEAD/mysql/basic_docker_mysql_container_with_database/world.sql
--------------------------------------------------------------------------------
/objective-c/hello-world.playground/Results.playgrounddata:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cloudavail/snippets/HEAD/objective-c/hello-world.playground/Results.playgrounddata
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/phpunit/tests/Regression/684/Issue684Test.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/swift/functions/functions.playground/Results.playgrounddata:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cloudavail/snippets/HEAD/swift/functions/functions.playground/Results.playgrounddata
--------------------------------------------------------------------------------
/terraform/terraform_with_environments/vpc_modules/README.md:
--------------------------------------------------------------------------------
1 | # Build VPC in us-west-2 and us-east-1, with public/private/NAT subnets across all available AZs
2 |
3 | 1.
--------------------------------------------------------------------------------
/docker/docker_exit_with_shell_entrypoint/nginx/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM nginx:latest
2 | # needed to investigate PID of running process
3 | RUN apt -y update ; apt -y install procps
4 |
--------------------------------------------------------------------------------
/grunt/grunt_environment_variables/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "grunt_argument",
3 | "version": "0.0.1",
4 | "devDependencies": {
5 | "grunt": "^0.4.4"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/heroku/heroku_python_basic_app/requirements.txt:
--------------------------------------------------------------------------------
1 | Flask==1.0
2 | Jinja2==2.11.3
3 | MarkupSafe==0.18
4 | Werkzeug==2.2.3
5 | gunicorn==18.0
6 | itsdangerous==0.23
7 | wsgiref==0.1.2
--------------------------------------------------------------------------------
/maven/maven_basic_project/artifact/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst:
--------------------------------------------------------------------------------
1 | /vagrant/artifact/src/main/java/com/cloudavail/App.java
2 |
--------------------------------------------------------------------------------
/nodejs/node_asynchronous_options/1200px-Llama_lying_down.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cloudavail/snippets/HEAD/nodejs/node_asynchronous_options/1200px-Llama_lying_down.jpg
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/phpunit-mock-objects/tests/_fixture/AnInterface.php:
--------------------------------------------------------------------------------
1 | /etc/ecs/ecs.config <
2 |
3 |
4 |
5 | My First Heading
6 | My first paragraph.
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/aws/elasticbeanstalk/elasticbeanstalk_with_cron/requirements.txt:
--------------------------------------------------------------------------------
1 | Click==7.0
2 | Flask==1.0.2
3 | itsdangerous==1.1.0
4 | Jinja2==2.11.3
5 | MarkupSafe==1.1.0
6 | Werkzeug==2.2.3
7 |
--------------------------------------------------------------------------------
/docker/supervisor_test/supervisord.conf:
--------------------------------------------------------------------------------
1 | [program:nginx]
2 | command=nginx
3 |
4 | [program:nodeserver]
5 | command=node /provision/static/server.js
6 |
7 |
8 | [supervisord]
9 |
--------------------------------------------------------------------------------
/gradle/gradle_tar_directory/root_test_file.txt:
--------------------------------------------------------------------------------
1 | // objective: to exit and throw error if file does not exist
2 | version = 0.1.0
3 |
4 | task fileExists {
5 | assert file
6 | }
7 |
--------------------------------------------------------------------------------
/maven/maven_basic_project/install_maven.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | apt -y update
4 |
5 | apt -y install maven
6 |
7 | # used for compiling Java software
8 | apt -y install default-jdk
--------------------------------------------------------------------------------
/maven/maven_bintray_deploy/install_maven.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | apt -y update
4 |
5 | apt -y install maven
6 |
7 | # used for compiling Java software
8 | apt -y install default-jdk
--------------------------------------------------------------------------------
/packer/windows_with_nodejs_and_iis/iisstart.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 | Hello World!
4 |
5 |
6 | Hello World!
7 |
8 |
9 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/phpunit/build/bin/phpab:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cloudavail/snippets/HEAD/php/phpunit_simple_test/vendor/phpunit/phpunit/build/bin/phpab
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/phpunit/tests/Regression/GitHub/1216/bootstrap1216.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/ruby/basic_rails_asset_pipeline/bin/bundle:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
3 | load Gem.bin_path('bundler', 'bundle')
4 |
--------------------------------------------------------------------------------
/ruby/profiling/memory_profiler/hello.rb:
--------------------------------------------------------------------------------
1 | # usage:
2 | # ruby-memory-profiler
3 |
4 | # for a full list of options:
5 | # ruby-memory-profiler -h
6 | puts "hello world!"
--------------------------------------------------------------------------------
/swift/basic_class/basic_class.playground/Results.playgrounddata:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cloudavail/snippets/HEAD/swift/basic_class/basic_class.playground/Results.playgrounddata
--------------------------------------------------------------------------------
/terraform/aws/terraform_ecs_multicontainer_task/templates/ecs_cluster_node.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash -
2 |
3 | cat > /etc/ecs/ecs.config < /etc/ecs/ecs.config < /etc/ecs/ecs.config < /etc/ecs/ecs.config <> /var/log/eb_crons_test_file.log
3 |
--------------------------------------------------------------------------------
/envkey/node_envkey_app/envkey.js:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 | require('envkey')
3 | // envkey, if loaded properly, will modify "env" to include values from envkey
4 | console.log(process.env)
5 |
--------------------------------------------------------------------------------
/java/springwebapp/src/main/webapp/WEB-INF/helloWorld.jsp:
--------------------------------------------------------------------------------
1 |
2 |
3 | Spring 4.0.2 MVC web service
4 |
5 | Name : ${name}
6 |
7 |
8 |
--------------------------------------------------------------------------------
/kubernetes/kubernetes_deploy/config/deploy/dev/nginx_config_map.yaml:
--------------------------------------------------------------------------------
1 | kind: ConfigMap
2 | apiVersion: v1
3 | metadata:
4 | name: envvariables-configmap
5 | data:
6 | environment: dev
7 |
--------------------------------------------------------------------------------
/nodejs/node_variable_interpolation_from_envvar/node_variable_interpolation_from_envvar.js:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 | //name = process.env.NAME
3 | console.log(`Hello, ${process.env.NAME}`);
4 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/php-file-iterator/.gitignore:
--------------------------------------------------------------------------------
1 | build/api
2 | build/code-browser
3 | build/coverage
4 | build/logs
5 | build/pdepend
6 | cache.properties
7 | phpunit.xml
8 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/wsdl_method.tpl.dist:
--------------------------------------------------------------------------------
1 |
2 | public function {method_name}({arguments})
3 | {
4 | }
5 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/phpunit-mock-objects/tests/_fixture/AnotherInterface.php:
--------------------------------------------------------------------------------
1 | /etc/ecs/ecs.config <
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/phpunit/tests/_files/ConcreteTest.php:
--------------------------------------------------------------------------------
1 |
2 | type file
3 | path /var/log/td-agent/all_fluentd_events.out
4 |
5 |
--------------------------------------------------------------------------------
/maven/maven_basic_project/artifact/target/classes/com/cloudavail/App.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cloudavail/snippets/HEAD/maven/maven_basic_project/artifact/target/classes/com/cloudavail/App.class
--------------------------------------------------------------------------------
/nmap/python-nmap-scanner/README.md:
--------------------------------------------------------------------------------
1 | # Objective:
2 |
3 | The objective of this snippet is to utilize the [python-nmap](https://xael.org/pages/python-nmap-en.html) tool to generate a list of systems.
4 |
--------------------------------------------------------------------------------
/nodejs/node_asynchronous_options/2560px-Lama_glama_Laguna_Colorada_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cloudavail/snippets/HEAD/nodejs/node_asynchronous_options/2560px-Lama_glama_Laguna_Colorada_2.jpg
--------------------------------------------------------------------------------
/nodejs/node_read_file/node_read_file_sync.js:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 |
3 | const fs = require('fs')
4 |
5 | var data = fs.readFileSync('./warriors2019.txt');
6 |
7 | console.log(data.toString());
8 |
--------------------------------------------------------------------------------
/php/phpunit_simple_test/vendor/phpunit/php-token-stream/tests/_fixture/issue30.php:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/swift/functions/functions.playground/timeline.xctimeline:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/terraform/terraform_mysql_user_provision/main.tf:
--------------------------------------------------------------------------------
1 | # Configure the MySQL provider
2 | provider "mysql" {
3 | endpoint = "127.0.0.1:3306"
4 | username = "root"
5 | password = "my_password"
6 | }
7 |
--------------------------------------------------------------------------------
/vagrant/shell_provisioner_script_with_env_vars/shell_provisioner_script_with_env_vars.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash -
2 |
3 | cat > /var/tmp/output_env_vars.txt <
2 |
3 | Hello World!
4 |
5 |
6 | Hello World!'; ?>
7 |
8 |