├── .github └── workflows │ └── update.yml ├── .gitignore ├── .pre-commit-config.yaml ├── README.md ├── bin ├── playlist-json └── update-playlist ├── sample_code ├── ep001 │ ├── README.md │ ├── rev01 │ │ └── hello.py │ ├── rev02 │ │ └── hello.py │ ├── rev03 │ │ └── hello.py │ ├── rev04 │ │ └── hello.py │ ├── rev05 │ │ └── hello.py │ ├── rev06 │ │ ├── hello.py │ │ └── hello_test.py │ ├── rev07 │ │ ├── hello.py │ │ └── hello_test.py │ ├── rev08 │ │ ├── hello.py │ │ └── hello_test.py │ ├── rev09 │ │ ├── hello.py │ │ └── hello_test.py │ ├── rev10 │ │ ├── hello.py │ │ └── hello_test.py │ └── rev11 │ │ ├── hello.py │ │ └── hello_test.py ├── ep002 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ └── rev07 │ │ └── t.py ├── ep003 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep004 │ └── README.md ├── ep005 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ └── rev06 │ │ └── t.py ├── ep006 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep007 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep008 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ ├── rev07 │ │ └── t.py │ └── rev08 │ │ └── t.py ├── ep009 │ └── README.md ├── ep010 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep011 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ ├── rev07 │ │ └── t.py │ ├── rev08 │ │ └── t.py │ └── rev09 │ │ └── t.py ├── ep012 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ ├── rev07 │ │ └── t.py │ └── rev08 │ │ └── t.py ├── ep013 │ └── README.md ├── ep014 │ └── README.md ├── ep015 │ ├── README.md │ └── rev01 │ │ └── __main__.py ├── ep016 │ └── README.md ├── ep017 │ ├── README.md │ └── rev01 │ │ ├── setup.py │ │ ├── t.c │ │ └── t.py ├── ep018 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ └── rev06 │ │ ├── t.py │ │ └── test.py ├── ep019 │ └── README.md ├── ep020 │ └── README.md ├── ep021 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ ├── rev07 │ │ └── t.py │ ├── rev08 │ │ └── t.py │ ├── rev09 │ │ └── t.py │ ├── rev10 │ │ └── t.py │ ├── rev11 │ │ └── t.py │ └── rev12 │ │ └── t.py ├── ep022 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep023 │ └── README.md ├── ep024 │ └── README.md ├── ep025 │ ├── README.md │ ├── rev01 │ │ ├── flake8_named_arguments.py │ │ └── tests │ │ │ └── flake8_named_arguments_test.py │ ├── rev02 │ │ ├── flake8_named_arguments.py │ │ └── tests │ │ │ └── flake8_named_arguments_test.py │ ├── rev03 │ │ ├── flake8_named_arguments.py │ │ └── tests │ │ │ └── flake8_named_arguments_test.py │ ├── setup.cfg │ └── setup.py ├── ep026 │ ├── README.md │ ├── check.py │ └── t.py ├── ep027 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep028 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ ├── rev07 │ │ └── t.py │ ├── rev08 │ │ └── t.py │ └── rev09 │ │ └── t.py ├── ep029 │ └── README.md ├── ep030 │ ├── README.md │ ├── rev01 │ │ └── Dockerfile │ ├── rev02 │ │ ├── Dockerfile │ │ └── t.sh │ └── rev03 │ │ └── t.sh ├── ep031 │ └── README.md ├── ep032 │ ├── README.md │ ├── rev01 │ │ └── Dockerfile │ └── rev02 │ │ └── Dockerfile ├── ep033 │ ├── README.md │ ├── rev01 │ │ └── t.sh │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ └── rev05 │ │ └── t.py ├── ep034 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ └── rev07 │ │ └── t.py ├── ep035 │ ├── README.md │ └── t.py ├── ep036 │ └── README.md ├── ep037 │ └── README.md ├── ep038 │ ├── .github │ │ └── workflows │ │ │ ├── main.yml │ │ │ └── pre-commit.yml │ └── README.md ├── ep039 │ └── README.md ├── ep040 │ └── README.md ├── ep041 │ ├── README.md │ ├── rev01 │ │ ├── astpretty.py │ │ └── t.py │ ├── rev02 │ │ └── astpretty.py │ ├── rev03 │ │ └── astpretty.py │ └── rev04 │ │ ├── astpretty.py │ │ └── setup.cfg ├── ep042 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep043 │ ├── README.md │ └── tox.ini ├── ep044 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ ├── rev07 │ │ └── t.py │ └── rev08 │ │ └── t.py ├── ep045 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep046 │ └── README.md ├── ep047 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep048 │ ├── README.md │ └── setup.cfg ├── ep049 │ └── README.md ├── ep050 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ └── rev05 │ │ └── t.py ├── ep051 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep052 │ └── README.md ├── ep053 │ ├── README.md │ ├── rev01 │ │ ├── app.py │ │ └── index.html │ ├── rev02 │ │ └── index.html │ ├── rev03 │ │ └── index.html │ ├── rev04 │ │ └── index.html │ └── rev05 │ │ ├── app.py │ │ ├── config.py │ │ └── index.html ├── ep054 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep055 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ └── rev07 │ │ └── t.py ├── ep056 │ └── README.md ├── ep057 │ ├── README.md │ ├── rev01 │ │ ├── hello_world │ │ │ ├── __init__.py │ │ │ └── main.py │ │ ├── setup.py │ │ ├── testing │ │ │ ├── __init__.py │ │ │ └── helper.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_foo.py │ └── rev02 │ │ ├── LICENSE │ │ ├── hello_world │ │ ├── __init__.py │ │ └── main.py │ │ ├── setup.cfg │ │ ├── setup.py │ │ ├── testing │ │ ├── __init__.py │ │ └── helper.py │ │ └── tests │ │ ├── __init__.py │ │ └── test_foo.py ├── ep058 │ └── README.md ├── ep059 │ └── README.md ├── ep060 │ └── README.md ├── ep061 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ ├── pkg │ │ ├── __init__.py │ │ └── subpkg.py │ │ ├── t.py │ │ └── t2.py ├── ep062 │ └── README.md ├── ep063 │ ├── README.md │ ├── rev01 │ │ └── t.sh │ ├── rev02 │ │ └── t.sh │ ├── rev03 │ │ └── t.sh │ ├── rev04 │ │ └── t.sh │ ├── rev05 │ │ └── t.sh │ ├── rev06 │ │ └── t.sh │ └── rev07 │ │ └── t.sh ├── ep064 │ └── README.md ├── ep065 │ ├── README.md │ └── rev01 │ │ └── t.sh ├── ep066 │ └── README.md ├── ep067 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep068 │ └── README.md ├── ep069 │ ├── README.md │ ├── rev01 │ │ └── startup.py │ ├── rev02 │ │ └── startup.py │ └── rev03 │ │ └── startup.py ├── ep070 │ └── README.md ├── ep071 │ ├── README.md │ ├── rev01 │ │ ├── mypkg │ │ │ ├── __init__.py │ │ │ └── main.py │ │ └── setup.py │ ├── rev02 │ │ ├── MANIFEST.in │ │ ├── mypkg │ │ │ ├── __init__.py │ │ │ ├── foo.json │ │ │ └── main.py │ │ └── setup.py │ ├── rev03 │ │ ├── MANIFEST.in │ │ ├── mypkg │ │ │ ├── __init__.py │ │ │ ├── foo.json │ │ │ └── main.py │ │ └── setup.py │ ├── rev04 │ │ ├── mypkg │ │ │ ├── __init__.py │ │ │ ├── foo.json │ │ │ └── main.py │ │ ├── nope.in │ │ └── setup.py │ ├── rev05 │ │ ├── MANIFEST.in │ │ ├── mypkg │ │ │ ├── __init__.py │ │ │ ├── foo.json │ │ │ └── main.py │ │ └── setup.py │ ├── rev06 │ │ ├── mypkg │ │ │ ├── __init__.py │ │ │ ├── foo.json │ │ │ └── main.py │ │ └── setup.py │ └── rev07 │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── mypkg │ │ ├── __init__.py │ │ ├── foo.json │ │ ├── main.py │ │ └── pkg1 │ │ │ ├── __init__.py │ │ │ └── t.json │ │ └── setup.py ├── ep072 │ └── README.md ├── ep073 │ └── README.md ├── ep074 │ ├── README.md │ ├── rev01 │ │ └── setup.py │ ├── rev02 │ │ └── setup.py │ └── rev03 │ │ └── setup.py ├── ep075 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ └── rev06 │ │ └── t.py ├── ep076 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ └── rev05 │ │ └── t.py ├── ep077 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep078 │ └── README.md ├── ep079 │ └── README.md ├── ep080 │ └── README.md ├── ep081 │ ├── README.md │ ├── rev01 │ │ └── .gitignore.example │ ├── rev02 │ │ └── local │ │ │ └── .gitignore.example │ └── rev03 │ │ └── local │ │ └── .gitignore.example ├── ep082 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep083 │ └── README.md ├── ep084 │ └── README.md ├── ep085 │ └── README.md ├── ep086 │ └── README.md ├── ep087 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ └── rev05 │ │ └── t.py ├── ep088 │ └── README.md ├── ep089 │ ├── README.md │ └── rev01 │ │ └── a ├── ep090 │ ├── README.md │ ├── rev01 │ │ ├── .pre-commit-config.yaml │ │ └── t.py │ ├── rev02 │ │ └── .pre-commit-config.yaml │ ├── rev03 │ │ └── .pre-commit-config.yaml │ ├── rev04 │ │ └── .pre-commit-config.yaml │ ├── rev05 │ │ └── .pre-commit-config.yaml │ └── rev06 │ │ └── .pre-commit-config.yaml ├── ep091 │ └── README.md ├── ep092 │ └── README.md ├── ep093 │ ├── README.md │ ├── rev01 │ │ ├── abspath.py │ │ ├── decorator_expr.py │ │ ├── line-buffered.py │ │ └── tabsize.py │ └── rev02 │ │ └── abspath.py ├── ep094 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ └── rev06 │ │ └── t2.py ├── ep095 │ └── README.md ├── ep096 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep097 │ └── README.md ├── ep098 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep099 │ └── README.md ├── ep100 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ └── rev05 │ │ └── t.py ├── ep101 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep102 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep103 │ └── README.md ├── ep104 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ ├── rev07 │ │ └── t.py │ └── rev08 │ │ └── t.py ├── ep105 │ └── README.md ├── ep106 │ └── README.md ├── ep107 │ ├── README.md │ └── rev01 │ │ └── __main__.py ├── ep108 │ └── README.md ├── ep109 │ ├── README.md │ ├── rev01 │ │ └── main.py │ ├── rev02 │ │ └── main.py │ ├── rev03 │ │ ├── inline.py │ │ └── module_scoped.py │ └── rev04 │ │ ├── inline.py │ │ ├── inline_test.py │ │ ├── module_scoped.py │ │ └── module_scoped_test.py ├── ep110 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ └── rev06 │ │ └── t.py ├── ep111 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep112 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep113 │ └── README.md ├── ep114 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep115 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep116 │ └── README.md ├── ep117 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep118 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep119 │ └── README.md ├── ep120 │ └── README.md ├── ep121 │ └── README.md ├── ep122 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep123 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep124 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep125 │ ├── README.md │ └── rev01 │ │ └── t.c ├── ep126 │ └── README.md ├── ep127 │ ├── README.md │ └── rev01 │ │ └── t ├── ep128 │ ├── README.md │ ├── rev01 │ │ └── hello-world │ │ │ ├── hello_world.py │ │ │ └── setup.py │ ├── rev02 │ │ └── hello-world │ │ │ ├── hello_world.py │ │ │ └── setup.py │ └── rev03 │ │ ├── hello-world-json │ │ ├── hello_world_json.py │ │ └── setup.py │ │ └── hello-world │ │ ├── hello_world.py │ │ └── setup.py ├── ep129 │ └── README.md ├── ep130 │ └── README.md ├── ep131 │ └── README.md ├── ep132 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep133 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep134 │ ├── README.md │ ├── rev01 │ │ ├── _hello.c │ │ └── setup.py │ ├── rev02 │ │ ├── _hello.c │ │ └── setup.py │ ├── rev03 │ │ ├── _hello.c │ │ └── setup.py │ ├── rev04 │ │ ├── _hello.c │ │ └── setup.py │ └── rev05 │ │ ├── _hello.c │ │ └── setup.py ├── ep135 │ ├── README.md │ ├── rev01 │ │ ├── _hello_world.c │ │ └── setup.py │ ├── rev02 │ │ ├── _hello_world.c │ │ └── setup.py │ ├── rev03 │ │ ├── _hello_world.c │ │ └── setup.py │ ├── rev04 │ │ ├── _hello_world.c │ │ └── setup.py │ ├── rev05 │ │ ├── _hello_world.c │ │ └── setup.py │ └── rev06 │ │ ├── _hello_world.c │ │ └── setup.py ├── ep136 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep137 │ └── README.md ├── ep138 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ └── rev06 │ │ └── t.py ├── ep139 │ ├── README.md │ ├── rev01 │ │ └── t2.py │ ├── rev02 │ │ └── t2.py │ └── rev03 │ │ └── t2.py ├── ep140 │ ├── README.md │ ├── rev01 │ │ └── t3.py │ ├── rev02 │ │ └── t3.py │ ├── rev03 │ │ └── t3.py │ ├── rev04 │ │ └── t3.py │ └── rev05 │ │ └── t3.py ├── ep141 │ └── README.md ├── ep142 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep143 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep144 │ └── README.md ├── ep145 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep146 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep147 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ ├── setup.cfg │ │ └── t.py ├── ep148 │ └── README.md ├── ep149 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep150 │ └── README.md ├── ep151 │ └── README.md ├── ep152 │ ├── README.md │ └── rev01 │ │ ├── t.sass │ │ └── t.scss ├── ep153 │ └── README.md ├── ep154 │ └── README.md ├── ep155 │ ├── README.md │ └── rev01 │ │ ├── build_uuidcffi.py │ │ ├── setup.py │ │ └── uuidcffi.py ├── ep156 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep157 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep158 │ ├── README.md │ └── rev01 │ │ └── Dockerfile ├── ep159 │ ├── README.md │ ├── rev01 │ │ └── generate_config.yaml │ └── rev02 │ │ └── generate_config.yaml ├── ep160 │ └── README.md ├── ep161 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ └── rev05 │ │ └── t.py ├── ep162 │ └── README.md ├── ep163 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep164 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep165 │ └── README.md ├── ep166 │ └── README.md ├── ep167 │ └── README.md ├── ep168 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep169 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ └── rev06 │ │ └── t.py ├── ep170 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep171 │ └── README.md ├── ep172 │ └── README.md ├── ep173 │ └── README.md ├── ep174 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep175 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep176 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ ├── rev07 │ │ └── t.py │ ├── rev08 │ │ └── t.py │ ├── rev09 │ │ └── t.py │ └── rev10 │ │ └── t.py ├── ep177 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep178 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep179 │ ├── README.md │ └── rev01 │ │ └── .gitconfig.example ├── ep180 │ ├── README.md │ └── rev01 │ │ ├── flake8_typing_imports.py │ │ └── t.py ├── ep181 │ ├── README.md │ ├── rev01 │ │ └── docker_hostenv.py │ ├── rev02 │ │ └── docker_hostenv.py │ ├── rev03 │ │ └── docker_hostenv.py │ ├── rev04 │ │ └── docker_hostenv.py │ ├── rev05 │ │ └── docker_hostenv.py │ └── rev06 │ │ └── docker_hostenv.py ├── ep182 │ └── README.md ├── ep183 │ └── README.md ├── ep184 │ └── README.md ├── ep185 │ └── README.md ├── ep186 │ └── README.md ├── ep187 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep188 │ ├── README.md │ ├── rev01 │ │ ├── foo.py │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ ├── rev07 │ │ └── t.py │ └── rev08 │ │ └── t.py ├── ep189 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep190 │ └── README.md ├── ep191 │ └── README.md ├── ep192 │ └── README.md ├── ep193 │ └── README.md ├── ep194 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep195 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep196 │ └── README.md ├── ep197 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ ├── rev07 │ │ └── t.py │ ├── rev08 │ │ └── t.py │ ├── rev09 │ │ └── t.py │ ├── rev10 │ │ └── t.py │ ├── rev11 │ │ └── t.py │ ├── rev12 │ │ └── t.py │ └── rev13 │ │ └── t.py ├── ep198 │ ├── README.md │ └── rev01 │ │ └── Dockerfile ├── ep199 │ ├── README.md │ └── rev01 │ │ └── ami.json ├── ep200 │ └── README.md ├── ep201 │ ├── README.md │ ├── rev01 │ │ └── t.sh │ ├── rev02 │ │ └── t.sh │ ├── rev03 │ │ └── t.sh │ ├── rev04 │ │ └── t.sh │ ├── rev05 │ │ └── t.sh │ ├── rev06 │ │ └── t.sh │ ├── rev07 │ │ └── t.sh │ ├── rev08 │ │ └── t.sh │ ├── rev09 │ │ └── t.sh │ ├── rev10 │ │ └── t.sh │ ├── rev11 │ │ └── t.sh │ └── rev12 │ │ └── t.sh ├── ep202 │ └── README.md ├── ep203 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep204 │ └── README.md ├── ep205 │ └── README.md ├── ep206 │ └── README.md ├── ep207 │ └── README.md ├── ep208 │ ├── README.md │ ├── rev01 │ │ ├── sample_c_extension.c │ │ └── setup.py │ └── rev02 │ │ ├── sample_c_extension.c │ │ ├── setup.py │ │ ├── t.py │ │ └── test.py ├── ep209 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ └── rev05 │ │ └── t.py ├── ep210 │ ├── README.md │ ├── rev01 │ │ ├── Makefile │ │ └── t.sh │ ├── rev02 │ │ └── t.sh │ ├── rev03 │ │ └── t.sh │ └── rev04 │ │ └── t.sh ├── ep211 │ └── README.md ├── ep212 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep213 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep214 │ ├── README.md │ ├── rev01 │ │ ├── a.py │ │ ├── b.py │ │ └── t.py │ └── rev02 │ │ ├── a.py │ │ ├── b.py │ │ └── t.py ├── ep215 │ └── README.md ├── ep216 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep217 │ └── README.md ├── ep218 │ └── README.md ├── ep219 │ └── README.md ├── ep220 │ └── README.md ├── ep221 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep222 │ └── README.md ├── ep223 │ └── README.md ├── ep224 │ └── README.md ├── ep225 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep226 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ └── rev05 │ │ └── t.py ├── ep227 │ ├── README.md │ └── rev01 │ │ └── t.sh ├── ep228 │ └── README.md ├── ep229 │ └── README.md ├── ep230 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep231 │ └── README.md ├── ep232 │ └── README.md ├── ep233 │ └── README.md ├── ep234 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep235 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep236 │ └── README.md ├── ep237 │ ├── README.md │ └── rev01 │ │ └── .pdbrc ├── ep238 │ ├── README.md │ ├── rev01 │ │ └── t │ └── rev02 │ │ └── t ├── ep239 │ └── README.md ├── ep240 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ └── rev06 │ │ └── t.py ├── ep241 │ └── README.md ├── ep242 │ └── README.md ├── ep243 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep244 │ ├── README.md │ └── rev01 │ │ ├── .gitignore.example │ │ ├── aws_provider.tf │ │ └── instance.tf ├── ep245 │ └── README.md ├── ep246 │ ├── README.md │ ├── rev01 │ │ ├── t.py │ │ └── t_test.py │ ├── rev02 │ │ ├── t.py │ │ └── t_test.py │ ├── rev03 │ │ ├── t.py │ │ └── t_test.py │ ├── rev04 │ │ ├── t.py │ │ └── t_test.py │ └── rev05 │ │ ├── t.py │ │ └── t_test.py ├── ep247 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ ├── t.py │ │ └── t2.py ├── ep248 │ ├── README.md │ └── rev01 │ │ └── stubs │ │ └── mistune │ │ ├── __init__.pyi │ │ ├── markdown.pyi │ │ └── renderers.pyi ├── ep249 │ └── README.md ├── ep250 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ ├── rev07 │ │ └── t.py │ ├── rev08 │ │ └── t.py │ ├── rev09 │ │ └── t.py │ ├── rev10 │ │ └── t.py │ ├── rev11 │ │ └── t.py │ ├── rev12 │ │ └── t.py │ ├── rev13 │ │ └── t.py │ ├── rev14 │ │ └── t.py │ ├── rev15 │ │ └── t.py │ ├── rev16 │ │ └── t.py │ ├── rev17 │ │ └── t.py │ ├── rev18 │ │ └── t.py │ ├── rev19 │ │ └── t.py │ ├── rev20 │ │ └── t.py │ ├── rev21 │ │ └── t.py │ └── rev22 │ │ └── t.py ├── ep251 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ └── rev06 │ │ └── t.py ├── ep252 │ ├── README.md │ ├── rev01 │ │ ├── all_repos │ │ │ └── py.typed │ │ ├── setup.cfg │ │ └── setup.py │ ├── rev02 │ │ ├── all_repos │ │ │ ├── py.typed │ │ │ └── util.pyi │ │ └── setup.cfg │ └── rev03 │ │ ├── all_repos-stubs │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ └── all_repos │ │ │ └── util.pyi │ │ ├── setup.cfg │ │ └── setup.py ├── ep253 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep254 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep255 │ └── README.md ├── ep256 │ ├── README.md │ ├── rev01 │ │ └── Dockerfile │ ├── rev02 │ │ └── Dockerfile │ ├── rev03 │ │ └── Dockerfile │ └── rev04 │ │ └── Dockerfile ├── ep257 │ └── README.md ├── ep258 │ ├── README.md │ └── rev01 │ │ └── t.sh ├── ep259 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ └── rev06 │ │ └── t.py ├── ep260 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ └── rev05 │ │ └── t.py ├── ep261 │ └── README.md ├── ep262 │ └── README.md ├── ep263 │ └── README.md ├── ep264 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep265 │ └── README.md ├── ep266 │ └── README.md ├── ep267 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep268 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep269 │ └── README.md ├── ep270 │ ├── README.md │ ├── rev01 │ │ └── ME.pth │ ├── rev02 │ │ └── ME.pth │ ├── rev03 │ │ ├── ME.pth │ │ ├── t.py │ │ └── y │ │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep271 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ └── rev06 │ │ └── t.py ├── ep272 │ └── README.md ├── ep273 │ └── README.md ├── ep274 │ └── README.md ├── ep275 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep276 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep277 │ └── README.md ├── ep278 │ └── README.md ├── ep279 │ └── README.md ├── ep280 │ └── README.md ├── ep281 │ └── README.md ├── ep282 │ └── README.md ├── ep283 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep284 │ ├── README.md │ └── rev01 │ │ ├── t.py │ │ └── t.sh ├── ep285 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep286 │ ├── README.md │ ├── rev01 │ │ ├── f1 │ │ └── f2 │ └── rev02 │ │ ├── f1 │ │ └── f2 ├── ep287 │ └── README.md ├── ep288 │ ├── README.md │ ├── rev01 │ │ └── mypkg │ │ │ ├── __init__.py │ │ │ └── _impl.py │ └── rev02 │ │ └── mypkg │ │ ├── __init__.py │ │ └── _impl.py ├── ep289 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ └── rev07 │ │ └── t.py ├── ep290 │ └── README.md ├── ep291 │ └── README.md ├── ep292 │ └── README.md ├── ep293 │ ├── README.md │ └── rev01 │ │ ├── Dockerfile │ │ ├── Dockerfile.debian │ │ ├── Dockerfile.ensurepip │ │ ├── Dockerfile.get-pip │ │ └── Dockerfile.venv ├── ep294 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ └── rev06 │ │ └── t.py ├── ep295 │ └── README.md ├── ep296 │ ├── README.md │ ├── rev01 │ │ ├── Dockerfile │ │ └── app.py │ └── rev02 │ │ └── app.py ├── ep297 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ └── rev05 │ │ └── t.py ├── ep298 │ ├── README.md │ ├── rev01 │ │ └── a │ │ │ ├── __init__.py │ │ │ └── b │ │ │ ├── __init__.py │ │ │ └── c │ │ │ ├── __init__.py │ │ │ ├── bar.py │ │ │ └── foo.py │ ├── rev02 │ │ └── a │ │ │ ├── __init__.py │ │ │ └── b │ │ │ ├── __init__.py │ │ │ └── c │ │ │ ├── __init__.py │ │ │ ├── bar.py │ │ │ └── foo.py │ └── rev03 │ │ └── a │ │ ├── __init__.py │ │ ├── a.py │ │ └── b │ │ ├── __init__.py │ │ ├── b.py │ │ └── c │ │ ├── __init__.py │ │ ├── bar.py │ │ └── foo.py ├── ep299 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep300 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep301 │ └── README.md ├── ep302 │ └── README.md ├── ep303 │ └── README.md ├── ep304 │ ├── README.md │ └── rev01 │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ └── app.py ├── ep305 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep306 │ └── README.md ├── ep307 │ ├── README.md │ ├── rev01 │ │ └── t │ ├── rev02 │ │ └── t │ └── rev03 │ │ └── t ├── ep308 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ ├── setup.cfg │ │ └── t.py │ └── rev05 │ │ ├── setup.cfg │ │ └── t.py ├── ep309 │ ├── README.md │ └── rev01 │ │ ├── entry │ │ └── foo-bar.py ├── ep310 │ ├── README.md │ └── rev01 │ │ └── input ├── ep311 │ └── README.md ├── ep312 │ ├── README.md │ ├── rev01 │ │ ├── a.py │ │ └── b.py │ ├── rev02 │ │ ├── a.py │ │ └── b.py │ ├── rev03 │ │ ├── a.py │ │ └── b.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ └── rev07 │ │ └── t.py ├── ep313 │ ├── README.md │ └── rev01 │ │ ├── t.py │ │ └── t2.py ├── ep314 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ ├── plugin.py │ │ └── setup.cfg ├── ep315 │ └── README.md ├── ep316 │ └── README.md ├── ep317 │ ├── README.md │ ├── rev01 │ │ ├── t.py │ │ └── tox.ini │ ├── rev02 │ │ ├── pytest.ini │ │ ├── t.py │ │ └── tox.ini │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep318 │ └── README.md ├── ep319 │ └── README.md ├── ep320 │ ├── README.md │ ├── rev01 │ │ ├── app.py │ │ └── mod.py │ ├── rev02 │ │ ├── app.py │ │ └── mod.py │ ├── rev03 │ │ ├── app.py │ │ └── mod.py │ ├── rev04 │ │ ├── app.py │ │ └── mod.py │ └── rev05 │ │ ├── app.py │ │ └── mod.py ├── ep321 │ └── README.md ├── ep322 │ └── README.md ├── ep323 │ └── README.md ├── ep324 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ ├── rev07 │ │ └── t.py │ ├── rev08 │ │ └── t.py │ ├── rev09 │ │ └── t.py │ ├── rev10 │ │ └── t.py │ ├── rev11 │ │ └── t.py │ └── rev12 │ │ └── t.py ├── ep325 │ └── README.md ├── ep326 │ └── README.md ├── ep327 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep328 │ └── README.md ├── ep329 │ ├── README.md │ ├── rev01 │ │ └── .env │ └── rev02 │ │ └── .env ├── ep330 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep331 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep332 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep333 │ └── README.md ├── ep334 │ └── README.md ├── ep335 │ └── README.md ├── ep336 │ └── README.md ├── ep337 │ └── README.md ├── ep338 │ ├── README.md │ ├── rev01 │ │ ├── MANIFEST.in │ │ ├── go.mod │ │ ├── hello_world_go.c │ │ ├── hello_world_go.go │ │ └── setup.py │ └── rev02 │ │ ├── MANIFEST.in │ │ ├── go.mod │ │ ├── hello_world_go.c │ │ ├── hello_world_go.go │ │ └── setup.py ├── ep339 │ ├── README.md │ └── rev01 │ │ └── Dockerfile ├── ep340 │ └── README.md ├── ep341 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ └── rev06 │ │ └── t.py ├── ep342 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep343 │ └── README.md ├── ep344 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── mymod │ │ ├── __init__.py │ │ └── __main__.py ├── ep345 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ └── rev05 │ │ └── t.py ├── ep346 │ └── README.md ├── ep347 │ └── README.md ├── ep348 │ └── README.md ├── ep349 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep350 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ └── rev05 │ │ └── t.py ├── ep351 │ └── README.md ├── ep352 │ └── README.md ├── ep353 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep354 │ └── README.md ├── ep355 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ ├── t.py │ │ └── t2.py │ ├── rev05 │ │ └── t.py │ └── rev06 │ │ └── t.py ├── ep356 │ └── README.md ├── ep357 │ ├── README.md │ ├── rev01 │ │ ├── Makefile │ │ ├── lib.c │ │ ├── lib.h │ │ └── main.c │ ├── rev02 │ │ └── Makefile │ ├── rev03 │ │ └── Makefile │ ├── rev04 │ │ └── Makefile │ └── rev05 │ │ └── Makefile ├── ep358 │ ├── README.md │ ├── problem.txt │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep359 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep360 │ └── README.md ├── ep361 │ └── README.md ├── ep362 │ ├── README.md │ ├── rev01 │ │ ├── .gitconfig.example │ │ └── git-hello-world │ └── rev02 │ │ └── git-hello-world ├── ep363 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep364 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ └── rev06 │ │ └── t.py ├── ep365 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep366 │ └── README.md ├── ep367 │ ├── README.md │ ├── rev01 │ │ ├── constraints.txt │ │ ├── min_versions.txt │ │ ├── requirements.txt │ │ ├── setup.cfg │ │ └── tox.ini │ └── rev02 │ │ ├── constraints.txt │ │ ├── requirements.txt │ │ └── tox.ini ├── ep368 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ └── rev05 │ │ └── t.py ├── ep369 │ └── README.md ├── ep370 │ └── README.md ├── ep371 │ └── README.md ├── ep372 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ └── rev05 │ │ └── t.py ├── ep373 │ ├── README.md │ └── rev01 │ │ └── post-checkout ├── ep374 │ └── README.md ├── ep375 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep376 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep377 │ ├── README.md │ ├── rev01 │ │ └── t.cpp │ ├── rev02 │ │ └── t.cpp │ ├── rev03 │ │ └── t.cpp │ ├── rev04 │ │ └── t.cpp │ ├── rev05 │ │ └── t.cpp │ ├── rev06 │ │ └── t.cpp │ ├── rev07 │ │ └── t.cpp │ └── rev08 │ │ └── t.cpp ├── ep378 │ └── README.md ├── ep379 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep380 │ └── README.md ├── ep381 │ ├── README.md │ └── rev01 │ │ └── t.sh ├── ep382 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep383 │ └── README.md ├── ep384 │ └── README.md ├── ep385 │ └── README.md ├── ep386 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep387 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep388 │ └── README.md ├── ep389 │ ├── README.md │ └── rev01 │ │ └── app.py ├── ep390 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep391 │ ├── README.md │ └── rev01 │ │ ├── .gitattributes.example │ │ └── example_dir │ │ └── example.json ├── ep392 │ ├── README.md │ └── rev01 │ │ ├── .env │ │ ├── .gitignore.example │ │ └── file.txt ├── ep393 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep394 │ ├── README.md │ ├── rev01 │ │ ├── t.py │ │ └── target.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ └── rev05 │ │ └── t.py ├── ep395 │ └── README.md ├── ep396 │ └── README.md ├── ep397 │ ├── README.md │ └── rev01 │ │ └── y │ │ └── t.py ├── ep398 │ └── README.md ├── ep399 │ ├── README.md │ ├── rev01 │ │ └── t.c │ └── rev02 │ │ └── t.c ├── ep400 │ └── README.md ├── ep401 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep402 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ └── rev05 │ │ └── t.py ├── ep403 │ └── README.md ├── ep404 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ ├── t.py │ │ └── test_t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ └── rev05 │ │ └── t.py ├── ep405 │ └── README.md ├── ep406 │ └── README.md ├── ep407 │ ├── README.md │ ├── rev01 │ │ ├── a │ │ │ ├── __init__.py │ │ │ └── main.py │ │ └── b.py │ ├── rev02 │ │ ├── a │ │ │ ├── __init__.py │ │ │ └── main.py │ │ └── b.py │ └── rev03 │ │ ├── a │ │ ├── __init__.py │ │ └── main.py │ │ ├── b.py │ │ └── setup.py ├── ep408 │ └── README.md ├── ep409 │ └── README.md ├── ep410 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep411 │ └── README.md ├── ep412 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep413 │ ├── README.md │ └── rev01 │ │ └── t.c ├── ep414 │ ├── README.md │ ├── rev01 │ │ └── y │ │ │ ├── setup.cfg │ │ │ └── setup.py │ ├── rev02 │ │ └── y │ │ │ ├── setup.cfg │ │ │ └── setup.py │ ├── rev03 │ │ └── y │ │ │ ├── setup.cfg │ │ │ └── setup.py │ └── rev04 │ │ └── y │ │ ├── setup.cfg │ │ └── setup.py ├── ep415 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep416 │ └── README.md ├── ep417 │ └── README.md ├── ep418 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep419 │ └── README.md ├── ep420 │ ├── README.md │ ├── rev01 │ │ └── __init__.py │ └── rev02 │ │ └── __init__.py ├── ep421 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ └── rev04 │ │ └── t.py ├── ep422 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep423 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep424 │ ├── README.md │ ├── rev01 │ │ └── t.sql │ ├── rev02 │ │ └── t.sql │ └── rev03 │ │ └── t.sql ├── ep425 │ ├── README.md │ └── rev01 │ │ ├── pokemon.js │ │ ├── pokesona.js │ │ └── t.py ├── ep426 │ └── README.md ├── ep427 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep428 │ ├── README.md │ ├── rev01 │ │ ├── setup.py │ │ └── tzname.py │ ├── rev02 │ │ ├── setup.py │ │ └── tzname.py │ └── rev03 │ │ ├── setup.py │ │ └── tzname.py ├── ep429 │ └── README.md ├── ep430 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ └── rev06 │ │ └── t.py ├── ep431 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep432 │ └── README.md ├── ep433 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ └── rev07 │ │ └── t.py ├── ep434 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ ├── rev07 │ │ └── t.py │ ├── rev08 │ │ └── typing.py │ ├── rev09 │ │ └── typing.py │ ├── rev10 │ │ └── typing.py │ ├── rev11 │ │ └── typing.py │ ├── rev12 │ │ ├── t.py │ │ └── t.toml │ ├── rev13 │ │ └── chdir.py │ ├── rev14 │ │ └── t.py │ ├── rev15 │ │ └── t.py │ ├── rev16 │ │ └── t3.py │ ├── rev17 │ │ └── t3.py │ └── rev18 │ │ └── t4.py ├── ep435 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ └── rev07 │ │ └── t.py ├── ep436 │ └── README.md ├── ep437 │ └── README.md ├── ep438 │ ├── README.md │ ├── rev01 │ │ ├── .pre-commit-config.yaml │ │ └── tests │ │ │ ├── tests.py │ │ │ └── whatever_module_test.py │ ├── rev02 │ │ └── .pre-commit-config.yaml │ └── rev03 │ │ └── pytest.ini ├── ep439 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ ├── rev07 │ │ └── t.py │ ├── rev08 │ │ └── t.py │ ├── rev09 │ │ └── t.py │ └── rev10 │ │ └── t.py ├── ep440 │ └── README.md ├── ep441 │ └── README.md ├── ep442 │ └── README.md ├── ep443 │ ├── README.md │ └── rev01 │ │ └── default_build.sh ├── ep444 │ └── README.md ├── ep445 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ └── rev06 │ │ └── t.py ├── ep446 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ └── rev05 │ │ ├── t.py │ │ └── t.sh ├── ep447 │ └── README.md ├── ep448 │ └── README.md ├── ep449 │ └── README.md ├── ep450 │ └── README.md ├── ep451 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep452 │ └── README.md ├── ep453 │ ├── README.md │ ├── rev01 │ │ └── t.sh │ ├── rev02 │ │ └── t.sh │ ├── rev03 │ │ └── t.sh │ └── rev04 │ │ └── t.sh ├── ep454 │ └── README.md ├── ep455 │ └── README.md ├── ep456 │ ├── README.md │ ├── rev01 │ │ └── src.py │ ├── rev02 │ │ ├── src.py │ │ └── t.py │ ├── rev03 │ │ ├── src.py │ │ └── t.py │ └── rev04 │ │ ├── src.py │ │ └── t.py ├── ep457 │ ├── README.md │ └── rev01 │ │ └── prof.py ├── ep458 │ └── README.md ├── ep459 │ ├── README.md │ └── rev01 │ │ ├── dec.sh │ │ └── enc.sh ├── ep460 │ └── README.md ├── ep461 │ └── README.md ├── ep462 │ └── README.md ├── ep463 │ └── README.md ├── ep464 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep465 │ └── README.md ├── ep466 │ └── README.md ├── ep467 │ └── README.md ├── ep468 │ └── README.md ├── ep469 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ └── rev05 │ │ └── t.py ├── ep470 │ └── README.md ├── ep471 │ ├── README.md │ └── rev01 │ │ └── t2.py ├── ep472 │ └── README.md ├── ep473 │ ├── README.md │ └── rev01 │ │ └── Dockerfile ├── ep474 │ └── README.md ├── ep475 │ └── README.md ├── ep476 │ ├── README.md │ ├── rev01 │ │ └── t.sh │ ├── rev02 │ │ └── t.sh │ ├── rev03 │ │ └── t.sh │ ├── rev04 │ │ └── t.sh │ ├── rev05 │ │ └── t.sh │ ├── rev06 │ │ └── t.sh │ ├── rev07 │ │ └── t.sh │ ├── rev08 │ │ └── t.sh │ └── rev09 │ │ └── t.sh ├── ep477 │ └── README.md ├── ep478 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep479 │ ├── README.md │ ├── rev01 │ │ └── workflow.yml │ ├── rev02 │ │ └── workflow.yml │ └── rev03 │ │ └── workflow.yml ├── ep480 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ └── rev05 │ │ └── t.py ├── ep481 │ └── README.md ├── ep482 │ └── README.md ├── ep483 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep484 │ └── README.md ├── ep485 │ └── README.md ├── ep486 │ ├── README.md │ ├── rev01 │ │ ├── mylib.py │ │ └── t.py │ └── rev02 │ │ ├── mylib.py │ │ └── t.py ├── ep487 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ ├── rev07 │ │ └── t.py │ ├── rev08 │ │ └── t.py │ └── rev09 │ │ └── t.py ├── ep488 │ ├── README.md │ └── rev01 │ │ └── requirements.txt ├── ep489 │ └── README.md ├── ep490 │ └── README.md ├── ep491 │ └── README.md ├── ep492 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep493 │ ├── README.md │ ├── rev01 │ │ └── py.py │ └── rev02 │ │ ├── py.py │ │ └── py │ │ └── __init__.py ├── ep494 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep495 │ └── README.md ├── ep496 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep497 │ └── README.md ├── ep498 │ └── README.md ├── ep499 │ └── README.md ├── ep500 │ └── README.md ├── ep501 │ └── README.md ├── ep502 │ ├── README.md │ ├── rev01 │ │ └── setup.py │ └── rev02 │ │ └── setup.py ├── ep503 │ ├── README.md │ ├── rev01 │ │ ├── Dockerfile │ │ └── main.c │ └── rev02 │ │ ├── Dockerfile │ │ └── main.c ├── ep504 │ └── README.md ├── ep505 │ ├── README.md │ ├── rev01 │ │ └── t.sh │ ├── rev02 │ │ └── t.sh │ └── rev03 │ │ └── t.sh ├── ep506 │ └── README.md ├── ep507 │ └── README.md ├── ep508 │ └── README.md ├── ep509 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep510 │ └── README.md ├── ep511 │ └── README.md ├── ep512 │ └── README.md ├── ep513 │ ├── README.md │ ├── rev01 │ │ └── t.py │ └── rev02 │ │ └── t.py ├── ep514 │ └── README.md ├── ep515 │ └── README.md ├── ep516 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ ├── t.py │ │ └── t2.py │ └── rev05 │ │ └── t2.py ├── ep517 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ └── rev05 │ │ └── t.py ├── ep518 │ ├── README.md │ ├── rev01 │ │ ├── t.py │ │ └── t_test.py │ ├── rev02 │ │ ├── t.py │ │ └── t_test.py │ ├── rev03 │ │ ├── t.py │ │ └── t_test.py │ ├── rev04 │ │ ├── t.py │ │ └── t_test.py │ └── rev05 │ │ ├── t.py │ │ └── t_test.py ├── ep519 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ └── rev06 │ │ └── t.py ├── ep520 │ └── README.md ├── ep521 │ └── README.md ├── ep522 │ └── README.md ├── ep523 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ └── rev03 │ │ └── t.py ├── ep524 │ └── README.md ├── ep525 │ └── README.md ├── ep526 │ └── README.md ├── ep527 │ └── README.md ├── ep528 │ └── README.md ├── ep529 │ └── README.md ├── ep530 │ └── README.md ├── ep531 │ └── README.md ├── ep532 │ └── README.md ├── ep533 │ └── README.md ├── ep534 │ └── README.md ├── ep535 │ └── README.md ├── ep536 │ └── README.md ├── ep537 │ ├── README.md │ └── rev01 │ │ └── t.sh ├── ep538 │ └── README.md ├── ep539 │ └── README.md ├── ep540 │ ├── README.md │ └── rev01 │ │ └── t.html ├── ep541 │ └── README.md ├── ep542 │ ├── README.md │ └── rev01 │ │ └── t.c ├── ep543 │ ├── README.md │ ├── rev01 │ │ └── t.sh │ ├── rev02 │ │ └── t.sh │ └── rev03 │ │ └── t.sh ├── ep544 │ ├── README.md │ ├── rev01 │ │ └── Dockerfile │ ├── rev02 │ │ └── Dockerfile │ ├── rev03 │ │ ├── Dockerfile │ │ └── secretfile │ ├── rev04 │ │ └── Dockerfile │ └── rev05 │ │ └── Dockerfile ├── ep545 │ ├── README.md │ ├── rev01 │ │ ├── Dockerfile │ │ └── t.c │ └── rev02 │ │ └── Dockerfile ├── ep546 │ ├── README.md │ └── rev01 │ │ └── t.py ├── ep547 │ └── README.md ├── ep548 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ ├── t.py │ │ └── t2.py │ ├── rev04 │ │ ├── t2.py │ │ └── t3.py │ └── rev05 │ │ ├── t3.py │ │ └── t4.py ├── ep549 │ └── README.md ├── ep550 │ └── README.md ├── ep551 │ └── README.md ├── ep552 │ └── README.md ├── ep553 │ └── README.md ├── ep554 │ └── README.md ├── ep555 │ ├── README.md │ └── rev01 │ │ └── Dockerfile ├── ep556 │ └── README.md ├── ep557 │ └── README.md ├── ep558 │ └── README.md ├── ep559 │ ├── README.md │ ├── rev01 │ │ └── t.py │ ├── rev02 │ │ └── t.py │ ├── rev03 │ │ └── t.py │ ├── rev04 │ │ └── t.py │ ├── rev05 │ │ └── t.py │ ├── rev06 │ │ └── t.py │ └── rev07 │ │ └── t.py ├── ep560 │ └── README.md ├── ep561 │ ├── README.md │ ├── rev01 │ │ ├── t.py │ │ ├── t2.py │ │ ├── t3.py │ │ ├── t4.py │ │ └── t5.py │ ├── rev02 │ │ ├── t.py │ │ └── t5.py │ └── rev03 │ │ └── t.py ├── ep562 │ └── README.md ├── ep563 │ └── README.md ├── ep564 │ └── README.md ├── ep565 │ └── README.md ├── ep566 │ └── README.md ├── ep567 │ ├── README.md │ └── rev01 │ │ ├── t.c │ │ ├── t.py │ │ └── t2.py └── ep611 │ ├── README.md │ └── t.md ├── setup.cfg └── tests ├── __init__.py ├── playlist_json_test.py └── update_playlist_test.py /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /config.json 2 | *.py[cod] 3 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/README.md -------------------------------------------------------------------------------- /bin/playlist-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/bin/playlist-json -------------------------------------------------------------------------------- /bin/update-playlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/bin/update-playlist -------------------------------------------------------------------------------- /sample_code/ep001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep001/README.md -------------------------------------------------------------------------------- /sample_code/ep001/rev01/hello.py: -------------------------------------------------------------------------------- 1 | 2 | # original from: PanosTrak 3 | print('Hello Sexy Boy Anthony') 4 | -------------------------------------------------------------------------------- /sample_code/ep001/rev02/hello.py: -------------------------------------------------------------------------------- 1 | if __name__ == '__main__': 2 | print('Hello Sexy Boy Anthony') 3 | -------------------------------------------------------------------------------- /sample_code/ep002/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep002/README.md -------------------------------------------------------------------------------- /sample_code/ep002/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep002/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep002/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep002/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep002/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep002/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep002/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep002/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep002/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep002/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep002/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep002/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep002/rev07/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep002/rev07/t.py -------------------------------------------------------------------------------- /sample_code/ep003/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep003/README.md -------------------------------------------------------------------------------- /sample_code/ep003/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep003/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep003/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep003/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep003/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep003/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep003/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep003/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep004/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep004/README.md -------------------------------------------------------------------------------- /sample_code/ep005/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep005/README.md -------------------------------------------------------------------------------- /sample_code/ep005/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep005/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep005/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep005/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep005/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep005/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep005/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep005/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep005/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep005/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep005/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep005/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep006/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep006/README.md -------------------------------------------------------------------------------- /sample_code/ep006/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep006/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep006/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep006/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep007/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep007/README.md -------------------------------------------------------------------------------- /sample_code/ep007/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep007/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep008/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep008/README.md -------------------------------------------------------------------------------- /sample_code/ep008/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep008/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep008/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep008/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep008/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep008/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep008/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep008/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep008/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep008/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep008/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep008/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep008/rev07/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep008/rev07/t.py -------------------------------------------------------------------------------- /sample_code/ep008/rev08/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep008/rev08/t.py -------------------------------------------------------------------------------- /sample_code/ep009/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep009/README.md -------------------------------------------------------------------------------- /sample_code/ep010/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep010/README.md -------------------------------------------------------------------------------- /sample_code/ep010/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep010/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep010/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep010/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep011/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep011/README.md -------------------------------------------------------------------------------- /sample_code/ep011/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep011/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep011/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep011/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep011/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep011/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep011/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep011/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep011/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep011/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep011/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep011/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep011/rev07/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep011/rev07/t.py -------------------------------------------------------------------------------- /sample_code/ep011/rev08/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep011/rev08/t.py -------------------------------------------------------------------------------- /sample_code/ep011/rev09/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep011/rev09/t.py -------------------------------------------------------------------------------- /sample_code/ep012/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep012/README.md -------------------------------------------------------------------------------- /sample_code/ep012/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep012/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep012/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep012/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep012/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep012/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep012/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep012/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep012/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep012/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep012/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep012/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep012/rev07/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep012/rev07/t.py -------------------------------------------------------------------------------- /sample_code/ep012/rev08/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep012/rev08/t.py -------------------------------------------------------------------------------- /sample_code/ep013/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep013/README.md -------------------------------------------------------------------------------- /sample_code/ep014/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep014/README.md -------------------------------------------------------------------------------- /sample_code/ep015/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep015/README.md -------------------------------------------------------------------------------- /sample_code/ep016/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep016/README.md -------------------------------------------------------------------------------- /sample_code/ep017/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep017/README.md -------------------------------------------------------------------------------- /sample_code/ep017/rev01/t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep017/rev01/t.c -------------------------------------------------------------------------------- /sample_code/ep017/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep017/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep018/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep018/README.md -------------------------------------------------------------------------------- /sample_code/ep018/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep018/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep018/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep018/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep018/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep018/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep018/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep018/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep018/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep018/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep018/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep018/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep019/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep019/README.md -------------------------------------------------------------------------------- /sample_code/ep020/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep020/README.md -------------------------------------------------------------------------------- /sample_code/ep021/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep021/README.md -------------------------------------------------------------------------------- /sample_code/ep021/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep021/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep021/rev02/t.py: -------------------------------------------------------------------------------- 1 | def f(x=2): 2 | print(x) 3 | -------------------------------------------------------------------------------- /sample_code/ep021/rev03/t.py: -------------------------------------------------------------------------------- 1 | def f(*, x=2): 2 | print(x) 3 | -------------------------------------------------------------------------------- /sample_code/ep021/rev04/t.py: -------------------------------------------------------------------------------- 1 | def f(*, x): 2 | print(x) 3 | -------------------------------------------------------------------------------- /sample_code/ep021/rev05/t.py: -------------------------------------------------------------------------------- 1 | def f(x, /): 2 | print(x) 3 | -------------------------------------------------------------------------------- /sample_code/ep021/rev06/t.py: -------------------------------------------------------------------------------- 1 | def f(*x): 2 | print(x) 3 | -------------------------------------------------------------------------------- /sample_code/ep021/rev07/t.py: -------------------------------------------------------------------------------- 1 | def f(*x): 2 | print(f'x is {x}') 3 | -------------------------------------------------------------------------------- /sample_code/ep021/rev08/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep021/rev08/t.py -------------------------------------------------------------------------------- /sample_code/ep021/rev09/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep021/rev09/t.py -------------------------------------------------------------------------------- /sample_code/ep021/rev10/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep021/rev10/t.py -------------------------------------------------------------------------------- /sample_code/ep021/rev11/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep021/rev11/t.py -------------------------------------------------------------------------------- /sample_code/ep021/rev12/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep021/rev12/t.py -------------------------------------------------------------------------------- /sample_code/ep022/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep022/README.md -------------------------------------------------------------------------------- /sample_code/ep022/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep022/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep023/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep023/README.md -------------------------------------------------------------------------------- /sample_code/ep024/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep024/README.md -------------------------------------------------------------------------------- /sample_code/ep025/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep025/README.md -------------------------------------------------------------------------------- /sample_code/ep025/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep025/setup.cfg -------------------------------------------------------------------------------- /sample_code/ep025/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep025/setup.py -------------------------------------------------------------------------------- /sample_code/ep026/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep026/README.md -------------------------------------------------------------------------------- /sample_code/ep026/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep026/check.py -------------------------------------------------------------------------------- /sample_code/ep026/t.py: -------------------------------------------------------------------------------- 1 | def f(): 2 | print("hello world") 3 | -------------------------------------------------------------------------------- /sample_code/ep027/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep027/README.md -------------------------------------------------------------------------------- /sample_code/ep027/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep027/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep027/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep027/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep027/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep027/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep027/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep027/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep028/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep028/README.md -------------------------------------------------------------------------------- /sample_code/ep028/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep028/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep028/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep028/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep028/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep028/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep028/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep028/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep028/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep028/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep028/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep028/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep028/rev07/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep028/rev07/t.py -------------------------------------------------------------------------------- /sample_code/ep028/rev08/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep028/rev08/t.py -------------------------------------------------------------------------------- /sample_code/ep028/rev09/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep028/rev09/t.py -------------------------------------------------------------------------------- /sample_code/ep029/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep029/README.md -------------------------------------------------------------------------------- /sample_code/ep030/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep030/README.md -------------------------------------------------------------------------------- /sample_code/ep030/rev02/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep030/rev02/t.sh -------------------------------------------------------------------------------- /sample_code/ep030/rev03/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep030/rev03/t.sh -------------------------------------------------------------------------------- /sample_code/ep031/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep031/README.md -------------------------------------------------------------------------------- /sample_code/ep032/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep032/README.md -------------------------------------------------------------------------------- /sample_code/ep033/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep033/README.md -------------------------------------------------------------------------------- /sample_code/ep033/rev01/t.sh: -------------------------------------------------------------------------------- 1 | echo hi 2 | -------------------------------------------------------------------------------- /sample_code/ep033/rev02/t.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | 4 | print('hello world') 5 | -------------------------------------------------------------------------------- /sample_code/ep033/rev03/t.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | import os 3 | 4 | 5 | print('hello world') 6 | -------------------------------------------------------------------------------- /sample_code/ep033/rev04/t.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | import os 3 | 4 | 5 | print('hello world') 6 | -------------------------------------------------------------------------------- /sample_code/ep033/rev05/t.py: -------------------------------------------------------------------------------- 1 | import sys; print(sys.argv) 2 | -------------------------------------------------------------------------------- /sample_code/ep034/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep034/README.md -------------------------------------------------------------------------------- /sample_code/ep034/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep034/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep034/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep034/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep034/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep034/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep034/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep034/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep034/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep034/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep034/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep034/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep034/rev07/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep034/rev07/t.py -------------------------------------------------------------------------------- /sample_code/ep035/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep035/README.md -------------------------------------------------------------------------------- /sample_code/ep035/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep035/t.py -------------------------------------------------------------------------------- /sample_code/ep036/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep036/README.md -------------------------------------------------------------------------------- /sample_code/ep037/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep037/README.md -------------------------------------------------------------------------------- /sample_code/ep038/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep038/README.md -------------------------------------------------------------------------------- /sample_code/ep039/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep039/README.md -------------------------------------------------------------------------------- /sample_code/ep040/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep040/README.md -------------------------------------------------------------------------------- /sample_code/ep041/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep041/README.md -------------------------------------------------------------------------------- /sample_code/ep041/rev01/t.py: -------------------------------------------------------------------------------- 1 | print('hello world') 2 | -------------------------------------------------------------------------------- /sample_code/ep042/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep042/README.md -------------------------------------------------------------------------------- /sample_code/ep042/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep042/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep042/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep042/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep043/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep043/README.md -------------------------------------------------------------------------------- /sample_code/ep043/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep043/tox.ini -------------------------------------------------------------------------------- /sample_code/ep044/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep044/README.md -------------------------------------------------------------------------------- /sample_code/ep044/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep044/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep044/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep044/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep044/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep044/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep044/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep044/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep044/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep044/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep044/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep044/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep044/rev07/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep044/rev07/t.py -------------------------------------------------------------------------------- /sample_code/ep044/rev08/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep044/rev08/t.py -------------------------------------------------------------------------------- /sample_code/ep045/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep045/README.md -------------------------------------------------------------------------------- /sample_code/ep045/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep045/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep045/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep045/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep045/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep045/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep046/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep046/README.md -------------------------------------------------------------------------------- /sample_code/ep047/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep047/README.md -------------------------------------------------------------------------------- /sample_code/ep047/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep047/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep047/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep047/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep048/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep048/README.md -------------------------------------------------------------------------------- /sample_code/ep048/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep048/setup.cfg -------------------------------------------------------------------------------- /sample_code/ep049/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep049/README.md -------------------------------------------------------------------------------- /sample_code/ep050/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep050/README.md -------------------------------------------------------------------------------- /sample_code/ep050/rev01/t.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | 4 | print(f'got {sys.stdin.read()}') 5 | -------------------------------------------------------------------------------- /sample_code/ep050/rev02/t.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | 4 | print(f'got {sys.stdin.read()!r}') 5 | -------------------------------------------------------------------------------- /sample_code/ep050/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep050/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep050/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep050/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep050/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep050/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep051/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep051/README.md -------------------------------------------------------------------------------- /sample_code/ep051/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep051/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep051/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep051/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep051/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep051/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep052/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep052/README.md -------------------------------------------------------------------------------- /sample_code/ep053/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep053/README.md -------------------------------------------------------------------------------- /sample_code/ep054/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep054/README.md -------------------------------------------------------------------------------- /sample_code/ep054/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep054/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep054/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep054/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep054/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep054/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep055/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep055/README.md -------------------------------------------------------------------------------- /sample_code/ep055/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep055/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep055/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep055/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep055/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep055/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep055/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep055/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep055/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep055/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep055/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep055/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep055/rev07/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep055/rev07/t.py -------------------------------------------------------------------------------- /sample_code/ep056/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep056/README.md -------------------------------------------------------------------------------- /sample_code/ep057/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep057/README.md -------------------------------------------------------------------------------- /sample_code/ep057/rev01/hello_world/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep057/rev01/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep057/rev01/testing/helper.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep057/rev01/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep057/rev01/tests/test_foo.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep057/rev02/hello_world/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep057/rev02/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep057/rev02/testing/helper.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep057/rev02/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep057/rev02/tests/test_foo.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep058/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep058/README.md -------------------------------------------------------------------------------- /sample_code/ep059/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep059/README.md -------------------------------------------------------------------------------- /sample_code/ep060/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep060/README.md -------------------------------------------------------------------------------- /sample_code/ep061/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep061/README.md -------------------------------------------------------------------------------- /sample_code/ep061/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep061/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep061/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep061/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep061/rev03/pkg/__init__.py: -------------------------------------------------------------------------------- 1 | from .subpkg import * # noqa: F401,F403 2 | -------------------------------------------------------------------------------- /sample_code/ep061/rev03/pkg/subpkg.py: -------------------------------------------------------------------------------- 1 | def f(): 2 | pass 3 | -------------------------------------------------------------------------------- /sample_code/ep061/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep061/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep062/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep062/README.md -------------------------------------------------------------------------------- /sample_code/ep063/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep063/README.md -------------------------------------------------------------------------------- /sample_code/ep063/rev01/t.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -euo pipefail 3 | -------------------------------------------------------------------------------- /sample_code/ep063/rev02/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep063/rev02/t.sh -------------------------------------------------------------------------------- /sample_code/ep063/rev03/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep063/rev03/t.sh -------------------------------------------------------------------------------- /sample_code/ep063/rev04/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep063/rev04/t.sh -------------------------------------------------------------------------------- /sample_code/ep063/rev05/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep063/rev05/t.sh -------------------------------------------------------------------------------- /sample_code/ep063/rev06/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep063/rev06/t.sh -------------------------------------------------------------------------------- /sample_code/ep063/rev07/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep063/rev07/t.sh -------------------------------------------------------------------------------- /sample_code/ep064/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep064/README.md -------------------------------------------------------------------------------- /sample_code/ep065/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep065/README.md -------------------------------------------------------------------------------- /sample_code/ep065/rev01/t.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | echo hi 3 | -------------------------------------------------------------------------------- /sample_code/ep066/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep066/README.md -------------------------------------------------------------------------------- /sample_code/ep067/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep067/README.md -------------------------------------------------------------------------------- /sample_code/ep067/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep067/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep067/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep067/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep068/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep068/README.md -------------------------------------------------------------------------------- /sample_code/ep069/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep069/README.md -------------------------------------------------------------------------------- /sample_code/ep070/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep070/README.md -------------------------------------------------------------------------------- /sample_code/ep071/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep071/README.md -------------------------------------------------------------------------------- /sample_code/ep071/rev01/mypkg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep071/rev01/mypkg/main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep071/rev02/MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include mypkg *.json 2 | -------------------------------------------------------------------------------- /sample_code/ep071/rev02/mypkg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep071/rev02/mypkg/foo.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /sample_code/ep071/rev02/mypkg/main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep071/rev03/MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include mypkg *.json 2 | -------------------------------------------------------------------------------- /sample_code/ep071/rev03/mypkg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep071/rev03/mypkg/foo.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /sample_code/ep071/rev03/mypkg/main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep071/rev04/mypkg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep071/rev04/mypkg/foo.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /sample_code/ep071/rev04/mypkg/main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep071/rev04/nope.in: -------------------------------------------------------------------------------- 1 | recursive-include mypkg *.json 2 | -------------------------------------------------------------------------------- /sample_code/ep071/rev05/MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include mypkg *.json 2 | -------------------------------------------------------------------------------- /sample_code/ep071/rev05/mypkg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep071/rev05/mypkg/foo.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /sample_code/ep071/rev05/mypkg/main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep071/rev06/mypkg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep071/rev06/mypkg/foo.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /sample_code/ep071/rev06/mypkg/main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep071/rev07/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep071/rev07/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | -------------------------------------------------------------------------------- /sample_code/ep071/rev07/mypkg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep071/rev07/mypkg/foo.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /sample_code/ep071/rev07/mypkg/main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep071/rev07/mypkg/pkg1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep071/rev07/mypkg/pkg1/t.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /sample_code/ep072/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep072/README.md -------------------------------------------------------------------------------- /sample_code/ep073/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep073/README.md -------------------------------------------------------------------------------- /sample_code/ep074/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep074/README.md -------------------------------------------------------------------------------- /sample_code/ep075/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep075/README.md -------------------------------------------------------------------------------- /sample_code/ep075/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep075/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep075/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep075/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep075/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep075/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep075/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep075/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep075/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep075/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep075/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep075/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep076/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep076/README.md -------------------------------------------------------------------------------- /sample_code/ep076/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep076/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep076/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep076/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep076/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep076/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep076/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep076/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep076/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep076/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep077/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep077/README.md -------------------------------------------------------------------------------- /sample_code/ep077/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep077/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep077/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep077/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep077/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep077/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep077/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep077/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep078/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep078/README.md -------------------------------------------------------------------------------- /sample_code/ep079/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep079/README.md -------------------------------------------------------------------------------- /sample_code/ep080/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep080/README.md -------------------------------------------------------------------------------- /sample_code/ep081/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep081/README.md -------------------------------------------------------------------------------- /sample_code/ep081/rev01/.gitignore.example: -------------------------------------------------------------------------------- 1 | /local 2 | -------------------------------------------------------------------------------- /sample_code/ep081/rev02/local/.gitignore.example: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /sample_code/ep081/rev03/local/.gitignore.example: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /sample_code/ep082/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep082/README.md -------------------------------------------------------------------------------- /sample_code/ep082/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep082/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep082/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep082/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep082/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep082/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep083/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep083/README.md -------------------------------------------------------------------------------- /sample_code/ep084/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep084/README.md -------------------------------------------------------------------------------- /sample_code/ep085/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep085/README.md -------------------------------------------------------------------------------- /sample_code/ep086/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep086/README.md -------------------------------------------------------------------------------- /sample_code/ep087/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep087/README.md -------------------------------------------------------------------------------- /sample_code/ep087/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep087/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep087/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep087/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep087/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep087/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep087/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep087/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep087/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep087/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep088/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep088/README.md -------------------------------------------------------------------------------- /sample_code/ep089/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep089/README.md -------------------------------------------------------------------------------- /sample_code/ep089/rev01/a: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | print('hello world') 3 | -------------------------------------------------------------------------------- /sample_code/ep090/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep090/README.md -------------------------------------------------------------------------------- /sample_code/ep090/rev01/t.py: -------------------------------------------------------------------------------- 1 | # DONTSHIP: delete this file 2 | -------------------------------------------------------------------------------- /sample_code/ep091/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep091/README.md -------------------------------------------------------------------------------- /sample_code/ep092/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep092/README.md -------------------------------------------------------------------------------- /sample_code/ep093/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep093/README.md -------------------------------------------------------------------------------- /sample_code/ep093/rev01/abspath.py: -------------------------------------------------------------------------------- 1 | print(f'my path is {__file__}') 2 | -------------------------------------------------------------------------------- /sample_code/ep094/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep094/README.md -------------------------------------------------------------------------------- /sample_code/ep094/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep094/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep094/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep094/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep094/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep094/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep094/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep094/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep094/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep094/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep095/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep095/README.md -------------------------------------------------------------------------------- /sample_code/ep096/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep096/README.md -------------------------------------------------------------------------------- /sample_code/ep096/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep096/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep097/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep097/README.md -------------------------------------------------------------------------------- /sample_code/ep098/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep098/README.md -------------------------------------------------------------------------------- /sample_code/ep098/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep098/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep098/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep098/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep099/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep099/README.md -------------------------------------------------------------------------------- /sample_code/ep100/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep100/README.md -------------------------------------------------------------------------------- /sample_code/ep100/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep100/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep100/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep100/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep100/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep100/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep100/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep100/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep100/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep100/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep101/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep101/README.md -------------------------------------------------------------------------------- /sample_code/ep101/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep101/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep102/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep102/README.md -------------------------------------------------------------------------------- /sample_code/ep102/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep102/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep102/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep102/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep102/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep102/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep102/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep102/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep103/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep103/README.md -------------------------------------------------------------------------------- /sample_code/ep104/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep104/README.md -------------------------------------------------------------------------------- /sample_code/ep104/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep104/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep104/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep104/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep104/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep104/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep104/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep104/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep104/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep104/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep104/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep104/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep104/rev07/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep104/rev07/t.py -------------------------------------------------------------------------------- /sample_code/ep104/rev08/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep104/rev08/t.py -------------------------------------------------------------------------------- /sample_code/ep105/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep105/README.md -------------------------------------------------------------------------------- /sample_code/ep106/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep106/README.md -------------------------------------------------------------------------------- /sample_code/ep107/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep107/README.md -------------------------------------------------------------------------------- /sample_code/ep108/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep108/README.md -------------------------------------------------------------------------------- /sample_code/ep109/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep109/README.md -------------------------------------------------------------------------------- /sample_code/ep110/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep110/README.md -------------------------------------------------------------------------------- /sample_code/ep110/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep110/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep110/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep110/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep110/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep110/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep110/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep110/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep110/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep110/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep110/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep110/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep111/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep111/README.md -------------------------------------------------------------------------------- /sample_code/ep111/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep111/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep111/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep111/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep112/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep112/README.md -------------------------------------------------------------------------------- /sample_code/ep112/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep112/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep112/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep112/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep112/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep112/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep113/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep113/README.md -------------------------------------------------------------------------------- /sample_code/ep114/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep114/README.md -------------------------------------------------------------------------------- /sample_code/ep114/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep114/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep115/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep115/README.md -------------------------------------------------------------------------------- /sample_code/ep115/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep115/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep115/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep115/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep115/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep115/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep116/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep116/README.md -------------------------------------------------------------------------------- /sample_code/ep117/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep117/README.md -------------------------------------------------------------------------------- /sample_code/ep117/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep117/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep117/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep117/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep118/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep118/README.md -------------------------------------------------------------------------------- /sample_code/ep118/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep118/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep119/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep119/README.md -------------------------------------------------------------------------------- /sample_code/ep120/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep120/README.md -------------------------------------------------------------------------------- /sample_code/ep121/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep121/README.md -------------------------------------------------------------------------------- /sample_code/ep122/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep122/README.md -------------------------------------------------------------------------------- /sample_code/ep122/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep122/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep123/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep123/README.md -------------------------------------------------------------------------------- /sample_code/ep123/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep123/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep123/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep123/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep124/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep124/README.md -------------------------------------------------------------------------------- /sample_code/ep124/rev01/t.py: -------------------------------------------------------------------------------- 1 | print('hello world') 2 | -------------------------------------------------------------------------------- /sample_code/ep125/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep125/README.md -------------------------------------------------------------------------------- /sample_code/ep125/rev01/t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep125/rev01/t.c -------------------------------------------------------------------------------- /sample_code/ep126/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep126/README.md -------------------------------------------------------------------------------- /sample_code/ep127/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep127/README.md -------------------------------------------------------------------------------- /sample_code/ep127/rev01/t: -------------------------------------------------------------------------------- 1 | foo 2 | bar 3 | baz 4 | -------------------------------------------------------------------------------- /sample_code/ep128/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep128/README.md -------------------------------------------------------------------------------- /sample_code/ep129/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep129/README.md -------------------------------------------------------------------------------- /sample_code/ep130/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep130/README.md -------------------------------------------------------------------------------- /sample_code/ep131/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep131/README.md -------------------------------------------------------------------------------- /sample_code/ep132/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep132/README.md -------------------------------------------------------------------------------- /sample_code/ep132/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep132/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep132/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep132/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep132/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep132/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep132/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep132/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep133/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep133/README.md -------------------------------------------------------------------------------- /sample_code/ep133/rev01/t.py: -------------------------------------------------------------------------------- 1 | import re 2 | 3 | 4 | reg = re.compile('\d+') 5 | -------------------------------------------------------------------------------- /sample_code/ep133/rev02/t.py: -------------------------------------------------------------------------------- 1 | import re 2 | 3 | 4 | reg = re.compile('\d\n+') 5 | -------------------------------------------------------------------------------- /sample_code/ep134/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep134/README.md -------------------------------------------------------------------------------- /sample_code/ep135/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep135/README.md -------------------------------------------------------------------------------- /sample_code/ep136/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep136/README.md -------------------------------------------------------------------------------- /sample_code/ep136/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep136/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep136/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep136/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep136/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep136/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep137/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep137/README.md -------------------------------------------------------------------------------- /sample_code/ep138/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep138/README.md -------------------------------------------------------------------------------- /sample_code/ep138/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep138/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep138/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep138/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep138/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep138/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep138/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep138/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep138/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep138/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep138/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep138/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep139/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep139/README.md -------------------------------------------------------------------------------- /sample_code/ep140/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep140/README.md -------------------------------------------------------------------------------- /sample_code/ep141/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep141/README.md -------------------------------------------------------------------------------- /sample_code/ep142/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep142/README.md -------------------------------------------------------------------------------- /sample_code/ep142/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep142/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep143/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep143/README.md -------------------------------------------------------------------------------- /sample_code/ep143/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep143/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep144/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep144/README.md -------------------------------------------------------------------------------- /sample_code/ep145/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep145/README.md -------------------------------------------------------------------------------- /sample_code/ep145/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep145/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep146/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep146/README.md -------------------------------------------------------------------------------- /sample_code/ep146/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep146/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep146/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep146/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep146/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep146/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep147/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep147/README.md -------------------------------------------------------------------------------- /sample_code/ep147/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep147/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep147/rev02/setup.cfg: -------------------------------------------------------------------------------- 1 | [mypy] 2 | no_implicit_optional = true 3 | -------------------------------------------------------------------------------- /sample_code/ep147/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep147/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep148/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep148/README.md -------------------------------------------------------------------------------- /sample_code/ep149/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep149/README.md -------------------------------------------------------------------------------- /sample_code/ep149/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep149/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep150/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep150/README.md -------------------------------------------------------------------------------- /sample_code/ep151/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep151/README.md -------------------------------------------------------------------------------- /sample_code/ep152/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep152/README.md -------------------------------------------------------------------------------- /sample_code/ep153/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep153/README.md -------------------------------------------------------------------------------- /sample_code/ep154/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep154/README.md -------------------------------------------------------------------------------- /sample_code/ep155/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep155/README.md -------------------------------------------------------------------------------- /sample_code/ep156/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep156/README.md -------------------------------------------------------------------------------- /sample_code/ep156/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep156/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep157/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep157/README.md -------------------------------------------------------------------------------- /sample_code/ep157/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep157/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep158/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep158/README.md -------------------------------------------------------------------------------- /sample_code/ep158/rev01/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:focal 2 | RUN echo hi > f 3 | -------------------------------------------------------------------------------- /sample_code/ep159/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep159/README.md -------------------------------------------------------------------------------- /sample_code/ep159/rev02/generate_config.yaml: -------------------------------------------------------------------------------- 1 | repo: /some/local/directory/path/here 2 | database: db.db 3 | -------------------------------------------------------------------------------- /sample_code/ep160/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep160/README.md -------------------------------------------------------------------------------- /sample_code/ep161/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep161/README.md -------------------------------------------------------------------------------- /sample_code/ep161/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep161/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep161/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep161/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep161/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep161/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep161/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep161/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep161/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep161/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep162/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep162/README.md -------------------------------------------------------------------------------- /sample_code/ep163/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep163/README.md -------------------------------------------------------------------------------- /sample_code/ep163/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep163/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep164/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep164/README.md -------------------------------------------------------------------------------- /sample_code/ep164/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep164/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep164/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep164/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep164/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep164/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep164/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep164/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep165/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep165/README.md -------------------------------------------------------------------------------- /sample_code/ep166/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep166/README.md -------------------------------------------------------------------------------- /sample_code/ep167/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep167/README.md -------------------------------------------------------------------------------- /sample_code/ep168/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep168/README.md -------------------------------------------------------------------------------- /sample_code/ep168/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep168/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep168/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep168/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep168/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep168/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep168/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep168/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep169/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep169/README.md -------------------------------------------------------------------------------- /sample_code/ep169/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep169/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep169/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep169/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep169/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep169/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep169/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep169/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep169/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep169/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep169/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep169/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep170/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep170/README.md -------------------------------------------------------------------------------- /sample_code/ep170/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep170/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep170/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep170/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep170/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep170/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep171/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep171/README.md -------------------------------------------------------------------------------- /sample_code/ep172/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep172/README.md -------------------------------------------------------------------------------- /sample_code/ep173/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep173/README.md -------------------------------------------------------------------------------- /sample_code/ep174/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep174/README.md -------------------------------------------------------------------------------- /sample_code/ep174/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep174/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep174/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep174/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep174/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep174/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep175/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep175/README.md -------------------------------------------------------------------------------- /sample_code/ep175/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep175/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep176/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep176/README.md -------------------------------------------------------------------------------- /sample_code/ep176/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep176/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep176/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep176/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep176/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep176/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep176/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep176/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep176/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep176/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep176/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep176/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep176/rev07/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep176/rev07/t.py -------------------------------------------------------------------------------- /sample_code/ep176/rev08/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep176/rev08/t.py -------------------------------------------------------------------------------- /sample_code/ep176/rev09/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep176/rev09/t.py -------------------------------------------------------------------------------- /sample_code/ep176/rev10/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep176/rev10/t.py -------------------------------------------------------------------------------- /sample_code/ep177/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep177/README.md -------------------------------------------------------------------------------- /sample_code/ep177/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep177/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep178/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep178/README.md -------------------------------------------------------------------------------- /sample_code/ep178/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep178/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep178/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep178/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep178/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep178/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep179/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep179/README.md -------------------------------------------------------------------------------- /sample_code/ep180/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep180/README.md -------------------------------------------------------------------------------- /sample_code/ep180/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep180/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep181/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep181/README.md -------------------------------------------------------------------------------- /sample_code/ep182/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep182/README.md -------------------------------------------------------------------------------- /sample_code/ep183/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep183/README.md -------------------------------------------------------------------------------- /sample_code/ep184/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep184/README.md -------------------------------------------------------------------------------- /sample_code/ep185/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep185/README.md -------------------------------------------------------------------------------- /sample_code/ep186/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep186/README.md -------------------------------------------------------------------------------- /sample_code/ep187/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep187/README.md -------------------------------------------------------------------------------- /sample_code/ep187/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep187/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep187/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep187/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep187/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep187/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep187/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep187/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep188/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep188/README.md -------------------------------------------------------------------------------- /sample_code/ep188/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep188/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep188/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep188/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep188/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep188/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep188/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep188/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep188/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep188/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep188/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep188/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep188/rev07/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep188/rev07/t.py -------------------------------------------------------------------------------- /sample_code/ep188/rev08/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep188/rev08/t.py -------------------------------------------------------------------------------- /sample_code/ep189/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep189/README.md -------------------------------------------------------------------------------- /sample_code/ep189/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep189/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep189/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep189/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep189/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep189/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep189/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep189/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep190/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep190/README.md -------------------------------------------------------------------------------- /sample_code/ep191/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep191/README.md -------------------------------------------------------------------------------- /sample_code/ep192/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep192/README.md -------------------------------------------------------------------------------- /sample_code/ep193/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep193/README.md -------------------------------------------------------------------------------- /sample_code/ep194/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep194/README.md -------------------------------------------------------------------------------- /sample_code/ep194/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep194/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep194/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep194/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep194/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep194/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep195/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep195/README.md -------------------------------------------------------------------------------- /sample_code/ep195/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep195/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep195/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep195/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep195/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep195/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep195/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep195/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep196/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep196/README.md -------------------------------------------------------------------------------- /sample_code/ep197/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep197/README.md -------------------------------------------------------------------------------- /sample_code/ep197/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep197/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep197/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep197/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep197/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep197/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep197/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep197/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep197/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep197/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep197/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep197/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep197/rev07/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep197/rev07/t.py -------------------------------------------------------------------------------- /sample_code/ep197/rev08/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep197/rev08/t.py -------------------------------------------------------------------------------- /sample_code/ep197/rev09/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep197/rev09/t.py -------------------------------------------------------------------------------- /sample_code/ep197/rev10/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep197/rev10/t.py -------------------------------------------------------------------------------- /sample_code/ep197/rev11/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep197/rev11/t.py -------------------------------------------------------------------------------- /sample_code/ep197/rev12/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep197/rev12/t.py -------------------------------------------------------------------------------- /sample_code/ep197/rev13/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep197/rev13/t.py -------------------------------------------------------------------------------- /sample_code/ep198/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep198/README.md -------------------------------------------------------------------------------- /sample_code/ep199/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep199/README.md -------------------------------------------------------------------------------- /sample_code/ep200/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep200/README.md -------------------------------------------------------------------------------- /sample_code/ep201/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep201/README.md -------------------------------------------------------------------------------- /sample_code/ep201/rev01/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep201/rev01/t.sh -------------------------------------------------------------------------------- /sample_code/ep201/rev02/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep201/rev02/t.sh -------------------------------------------------------------------------------- /sample_code/ep201/rev03/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep201/rev03/t.sh -------------------------------------------------------------------------------- /sample_code/ep201/rev04/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep201/rev04/t.sh -------------------------------------------------------------------------------- /sample_code/ep201/rev05/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep201/rev05/t.sh -------------------------------------------------------------------------------- /sample_code/ep201/rev06/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep201/rev06/t.sh -------------------------------------------------------------------------------- /sample_code/ep201/rev07/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep201/rev07/t.sh -------------------------------------------------------------------------------- /sample_code/ep201/rev08/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep201/rev08/t.sh -------------------------------------------------------------------------------- /sample_code/ep201/rev09/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep201/rev09/t.sh -------------------------------------------------------------------------------- /sample_code/ep201/rev10/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep201/rev10/t.sh -------------------------------------------------------------------------------- /sample_code/ep201/rev11/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep201/rev11/t.sh -------------------------------------------------------------------------------- /sample_code/ep201/rev12/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep201/rev12/t.sh -------------------------------------------------------------------------------- /sample_code/ep202/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep202/README.md -------------------------------------------------------------------------------- /sample_code/ep203/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep203/README.md -------------------------------------------------------------------------------- /sample_code/ep203/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep203/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep203/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep203/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep204/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep204/README.md -------------------------------------------------------------------------------- /sample_code/ep205/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep205/README.md -------------------------------------------------------------------------------- /sample_code/ep206/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep206/README.md -------------------------------------------------------------------------------- /sample_code/ep207/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep207/README.md -------------------------------------------------------------------------------- /sample_code/ep208/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep208/README.md -------------------------------------------------------------------------------- /sample_code/ep208/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep208/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep209/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep209/README.md -------------------------------------------------------------------------------- /sample_code/ep209/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep209/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep209/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep209/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep209/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep209/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep209/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep209/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep209/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep209/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep210/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep210/README.md -------------------------------------------------------------------------------- /sample_code/ep210/rev01/t.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | echo "$EXAMPLE_SECRET" 3 | -------------------------------------------------------------------------------- /sample_code/ep210/rev02/t.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | echo "$EXAMPLE_SECRET" | base64 3 | -------------------------------------------------------------------------------- /sample_code/ep210/rev03/t.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | echo "$EXAMPLE_SECRET" | hd -c 3 | -------------------------------------------------------------------------------- /sample_code/ep210/rev04/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep210/rev04/t.sh -------------------------------------------------------------------------------- /sample_code/ep211/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep211/README.md -------------------------------------------------------------------------------- /sample_code/ep212/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep212/README.md -------------------------------------------------------------------------------- /sample_code/ep212/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep212/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep213/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep213/README.md -------------------------------------------------------------------------------- /sample_code/ep213/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep213/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep213/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep213/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep213/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep213/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep213/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep213/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep214/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep214/README.md -------------------------------------------------------------------------------- /sample_code/ep214/rev01/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep214/rev01/a.py -------------------------------------------------------------------------------- /sample_code/ep214/rev01/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep214/rev01/b.py -------------------------------------------------------------------------------- /sample_code/ep214/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep214/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep214/rev02/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep214/rev02/a.py -------------------------------------------------------------------------------- /sample_code/ep214/rev02/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep214/rev02/b.py -------------------------------------------------------------------------------- /sample_code/ep214/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep214/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep215/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep215/README.md -------------------------------------------------------------------------------- /sample_code/ep216/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep216/README.md -------------------------------------------------------------------------------- /sample_code/ep216/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep216/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep216/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep216/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep216/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep216/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep217/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep217/README.md -------------------------------------------------------------------------------- /sample_code/ep218/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep218/README.md -------------------------------------------------------------------------------- /sample_code/ep219/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep219/README.md -------------------------------------------------------------------------------- /sample_code/ep220/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep220/README.md -------------------------------------------------------------------------------- /sample_code/ep221/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep221/README.md -------------------------------------------------------------------------------- /sample_code/ep221/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep221/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep222/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep222/README.md -------------------------------------------------------------------------------- /sample_code/ep223/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep223/README.md -------------------------------------------------------------------------------- /sample_code/ep224/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep224/README.md -------------------------------------------------------------------------------- /sample_code/ep225/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep225/README.md -------------------------------------------------------------------------------- /sample_code/ep225/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep225/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep226/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep226/README.md -------------------------------------------------------------------------------- /sample_code/ep226/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep226/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep226/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep226/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep226/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep226/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep226/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep226/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep226/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep226/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep227/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep227/README.md -------------------------------------------------------------------------------- /sample_code/ep227/rev01/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep227/rev01/t.sh -------------------------------------------------------------------------------- /sample_code/ep228/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep228/README.md -------------------------------------------------------------------------------- /sample_code/ep229/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep229/README.md -------------------------------------------------------------------------------- /sample_code/ep230/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep230/README.md -------------------------------------------------------------------------------- /sample_code/ep230/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep230/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep230/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep230/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep230/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep230/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep231/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep231/README.md -------------------------------------------------------------------------------- /sample_code/ep232/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep232/README.md -------------------------------------------------------------------------------- /sample_code/ep233/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep233/README.md -------------------------------------------------------------------------------- /sample_code/ep234/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep234/README.md -------------------------------------------------------------------------------- /sample_code/ep234/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep234/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep234/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep234/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep234/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep234/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep234/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep234/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep235/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep235/README.md -------------------------------------------------------------------------------- /sample_code/ep235/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep235/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep236/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep236/README.md -------------------------------------------------------------------------------- /sample_code/ep237/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep237/README.md -------------------------------------------------------------------------------- /sample_code/ep238/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep238/README.md -------------------------------------------------------------------------------- /sample_code/ep238/rev01/t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep238/rev01/t -------------------------------------------------------------------------------- /sample_code/ep238/rev02/t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep238/rev02/t -------------------------------------------------------------------------------- /sample_code/ep239/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep239/README.md -------------------------------------------------------------------------------- /sample_code/ep240/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep240/README.md -------------------------------------------------------------------------------- /sample_code/ep240/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep240/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep240/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep240/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep240/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep240/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep240/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep240/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep240/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep240/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep240/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep240/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep241/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep241/README.md -------------------------------------------------------------------------------- /sample_code/ep242/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep242/README.md -------------------------------------------------------------------------------- /sample_code/ep243/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep243/README.md -------------------------------------------------------------------------------- /sample_code/ep243/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep243/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep243/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep243/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep243/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep243/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep243/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep243/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep244/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep244/README.md -------------------------------------------------------------------------------- /sample_code/ep244/rev01/.gitignore.example: -------------------------------------------------------------------------------- 1 | /.teraform 2 | -------------------------------------------------------------------------------- /sample_code/ep245/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep245/README.md -------------------------------------------------------------------------------- /sample_code/ep246/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep246/README.md -------------------------------------------------------------------------------- /sample_code/ep246/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep246/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep246/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep246/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep246/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep246/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep246/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep246/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep246/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep246/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep247/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep247/README.md -------------------------------------------------------------------------------- /sample_code/ep247/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep247/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep247/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep247/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep247/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep247/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep248/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep248/README.md -------------------------------------------------------------------------------- /sample_code/ep249/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep249/README.md -------------------------------------------------------------------------------- /sample_code/ep250/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/README.md -------------------------------------------------------------------------------- /sample_code/ep250/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep250/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep250/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep250/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep250/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep250/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep250/rev07/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev07/t.py -------------------------------------------------------------------------------- /sample_code/ep250/rev08/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev08/t.py -------------------------------------------------------------------------------- /sample_code/ep250/rev09/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev09/t.py -------------------------------------------------------------------------------- /sample_code/ep250/rev10/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev10/t.py -------------------------------------------------------------------------------- /sample_code/ep250/rev11/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev11/t.py -------------------------------------------------------------------------------- /sample_code/ep250/rev12/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev12/t.py -------------------------------------------------------------------------------- /sample_code/ep250/rev13/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev13/t.py -------------------------------------------------------------------------------- /sample_code/ep250/rev14/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev14/t.py -------------------------------------------------------------------------------- /sample_code/ep250/rev15/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev15/t.py -------------------------------------------------------------------------------- /sample_code/ep250/rev16/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev16/t.py -------------------------------------------------------------------------------- /sample_code/ep250/rev17/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev17/t.py -------------------------------------------------------------------------------- /sample_code/ep250/rev18/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev18/t.py -------------------------------------------------------------------------------- /sample_code/ep250/rev19/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev19/t.py -------------------------------------------------------------------------------- /sample_code/ep250/rev20/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev20/t.py -------------------------------------------------------------------------------- /sample_code/ep250/rev21/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev21/t.py -------------------------------------------------------------------------------- /sample_code/ep250/rev22/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep250/rev22/t.py -------------------------------------------------------------------------------- /sample_code/ep251/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep251/README.md -------------------------------------------------------------------------------- /sample_code/ep251/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep251/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep251/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep251/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep251/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep251/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep251/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep251/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep251/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep251/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep251/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep251/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep252/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep252/README.md -------------------------------------------------------------------------------- /sample_code/ep252/rev01/all_repos/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep252/rev01/setup.cfg: -------------------------------------------------------------------------------- 1 | [options.package_data] 2 | all_repos = 3 | py.typed 4 | -------------------------------------------------------------------------------- /sample_code/ep252/rev02/all_repos/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep252/rev03/all_repos-stubs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep252/rev03/all_repos-stubs/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep252/rev03/setup.cfg: -------------------------------------------------------------------------------- 1 | [options.package_data] 2 | all_repos = 3 | *.pyi 4 | -------------------------------------------------------------------------------- /sample_code/ep253/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep253/README.md -------------------------------------------------------------------------------- /sample_code/ep253/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep253/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep253/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep253/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep253/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep253/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep253/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep253/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep254/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep254/README.md -------------------------------------------------------------------------------- /sample_code/ep254/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep254/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep254/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep254/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep254/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep254/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep254/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep254/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep255/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep255/README.md -------------------------------------------------------------------------------- /sample_code/ep256/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep256/README.md -------------------------------------------------------------------------------- /sample_code/ep257/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep257/README.md -------------------------------------------------------------------------------- /sample_code/ep258/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep258/README.md -------------------------------------------------------------------------------- /sample_code/ep258/rev01/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep258/rev01/t.sh -------------------------------------------------------------------------------- /sample_code/ep259/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep259/README.md -------------------------------------------------------------------------------- /sample_code/ep259/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep259/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep259/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep259/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep259/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep259/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep259/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep259/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep259/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep259/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep259/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep259/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep260/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep260/README.md -------------------------------------------------------------------------------- /sample_code/ep260/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep260/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep260/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep260/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep260/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep260/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep260/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep260/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep260/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep260/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep261/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep261/README.md -------------------------------------------------------------------------------- /sample_code/ep262/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep262/README.md -------------------------------------------------------------------------------- /sample_code/ep263/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep263/README.md -------------------------------------------------------------------------------- /sample_code/ep264/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep264/README.md -------------------------------------------------------------------------------- /sample_code/ep264/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep264/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep264/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep264/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep264/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep264/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep264/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep264/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep265/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep265/README.md -------------------------------------------------------------------------------- /sample_code/ep266/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep266/README.md -------------------------------------------------------------------------------- /sample_code/ep267/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep267/README.md -------------------------------------------------------------------------------- /sample_code/ep267/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep267/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep267/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep267/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep267/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep267/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep268/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep268/README.md -------------------------------------------------------------------------------- /sample_code/ep268/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep268/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep269/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep269/README.md -------------------------------------------------------------------------------- /sample_code/ep270/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep270/README.md -------------------------------------------------------------------------------- /sample_code/ep270/rev01/ME.pth: -------------------------------------------------------------------------------- 1 | import os; print("STARTUP!") 2 | -------------------------------------------------------------------------------- /sample_code/ep270/rev02/ME.pth: -------------------------------------------------------------------------------- 1 | import os; exec("if True:\n print('STARTUP!')") 2 | -------------------------------------------------------------------------------- /sample_code/ep270/rev03/ME.pth: -------------------------------------------------------------------------------- 1 | import os; exec("if True:\n print('STARTUP!')") 2 | /tmp/explains/y 3 | -------------------------------------------------------------------------------- /sample_code/ep270/rev03/t.py: -------------------------------------------------------------------------------- 1 | thing = 'world' 2 | print(f'hello {thing}') 3 | -------------------------------------------------------------------------------- /sample_code/ep270/rev03/y/t.py: -------------------------------------------------------------------------------- 1 | print('you found me!') 2 | -------------------------------------------------------------------------------- /sample_code/ep270/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep270/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep271/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep271/README.md -------------------------------------------------------------------------------- /sample_code/ep271/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep271/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep271/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep271/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep271/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep271/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep271/rev04/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep271/rev04/t.py -------------------------------------------------------------------------------- /sample_code/ep271/rev05/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep271/rev05/t.py -------------------------------------------------------------------------------- /sample_code/ep271/rev06/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep271/rev06/t.py -------------------------------------------------------------------------------- /sample_code/ep272/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep272/README.md -------------------------------------------------------------------------------- /sample_code/ep273/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep273/README.md -------------------------------------------------------------------------------- /sample_code/ep274/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep274/README.md -------------------------------------------------------------------------------- /sample_code/ep275/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep275/README.md -------------------------------------------------------------------------------- /sample_code/ep275/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep275/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep275/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep275/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep275/rev03/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep275/rev03/t.py -------------------------------------------------------------------------------- /sample_code/ep276/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep276/README.md -------------------------------------------------------------------------------- /sample_code/ep276/rev01/t.py: -------------------------------------------------------------------------------- 1 | def eq(x: object) -> bool: 2 | return NotImplemented 3 | -------------------------------------------------------------------------------- /sample_code/ep276/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep276/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep277/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep277/README.md -------------------------------------------------------------------------------- /sample_code/ep278/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep278/README.md -------------------------------------------------------------------------------- /sample_code/ep279/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep279/README.md -------------------------------------------------------------------------------- /sample_code/ep280/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep280/README.md -------------------------------------------------------------------------------- /sample_code/ep281/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep281/README.md -------------------------------------------------------------------------------- /sample_code/ep282/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep282/README.md -------------------------------------------------------------------------------- /sample_code/ep283/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep283/README.md -------------------------------------------------------------------------------- /sample_code/ep283/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep283/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep283/rev02/t.py: -------------------------------------------------------------------------------- 1 | print( 2 | -------------------------------------------------------------------------------- /sample_code/ep284/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep284/README.md -------------------------------------------------------------------------------- /sample_code/ep284/rev01/t.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | print('hello world') 3 | -------------------------------------------------------------------------------- /sample_code/ep284/rev01/t.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | echo hello world 3 | -------------------------------------------------------------------------------- /sample_code/ep285/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep285/README.md -------------------------------------------------------------------------------- /sample_code/ep285/rev01/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep285/rev01/t.py -------------------------------------------------------------------------------- /sample_code/ep285/rev02/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep285/rev02/t.py -------------------------------------------------------------------------------- /sample_code/ep286/rev01/f1: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | -------------------------------------------------------------------------------- /sample_code/ep286/rev01/f2: -------------------------------------------------------------------------------- 1 | c 2 | b 3 | d 4 | -------------------------------------------------------------------------------- /sample_code/ep286/rev02/f1: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | -------------------------------------------------------------------------------- /sample_code/ep286/rev02/f2: -------------------------------------------------------------------------------- 1 | b 2 | c 3 | d 4 | -------------------------------------------------------------------------------- /sample_code/ep288/rev01/mypkg/__init__.py: -------------------------------------------------------------------------------- 1 | from ._impl import some_function 2 | -------------------------------------------------------------------------------- /sample_code/ep289/rev06/t.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | f( 4 | -------------------------------------------------------------------------------- /sample_code/ep298/rev01/a/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep298/rev01/a/b/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep298/rev01/a/b/c/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep298/rev01/a/b/c/bar.py: -------------------------------------------------------------------------------- 1 | x = 1 2 | -------------------------------------------------------------------------------- /sample_code/ep298/rev02/a/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep298/rev02/a/b/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep298/rev02/a/b/c/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep298/rev02/a/b/c/bar.py: -------------------------------------------------------------------------------- 1 | x = 1 2 | -------------------------------------------------------------------------------- /sample_code/ep298/rev03/a/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep298/rev03/a/a.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep298/rev03/a/b/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep298/rev03/a/b/b.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep298/rev03/a/b/c/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep298/rev03/a/b/c/bar.py: -------------------------------------------------------------------------------- 1 | x = 1 2 | -------------------------------------------------------------------------------- /sample_code/ep304/rev01/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:focal 2 | 3 | # ... 4 | 5 | WORKDIR /src 6 | COPY . . 7 | -------------------------------------------------------------------------------- /sample_code/ep307/rev01/t: -------------------------------------------------------------------------------- 1 | a 2 | a 3 | b 4 | c 5 | d 6 | e 7 | e 8 | -------------------------------------------------------------------------------- /sample_code/ep307/rev02/t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep307/rev02/t -------------------------------------------------------------------------------- /sample_code/ep307/rev03/t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep307/rev03/t -------------------------------------------------------------------------------- /sample_code/ep308/rev04/setup.cfg: -------------------------------------------------------------------------------- 1 | [mypy] 2 | check_untyped_defs = true 3 | -------------------------------------------------------------------------------- /sample_code/ep314/rev02/plugin.py: -------------------------------------------------------------------------------- 1 | raise SystemExit('pwnd') 2 | -------------------------------------------------------------------------------- /sample_code/ep317/rev02/pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | env = 3 | USER = nobody 4 | -------------------------------------------------------------------------------- /sample_code/ep332/rev01/t.py: -------------------------------------------------------------------------------- 1 | from __future__ import barry_as_FLUFL 2 | 3 | 4 | 1 <> 2 5 | -------------------------------------------------------------------------------- /sample_code/ep338/rev01/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/asottile/hello-world-go 2 | 3 | go 1.17 4 | -------------------------------------------------------------------------------- /sample_code/ep338/rev02/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/asottile/hello-world-go 2 | 3 | go 1.17 4 | -------------------------------------------------------------------------------- /sample_code/ep344/rev04/mymod/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep367/rev01/constraints.txt: -------------------------------------------------------------------------------- 1 | pyyaml==5.4.1 2 | -------------------------------------------------------------------------------- /sample_code/ep367/rev01/min_versions.txt: -------------------------------------------------------------------------------- 1 | regex==2019.12.17 2 | -------------------------------------------------------------------------------- /sample_code/ep367/rev01/requirements.txt: -------------------------------------------------------------------------------- 1 | astpretty==2.1.0 2 | -------------------------------------------------------------------------------- /sample_code/ep367/rev01/setup.cfg: -------------------------------------------------------------------------------- 1 | [options] 2 | install_requires = 3 | regex>=2019.12.17 4 | -------------------------------------------------------------------------------- /sample_code/ep367/rev02/constraints.txt: -------------------------------------------------------------------------------- 1 | pyyaml==5.4.1 2 | -------------------------------------------------------------------------------- /sample_code/ep372/rev01/t.py: -------------------------------------------------------------------------------- 1 | import pkg 2 | 3 | print(pkg.__path__) 4 | -------------------------------------------------------------------------------- /sample_code/ep373/rev01/post-checkout: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo HI FROM POST-CHECKOUT 4 | -------------------------------------------------------------------------------- /sample_code/ep375/rev01/t.py: -------------------------------------------------------------------------------- 1 | print(__file__) 2 | -------------------------------------------------------------------------------- /sample_code/ep391/rev01/.gitattributes.example: -------------------------------------------------------------------------------- 1 | example_dir/* binary 2 | -------------------------------------------------------------------------------- /sample_code/ep392/rev01/.env: -------------------------------------------------------------------------------- 1 | export SOME_SECRET=deadbeef 2 | -------------------------------------------------------------------------------- /sample_code/ep392/rev01/.gitignore.example: -------------------------------------------------------------------------------- 1 | /.env 2 | -------------------------------------------------------------------------------- /sample_code/ep407/rev01/a/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep407/rev01/b.py: -------------------------------------------------------------------------------- 1 | x = 1 2 | -------------------------------------------------------------------------------- /sample_code/ep407/rev02/a/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep407/rev02/b.py: -------------------------------------------------------------------------------- 1 | x = 1 2 | -------------------------------------------------------------------------------- /sample_code/ep407/rev03/a/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_code/ep407/rev03/b.py: -------------------------------------------------------------------------------- 1 | x = 1 2 | -------------------------------------------------------------------------------- /sample_code/ep434/rev12/t.toml: -------------------------------------------------------------------------------- 1 | [wat] 2 | hello = 'world' 3 | thing = 123 4 | -------------------------------------------------------------------------------- /sample_code/ep438/rev03/pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | python_files = *.py 3 | -------------------------------------------------------------------------------- /sample_code/ep446/rev05/t.sh: -------------------------------------------------------------------------------- 1 | cd /home 2 | -------------------------------------------------------------------------------- /sample_code/ep473/rev01/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:focal 2 | RUN echo hi > f 3 | -------------------------------------------------------------------------------- /sample_code/ep493/rev01/py.py: -------------------------------------------------------------------------------- 1 | print('received from pytest!') 2 | -------------------------------------------------------------------------------- /sample_code/ep493/rev02/py.py: -------------------------------------------------------------------------------- 1 | print('received from pytest!') 2 | -------------------------------------------------------------------------------- /sample_code/ep493/rev02/py/__init__.py: -------------------------------------------------------------------------------- 1 | print('received from py library') 2 | -------------------------------------------------------------------------------- /sample_code/ep545/rev01/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:jammy 2 | 3 | ENV LANG=C.UTF-8 4 | -------------------------------------------------------------------------------- /sample_code/ep546/rev01/t.py: -------------------------------------------------------------------------------- 1 | def foo(bar, async=False): 2 | pass 3 | -------------------------------------------------------------------------------- /sample_code/ep548/rev05/t4.py: -------------------------------------------------------------------------------- 1 | x = '\d' 2 | -------------------------------------------------------------------------------- /sample_code/ep559/rev01/t.py: -------------------------------------------------------------------------------- 1 | x = 2 | 3 3 | -------------------------------------------------------------------------------- /sample_code/ep559/rev02/t.py: -------------------------------------------------------------------------------- 1 | x = \ 2 | 3 3 | -------------------------------------------------------------------------------- /sample_code/ep559/rev05/t.py: -------------------------------------------------------------------------------- 1 | x = ( 2 | 3 3 | ) 4 | -------------------------------------------------------------------------------- /sample_code/ep611/t.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/sample_code/ep611/t.md -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonywritescode/explains/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------