├── .gitignore ├── CNAME ├── LICENSE ├── README.md ├── _config.yml ├── c-programming ├── chapter1 │ └── 1.hello_world.c ├── chapter10 │ ├── 1.string.c │ ├── 2.NULL_character.c │ ├── 3. Initialize.c │ └── 4.pointer.c ├── chapter2 │ ├── 1_program_structure.c │ ├── 2_variable.c │ ├── 3_variable_names.c │ ├── 4_variable_modifier.c │ ├── 5_numbers.c │ ├── 6_operators.c │ ├── 7_type_cast.c │ ├── challenge_sol_1.c │ ├── challenge_sol_2.c │ ├── challenge_sol_3.c │ └── challenges.md ├── chapter3 │ ├── 1_if.c │ ├── 2_ifelseif.c │ ├── 3_logical.c │ ├── 4.leapyear.c │ ├── 5.nestedif.c │ ├── 6.switch.c │ └── 7.conditional.c ├── chapter4 │ └── 1.prepost.c ├── chapter5 │ ├── 2.forloop.c │ ├── 3.forloop.c │ ├── 4.operators.c │ ├── 5.innerforloop.c │ ├── 6.multiplication.c │ ├── 7.while.c │ ├── 8.dowhile.c │ └── 9.gcd.c ├── chapter6 │ └── 1.breakcontinue.c ├── chapter7 │ ├── 1.array.c │ ├── 2.fibonacci.c │ ├── 3.array_init.c │ └── 4.multidimensional.c ├── chapter8 │ ├── chapter8.1 │ │ ├── 1.function.c │ │ ├── 2.prototype.c │ │ ├── 3.auto_local_variable.c │ │ └── 4.gcd.c │ ├── chapter8.2 │ │ ├── 5.function_array.c │ │ ├── 6.value_reference.c │ │ └── 7.bubble_sort.c │ ├── chapter8.3 │ │ ├── 8.global_variable.c │ │ └── 9.static_variable.c │ └── chapter8.4 │ │ └── 10.recursive_function.c └── chapter9 │ ├── 1.structure.c │ ├── 2.typedef.c │ ├── 3.intialize.c │ ├── 4.compound.c │ ├── 5.array.c │ └── 6.variants.c ├── coding-practice ├── README.md ├── linked-list.md ├── searching.md ├── small.md └── web-tutorial.md ├── concepts ├── README.md └── redux-concept.js ├── cover.png ├── django-framework ├── ch1_helloworld │ ├── Pipfile │ ├── db.sqlite3 │ ├── helloworld │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── main_app │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ └── manage.py ├── ch2_template_test │ ├── Pipfile │ ├── Procfile │ ├── db.sqlite3 │ ├── hello_template_proj │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── main_app │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── manage.py │ └── templates │ │ ├── about.html │ │ ├── base.html │ │ └── index.html ├── ch4_model_admin │ ├── .vscode │ │ └── settings.json │ ├── Pipfile │ ├── db.sqlite3 │ ├── manage.py │ ├── quotes │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── quotes_proj │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ └── templates │ │ ├── base.html │ │ └── home.html ├── ch5_postgresql │ ├── .vscode │ │ └── settings.json │ ├── Pipfile │ ├── db.sqlite3 │ ├── manage.py │ ├── quotes │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── quotes_proj │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ └── templates │ │ ├── base.html │ │ └── home.html ├── ch6_static │ ├── .vscode │ │ └── settings.json │ ├── Pipfile │ ├── db.sqlite3 │ ├── manage.py │ ├── startbootstrap │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── startbootstrap_proj │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── static │ │ ├── css │ │ │ ├── landing-page.css │ │ │ └── landing-page.min.css │ │ ├── img │ │ │ ├── bg-masthead.jpg │ │ │ ├── bg-showcase-1.jpg │ │ │ ├── bg-showcase-2.jpg │ │ │ ├── bg-showcase-3.jpg │ │ │ ├── testimonials-1.jpg │ │ │ ├── testimonials-2.jpg │ │ │ └── testimonials-3.jpg │ │ ├── scss │ │ │ ├── _call-to-action.scss │ │ │ ├── _footer.scss │ │ │ ├── _global.scss │ │ │ ├── _icons.scss │ │ │ ├── _masthead.scss │ │ │ ├── _mixins.scss │ │ │ ├── _showcase.scss │ │ │ ├── _testimonials.scss │ │ │ ├── _variables.scss │ │ │ └── landing-page.scss │ │ └── vendor │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ ├── font-awesome.css.map │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── less │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── screen-reader.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ │ ├── jquery │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ │ │ └── simple-line-icons │ │ │ ├── css │ │ │ └── simple-line-icons.css │ │ │ └── fonts │ │ │ ├── Simple-Line-Icons.eot │ │ │ ├── Simple-Line-Icons.svg │ │ │ ├── Simple-Line-Icons.ttf │ │ │ ├── Simple-Line-Icons.woff │ │ │ └── Simple-Line-Icons.woff2 │ └── templates │ │ └── index.html └── ch7_heroku │ ├── .vscode │ └── settings.json │ ├── Pipfile │ ├── Procfile │ ├── db.sqlite3 │ ├── manage.py │ ├── startbootstrap │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── startbootstrap_proj │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── static │ ├── css │ │ ├── landing-page.css │ │ └── landing-page.min.css │ ├── img │ │ ├── bg-masthead.jpg │ │ ├── bg-showcase-1.jpg │ │ ├── bg-showcase-2.jpg │ │ ├── bg-showcase-3.jpg │ │ ├── testimonials-1.jpg │ │ ├── testimonials-2.jpg │ │ └── testimonials-3.jpg │ ├── scss │ │ ├── _call-to-action.scss │ │ ├── _footer.scss │ │ ├── _global.scss │ │ ├── _icons.scss │ │ ├── _masthead.scss │ │ ├── _mixins.scss │ │ ├── _showcase.scss │ │ ├── _testimonials.scss │ │ ├── _variables.scss │ │ └── landing-page.scss │ └── vendor │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ ├── font-awesome.css.map │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ ├── jquery │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.slim.js │ │ ├── jquery.slim.min.js │ │ └── jquery.slim.min.map │ │ └── simple-line-icons │ │ ├── css │ │ └── simple-line-icons.css │ │ └── fonts │ │ ├── Simple-Line-Icons.eot │ │ ├── Simple-Line-Icons.svg │ │ ├── Simple-Line-Icons.ttf │ │ ├── Simple-Line-Icons.woff │ │ └── Simple-Line-Icons.woff2 │ └── templates │ └── index.html ├── django-rest-framework ├── 1.QuotesApi │ ├── Pipfile │ ├── api │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── admin.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ ├── serializers.cpython-37.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ └── views.cpython-37.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-37.pyc │ │ ├── models.py │ │ ├── serializers.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── db.sqlite3 │ ├── manage.py │ ├── quotes │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── admin.cpython-36.pyc │ │ │ ├── admin.cpython-37.pyc │ │ │ ├── models.cpython-36.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ ├── urls.cpython-36.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ ├── views.cpython-36.pyc │ │ │ └── views.cpython-37.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── __init__.cpython-37.pyc │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── quotes_proj │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── settings.cpython-36.pyc │ │ │ ├── settings.cpython-37.pyc │ │ │ ├── urls.cpython-36.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ ├── wsgi.cpython-36.pyc │ │ │ └── wsgi.cpython-37.pyc │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ └── templates │ │ ├── base.html │ │ └── home.html ├── 2.QuotesAPI_DRF_React │ ├── quotes │ │ ├── Pipfile │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ ├── serializers.cpython-37.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ └── views.cpython-37.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── db.sqlite3 │ │ ├── manage.py │ │ ├── quotes │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── admin.cpython-36.pyc │ │ │ │ ├── admin.cpython-37.pyc │ │ │ │ ├── models.cpython-36.pyc │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ ├── urls.cpython-36.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ ├── views.cpython-36.pyc │ │ │ │ └── views.cpython-37.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── quotes_proj │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── settings.cpython-36.pyc │ │ │ │ ├── settings.cpython-37.pyc │ │ │ │ ├── urls.cpython-36.pyc │ │ │ │ ├── urls.cpython-37.pyc │ │ │ │ ├── wsgi.cpython-36.pyc │ │ │ │ └── wsgi.cpython-37.pyc │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ └── templates │ │ │ ├── base.html │ │ │ └── home.html │ └── quotes_react │ │ └── src │ │ └── App.js ├── 3.QutoesAPI_CRUD │ └── quotes │ │ ├── Pipfile │ │ ├── api │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── admin.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ ├── serializers.cpython-37.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ └── views.cpython-37.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-37.pyc │ │ ├── models.py │ │ ├── serializers.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ ├── db.sqlite3 │ │ ├── manage.py │ │ ├── quotes │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── admin.cpython-36.pyc │ │ │ ├── admin.cpython-37.pyc │ │ │ ├── models.cpython-36.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ ├── urls.cpython-36.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ ├── views.cpython-36.pyc │ │ │ └── views.cpython-37.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── __init__.cpython-37.pyc │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ ├── quotes_proj │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── settings.cpython-36.pyc │ │ │ ├── settings.cpython-37.pyc │ │ │ ├── urls.cpython-36.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ ├── wsgi.cpython-36.pyc │ │ │ └── wsgi.cpython-37.pyc │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ │ └── templates │ │ ├── base.html │ │ └── home.html ├── 4.QuotesAPI_Permission │ └── quotes │ │ ├── Pipfile │ │ ├── api │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── admin.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ ├── serializers.cpython-37.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ └── views.cpython-37.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-37.pyc │ │ ├── models.py │ │ ├── serializers.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ ├── db.sqlite3 │ │ ├── manage.py │ │ ├── quotes │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── admin.cpython-36.pyc │ │ │ ├── admin.cpython-37.pyc │ │ │ ├── models.cpython-36.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ ├── urls.cpython-36.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ ├── views.cpython-36.pyc │ │ │ └── views.cpython-37.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── __init__.cpython-37.pyc │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ ├── quotes_proj │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── settings.cpython-36.pyc │ │ │ ├── settings.cpython-37.pyc │ │ │ ├── urls.cpython-36.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ ├── wsgi.cpython-36.pyc │ │ │ └── wsgi.cpython-37.pyc │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ │ └── templates │ │ ├── base.html │ │ └── home.html └── 5.QuotesAPI_Authentication │ └── quotes │ ├── Pipfile │ ├── api │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── admin.cpython-37.pyc │ │ ├── models.cpython-37.pyc │ │ ├── serializers.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ └── views.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── db.sqlite3 │ ├── manage.py │ ├── quotes │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── admin.cpython-36.pyc │ │ ├── admin.cpython-37.pyc │ │ ├── models.cpython-36.pyc │ │ ├── models.cpython-37.pyc │ │ ├── urls.cpython-36.pyc │ │ ├── urls.cpython-37.pyc │ │ ├── views.cpython-36.pyc │ │ └── views.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── quotes_proj │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── settings.cpython-36.pyc │ │ ├── settings.cpython-37.pyc │ │ ├── urls.cpython-36.pyc │ │ ├── urls.cpython-37.pyc │ │ ├── wsgi.cpython-36.pyc │ │ └── wsgi.cpython-37.pyc │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ └── templates │ ├── base.html │ └── home.html ├── gitcommands.md ├── javascript ├── README.md ├── chapter1.js ├── es6-1-var-let-const.js ├── es6_2_arrow_function.js ├── es6_3_default_parameter.js ├── es6_4_classes.js ├── es6_5_set.js ├── es6_6_object_initializer.js ├── es6_7_destructuring.js ├── es6_8_spreadoperator.js ├── es6_9_promise.js ├── es6_modules │ ├── demo.mjs │ └── person.mjs ├── es7_async_await.js └── playground.js ├── node_modules ├── .yarn-integrity └── lodash │ ├── LICENSE │ ├── README.md │ ├── _DataView.js │ ├── _Hash.js │ ├── _LazyWrapper.js │ ├── _ListCache.js │ ├── _LodashWrapper.js │ ├── _Map.js │ ├── _MapCache.js │ ├── _Promise.js │ ├── _Set.js │ ├── _SetCache.js │ ├── _Stack.js │ ├── _Symbol.js │ ├── _Uint8Array.js │ ├── _WeakMap.js │ ├── _apply.js │ ├── _arrayAggregator.js │ ├── _arrayEach.js │ ├── _arrayEachRight.js │ ├── _arrayEvery.js │ ├── _arrayFilter.js │ ├── _arrayIncludes.js │ ├── _arrayIncludesWith.js │ ├── _arrayLikeKeys.js │ ├── _arrayMap.js │ ├── _arrayPush.js │ ├── _arrayReduce.js │ ├── _arrayReduceRight.js │ ├── _arraySample.js │ ├── _arraySampleSize.js │ ├── _arrayShuffle.js │ ├── _arraySome.js │ ├── _asciiSize.js │ ├── _asciiToArray.js │ ├── _asciiWords.js │ ├── _assignMergeValue.js │ ├── _assignValue.js │ ├── _assocIndexOf.js │ ├── _baseAggregator.js │ ├── _baseAssign.js │ ├── _baseAssignIn.js │ ├── _baseAssignValue.js │ ├── _baseAt.js │ ├── _baseClamp.js │ ├── _baseClone.js │ ├── _baseConforms.js │ ├── _baseConformsTo.js │ ├── _baseCreate.js │ ├── _baseDelay.js │ ├── _baseDifference.js │ ├── _baseEach.js │ ├── _baseEachRight.js │ ├── _baseEvery.js │ ├── _baseExtremum.js │ ├── _baseFill.js │ ├── _baseFilter.js │ ├── _baseFindIndex.js │ ├── _baseFindKey.js │ ├── _baseFlatten.js │ ├── _baseFor.js │ ├── _baseForOwn.js │ ├── _baseForOwnRight.js │ ├── _baseForRight.js │ ├── _baseFunctions.js │ ├── _baseGet.js │ ├── _baseGetAllKeys.js │ ├── _baseGetTag.js │ ├── _baseGt.js │ ├── _baseHas.js │ ├── _baseHasIn.js │ ├── _baseInRange.js │ ├── _baseIndexOf.js │ ├── _baseIndexOfWith.js │ ├── _baseIntersection.js │ ├── _baseInverter.js │ ├── _baseInvoke.js │ ├── _baseIsArguments.js │ ├── _baseIsArrayBuffer.js │ ├── _baseIsDate.js │ ├── _baseIsEqual.js │ ├── _baseIsEqualDeep.js │ ├── _baseIsMap.js │ ├── _baseIsMatch.js │ ├── _baseIsNaN.js │ ├── _baseIsNative.js │ ├── _baseIsRegExp.js │ ├── _baseIsSet.js │ ├── _baseIsTypedArray.js │ ├── _baseIteratee.js │ ├── _baseKeys.js │ ├── _baseKeysIn.js │ ├── _baseLodash.js │ ├── _baseLt.js │ ├── _baseMap.js │ ├── _baseMatches.js │ ├── _baseMatchesProperty.js │ ├── _baseMean.js │ ├── _baseMerge.js │ ├── _baseMergeDeep.js │ ├── _baseNth.js │ ├── _baseOrderBy.js │ ├── _basePick.js │ ├── _basePickBy.js │ ├── _baseProperty.js │ ├── _basePropertyDeep.js │ ├── _basePropertyOf.js │ ├── _basePullAll.js │ ├── _basePullAt.js │ ├── _baseRandom.js │ ├── _baseRange.js │ ├── _baseReduce.js │ ├── _baseRepeat.js │ ├── _baseRest.js │ ├── _baseSample.js │ ├── _baseSampleSize.js │ ├── _baseSet.js │ ├── _baseSetData.js │ ├── _baseSetToString.js │ ├── _baseShuffle.js │ ├── _baseSlice.js │ ├── _baseSome.js │ ├── _baseSortBy.js │ ├── _baseSortedIndex.js │ ├── _baseSortedIndexBy.js │ ├── _baseSortedUniq.js │ ├── _baseSum.js │ ├── _baseTimes.js │ ├── _baseToNumber.js │ ├── _baseToPairs.js │ ├── _baseToString.js │ ├── _baseUnary.js │ ├── _baseUniq.js │ ├── _baseUnset.js │ ├── _baseUpdate.js │ ├── _baseValues.js │ ├── _baseWhile.js │ ├── _baseWrapperValue.js │ ├── _baseXor.js │ ├── _baseZipObject.js │ ├── _cacheHas.js │ ├── _castArrayLikeObject.js │ ├── _castFunction.js │ ├── _castPath.js │ ├── _castRest.js │ ├── _castSlice.js │ ├── _charsEndIndex.js │ ├── _charsStartIndex.js │ ├── _cloneArrayBuffer.js │ ├── _cloneBuffer.js │ ├── _cloneDataView.js │ ├── _cloneRegExp.js │ ├── _cloneSymbol.js │ ├── _cloneTypedArray.js │ ├── _compareAscending.js │ ├── _compareMultiple.js │ ├── _composeArgs.js │ ├── _composeArgsRight.js │ ├── _copyArray.js │ ├── _copyObject.js │ ├── _copySymbols.js │ ├── _copySymbolsIn.js │ ├── _coreJsData.js │ ├── _countHolders.js │ ├── _createAggregator.js │ ├── _createAssigner.js │ ├── _createBaseEach.js │ ├── _createBaseFor.js │ ├── _createBind.js │ ├── _createCaseFirst.js │ ├── _createCompounder.js │ ├── _createCtor.js │ ├── _createCurry.js │ ├── _createFind.js │ ├── _createFlow.js │ ├── _createHybrid.js │ ├── _createInverter.js │ ├── _createMathOperation.js │ ├── _createOver.js │ ├── _createPadding.js │ ├── _createPartial.js │ ├── _createRange.js │ ├── _createRecurry.js │ ├── _createRelationalOperation.js │ ├── _createRound.js │ ├── _createSet.js │ ├── _createToPairs.js │ ├── _createWrap.js │ ├── _customDefaultsAssignIn.js │ ├── _customDefaultsMerge.js │ ├── _customOmitClone.js │ ├── _deburrLetter.js │ ├── _defineProperty.js │ ├── _equalArrays.js │ ├── _equalByTag.js │ ├── _equalObjects.js │ ├── _escapeHtmlChar.js │ ├── _escapeStringChar.js │ ├── _flatRest.js │ ├── _freeGlobal.js │ ├── _getAllKeys.js │ ├── _getAllKeysIn.js │ ├── _getData.js │ ├── _getFuncName.js │ ├── _getHolder.js │ ├── _getMapData.js │ ├── _getMatchData.js │ ├── _getNative.js │ ├── _getPrototype.js │ ├── _getRawTag.js │ ├── _getSymbols.js │ ├── _getSymbolsIn.js │ ├── _getTag.js │ ├── _getValue.js │ ├── _getView.js │ ├── _getWrapDetails.js │ ├── _hasPath.js │ ├── _hasUnicode.js │ ├── _hasUnicodeWord.js │ ├── _hashClear.js │ ├── _hashDelete.js │ ├── _hashGet.js │ ├── _hashHas.js │ ├── _hashSet.js │ ├── _initCloneArray.js │ ├── _initCloneByTag.js │ ├── _initCloneObject.js │ ├── _insertWrapDetails.js │ ├── _isFlattenable.js │ ├── _isIndex.js │ ├── _isIterateeCall.js │ ├── _isKey.js │ ├── _isKeyable.js │ ├── _isLaziable.js │ ├── _isMaskable.js │ ├── _isMasked.js │ ├── _isPrototype.js │ ├── _isStrictComparable.js │ ├── _iteratorToArray.js │ ├── _lazyClone.js │ ├── _lazyReverse.js │ ├── _lazyValue.js │ ├── _listCacheClear.js │ ├── _listCacheDelete.js │ ├── _listCacheGet.js │ ├── _listCacheHas.js │ ├── _listCacheSet.js │ ├── _mapCacheClear.js │ ├── _mapCacheDelete.js │ ├── _mapCacheGet.js │ ├── _mapCacheHas.js │ ├── _mapCacheSet.js │ ├── _mapToArray.js │ ├── _matchesStrictComparable.js │ ├── _memoizeCapped.js │ ├── _mergeData.js │ ├── _metaMap.js │ ├── _nativeCreate.js │ ├── _nativeKeys.js │ ├── _nativeKeysIn.js │ ├── _nodeUtil.js │ ├── _objectToString.js │ ├── _overArg.js │ ├── _overRest.js │ ├── _parent.js │ ├── _reEscape.js │ ├── _reEvaluate.js │ ├── _reInterpolate.js │ ├── _realNames.js │ ├── _reorder.js │ ├── _replaceHolders.js │ ├── _root.js │ ├── _safeGet.js │ ├── _setCacheAdd.js │ ├── _setCacheHas.js │ ├── _setData.js │ ├── _setToArray.js │ ├── _setToPairs.js │ ├── _setToString.js │ ├── _setWrapToString.js │ ├── _shortOut.js │ ├── _shuffleSelf.js │ ├── _stackClear.js │ ├── _stackDelete.js │ ├── _stackGet.js │ ├── _stackHas.js │ ├── _stackSet.js │ ├── _strictIndexOf.js │ ├── _strictLastIndexOf.js │ ├── _stringSize.js │ ├── _stringToArray.js │ ├── _stringToPath.js │ ├── _toKey.js │ ├── _toSource.js │ ├── _unescapeHtmlChar.js │ ├── _unicodeSize.js │ ├── _unicodeToArray.js │ ├── _unicodeWords.js │ ├── _updateWrapDetails.js │ ├── _wrapperClone.js │ ├── add.js │ ├── after.js │ ├── array.js │ ├── ary.js │ ├── assign.js │ ├── assignIn.js │ ├── assignInWith.js │ ├── assignWith.js │ ├── at.js │ ├── attempt.js │ ├── before.js │ ├── bind.js │ ├── bindAll.js │ ├── bindKey.js │ ├── camelCase.js │ ├── capitalize.js │ ├── castArray.js │ ├── ceil.js │ ├── chain.js │ ├── chunk.js │ ├── clamp.js │ ├── clone.js │ ├── cloneDeep.js │ ├── cloneDeepWith.js │ ├── cloneWith.js │ ├── collection.js │ ├── commit.js │ ├── compact.js │ ├── concat.js │ ├── cond.js │ ├── conforms.js │ ├── conformsTo.js │ ├── constant.js │ ├── core.js │ ├── core.min.js │ ├── countBy.js │ ├── create.js │ ├── curry.js │ ├── curryRight.js │ ├── date.js │ ├── debounce.js │ ├── deburr.js │ ├── defaultTo.js │ ├── defaults.js │ ├── defaultsDeep.js │ ├── defer.js │ ├── delay.js │ ├── difference.js │ ├── differenceBy.js │ ├── differenceWith.js │ ├── divide.js │ ├── drop.js │ ├── dropRight.js │ ├── dropRightWhile.js │ ├── dropWhile.js │ ├── each.js │ ├── eachRight.js │ ├── endsWith.js │ ├── entries.js │ ├── entriesIn.js │ ├── eq.js │ ├── escape.js │ ├── escapeRegExp.js │ ├── every.js │ ├── extend.js │ ├── extendWith.js │ ├── fill.js │ ├── filter.js │ ├── find.js │ ├── findIndex.js │ ├── findKey.js │ ├── findLast.js │ ├── findLastIndex.js │ ├── findLastKey.js │ ├── first.js │ ├── flatMap.js │ ├── flatMapDeep.js │ ├── flatMapDepth.js │ ├── flatten.js │ ├── flattenDeep.js │ ├── flattenDepth.js │ ├── flip.js │ ├── floor.js │ ├── flow.js │ ├── flowRight.js │ ├── forEach.js │ ├── forEachRight.js │ ├── forIn.js │ ├── forInRight.js │ ├── forOwn.js │ ├── forOwnRight.js │ ├── fp.js │ ├── fp │ ├── F.js │ ├── T.js │ ├── __.js │ ├── _baseConvert.js │ ├── _convertBrowser.js │ ├── _falseOptions.js │ ├── _mapping.js │ ├── _util.js │ ├── add.js │ ├── after.js │ ├── all.js │ ├── allPass.js │ ├── always.js │ ├── any.js │ ├── anyPass.js │ ├── apply.js │ ├── array.js │ ├── ary.js │ ├── assign.js │ ├── assignAll.js │ ├── assignAllWith.js │ ├── assignIn.js │ ├── assignInAll.js │ ├── assignInAllWith.js │ ├── assignInWith.js │ ├── assignWith.js │ ├── assoc.js │ ├── assocPath.js │ ├── at.js │ ├── attempt.js │ ├── before.js │ ├── bind.js │ ├── bindAll.js │ ├── bindKey.js │ ├── camelCase.js │ ├── capitalize.js │ ├── castArray.js │ ├── ceil.js │ ├── chain.js │ ├── chunk.js │ ├── clamp.js │ ├── clone.js │ ├── cloneDeep.js │ ├── cloneDeepWith.js │ ├── cloneWith.js │ ├── collection.js │ ├── commit.js │ ├── compact.js │ ├── complement.js │ ├── compose.js │ ├── concat.js │ ├── cond.js │ ├── conforms.js │ ├── conformsTo.js │ ├── constant.js │ ├── contains.js │ ├── convert.js │ ├── countBy.js │ ├── create.js │ ├── curry.js │ ├── curryN.js │ ├── curryRight.js │ ├── curryRightN.js │ ├── date.js │ ├── debounce.js │ ├── deburr.js │ ├── defaultTo.js │ ├── defaults.js │ ├── defaultsAll.js │ ├── defaultsDeep.js │ ├── defaultsDeepAll.js │ ├── defer.js │ ├── delay.js │ ├── difference.js │ ├── differenceBy.js │ ├── differenceWith.js │ ├── dissoc.js │ ├── dissocPath.js │ ├── divide.js │ ├── drop.js │ ├── dropLast.js │ ├── dropLastWhile.js │ ├── dropRight.js │ ├── dropRightWhile.js │ ├── dropWhile.js │ ├── each.js │ ├── eachRight.js │ ├── endsWith.js │ ├── entries.js │ ├── entriesIn.js │ ├── eq.js │ ├── equals.js │ ├── escape.js │ ├── escapeRegExp.js │ ├── every.js │ ├── extend.js │ ├── extendAll.js │ ├── extendAllWith.js │ ├── extendWith.js │ ├── fill.js │ ├── filter.js │ ├── find.js │ ├── findFrom.js │ ├── findIndex.js │ ├── findIndexFrom.js │ ├── findKey.js │ ├── findLast.js │ ├── findLastFrom.js │ ├── findLastIndex.js │ ├── findLastIndexFrom.js │ ├── findLastKey.js │ ├── first.js │ ├── flatMap.js │ ├── flatMapDeep.js │ ├── flatMapDepth.js │ ├── flatten.js │ ├── flattenDeep.js │ ├── flattenDepth.js │ ├── flip.js │ ├── floor.js │ ├── flow.js │ ├── flowRight.js │ ├── forEach.js │ ├── forEachRight.js │ ├── forIn.js │ ├── forInRight.js │ ├── forOwn.js │ ├── forOwnRight.js │ ├── fromPairs.js │ ├── function.js │ ├── functions.js │ ├── functionsIn.js │ ├── get.js │ ├── getOr.js │ ├── groupBy.js │ ├── gt.js │ ├── gte.js │ ├── has.js │ ├── hasIn.js │ ├── head.js │ ├── identical.js │ ├── identity.js │ ├── inRange.js │ ├── includes.js │ ├── includesFrom.js │ ├── indexBy.js │ ├── indexOf.js │ ├── indexOfFrom.js │ ├── init.js │ ├── initial.js │ ├── intersection.js │ ├── intersectionBy.js │ ├── intersectionWith.js │ ├── invert.js │ ├── invertBy.js │ ├── invertObj.js │ ├── invoke.js │ ├── invokeArgs.js │ ├── invokeArgsMap.js │ ├── invokeMap.js │ ├── isArguments.js │ ├── isArray.js │ ├── isArrayBuffer.js │ ├── isArrayLike.js │ ├── isArrayLikeObject.js │ ├── isBoolean.js │ ├── isBuffer.js │ ├── isDate.js │ ├── isElement.js │ ├── isEmpty.js │ ├── isEqual.js │ ├── isEqualWith.js │ ├── isError.js │ ├── isFinite.js │ ├── isFunction.js │ ├── isInteger.js │ ├── isLength.js │ ├── isMap.js │ ├── isMatch.js │ ├── isMatchWith.js │ ├── isNaN.js │ ├── isNative.js │ ├── isNil.js │ ├── isNull.js │ ├── isNumber.js │ ├── isObject.js │ ├── isObjectLike.js │ ├── isPlainObject.js │ ├── isRegExp.js │ ├── isSafeInteger.js │ ├── isSet.js │ ├── isString.js │ ├── isSymbol.js │ ├── isTypedArray.js │ ├── isUndefined.js │ ├── isWeakMap.js │ ├── isWeakSet.js │ ├── iteratee.js │ ├── join.js │ ├── juxt.js │ ├── kebabCase.js │ ├── keyBy.js │ ├── keys.js │ ├── keysIn.js │ ├── lang.js │ ├── last.js │ ├── lastIndexOf.js │ ├── lastIndexOfFrom.js │ ├── lowerCase.js │ ├── lowerFirst.js │ ├── lt.js │ ├── lte.js │ ├── map.js │ ├── mapKeys.js │ ├── mapValues.js │ ├── matches.js │ ├── matchesProperty.js │ ├── math.js │ ├── max.js │ ├── maxBy.js │ ├── mean.js │ ├── meanBy.js │ ├── memoize.js │ ├── merge.js │ ├── mergeAll.js │ ├── mergeAllWith.js │ ├── mergeWith.js │ ├── method.js │ ├── methodOf.js │ ├── min.js │ ├── minBy.js │ ├── mixin.js │ ├── multiply.js │ ├── nAry.js │ ├── negate.js │ ├── next.js │ ├── noop.js │ ├── now.js │ ├── nth.js │ ├── nthArg.js │ ├── number.js │ ├── object.js │ ├── omit.js │ ├── omitAll.js │ ├── omitBy.js │ ├── once.js │ ├── orderBy.js │ ├── over.js │ ├── overArgs.js │ ├── overEvery.js │ ├── overSome.js │ ├── pad.js │ ├── padChars.js │ ├── padCharsEnd.js │ ├── padCharsStart.js │ ├── padEnd.js │ ├── padStart.js │ ├── parseInt.js │ ├── partial.js │ ├── partialRight.js │ ├── partition.js │ ├── path.js │ ├── pathEq.js │ ├── pathOr.js │ ├── paths.js │ ├── pick.js │ ├── pickAll.js │ ├── pickBy.js │ ├── pipe.js │ ├── placeholder.js │ ├── plant.js │ ├── pluck.js │ ├── prop.js │ ├── propEq.js │ ├── propOr.js │ ├── property.js │ ├── propertyOf.js │ ├── props.js │ ├── pull.js │ ├── pullAll.js │ ├── pullAllBy.js │ ├── pullAllWith.js │ ├── pullAt.js │ ├── random.js │ ├── range.js │ ├── rangeRight.js │ ├── rangeStep.js │ ├── rangeStepRight.js │ ├── rearg.js │ ├── reduce.js │ ├── reduceRight.js │ ├── reject.js │ ├── remove.js │ ├── repeat.js │ ├── replace.js │ ├── rest.js │ ├── restFrom.js │ ├── result.js │ ├── reverse.js │ ├── round.js │ ├── sample.js │ ├── sampleSize.js │ ├── seq.js │ ├── set.js │ ├── setWith.js │ ├── shuffle.js │ ├── size.js │ ├── slice.js │ ├── snakeCase.js │ ├── some.js │ ├── sortBy.js │ ├── sortedIndex.js │ ├── sortedIndexBy.js │ ├── sortedIndexOf.js │ ├── sortedLastIndex.js │ ├── sortedLastIndexBy.js │ ├── sortedLastIndexOf.js │ ├── sortedUniq.js │ ├── sortedUniqBy.js │ ├── split.js │ ├── spread.js │ ├── spreadFrom.js │ ├── startCase.js │ ├── startsWith.js │ ├── string.js │ ├── stubArray.js │ ├── stubFalse.js │ ├── stubObject.js │ ├── stubString.js │ ├── stubTrue.js │ ├── subtract.js │ ├── sum.js │ ├── sumBy.js │ ├── symmetricDifference.js │ ├── symmetricDifferenceBy.js │ ├── symmetricDifferenceWith.js │ ├── tail.js │ ├── take.js │ ├── takeLast.js │ ├── takeLastWhile.js │ ├── takeRight.js │ ├── takeRightWhile.js │ ├── takeWhile.js │ ├── tap.js │ ├── template.js │ ├── templateSettings.js │ ├── throttle.js │ ├── thru.js │ ├── times.js │ ├── toArray.js │ ├── toFinite.js │ ├── toInteger.js │ ├── toIterator.js │ ├── toJSON.js │ ├── toLength.js │ ├── toLower.js │ ├── toNumber.js │ ├── toPairs.js │ ├── toPairsIn.js │ ├── toPath.js │ ├── toPlainObject.js │ ├── toSafeInteger.js │ ├── toString.js │ ├── toUpper.js │ ├── transform.js │ ├── trim.js │ ├── trimChars.js │ ├── trimCharsEnd.js │ ├── trimCharsStart.js │ ├── trimEnd.js │ ├── trimStart.js │ ├── truncate.js │ ├── unapply.js │ ├── unary.js │ ├── unescape.js │ ├── union.js │ ├── unionBy.js │ ├── unionWith.js │ ├── uniq.js │ ├── uniqBy.js │ ├── uniqWith.js │ ├── uniqueId.js │ ├── unnest.js │ ├── unset.js │ ├── unzip.js │ ├── unzipWith.js │ ├── update.js │ ├── updateWith.js │ ├── upperCase.js │ ├── upperFirst.js │ ├── useWith.js │ ├── util.js │ ├── value.js │ ├── valueOf.js │ ├── values.js │ ├── valuesIn.js │ ├── where.js │ ├── whereEq.js │ ├── without.js │ ├── words.js │ ├── wrap.js │ ├── wrapperAt.js │ ├── wrapperChain.js │ ├── wrapperLodash.js │ ├── wrapperReverse.js │ ├── wrapperValue.js │ ├── xor.js │ ├── xorBy.js │ ├── xorWith.js │ ├── zip.js │ ├── zipAll.js │ ├── zipObj.js │ ├── zipObject.js │ ├── zipObjectDeep.js │ └── zipWith.js │ ├── fromPairs.js │ ├── function.js │ ├── functions.js │ ├── functionsIn.js │ ├── get.js │ ├── groupBy.js │ ├── gt.js │ ├── gte.js │ ├── has.js │ ├── hasIn.js │ ├── head.js │ ├── identity.js │ ├── inRange.js │ ├── includes.js │ ├── index.js │ ├── indexOf.js │ ├── initial.js │ ├── intersection.js │ ├── intersectionBy.js │ ├── intersectionWith.js │ ├── invert.js │ ├── invertBy.js │ ├── invoke.js │ ├── invokeMap.js │ ├── isArguments.js │ ├── isArray.js │ ├── isArrayBuffer.js │ ├── isArrayLike.js │ ├── isArrayLikeObject.js │ ├── isBoolean.js │ ├── isBuffer.js │ ├── isDate.js │ ├── isElement.js │ ├── isEmpty.js │ ├── isEqual.js │ ├── isEqualWith.js │ ├── isError.js │ ├── isFinite.js │ ├── isFunction.js │ ├── isInteger.js │ ├── isLength.js │ ├── isMap.js │ ├── isMatch.js │ ├── isMatchWith.js │ ├── isNaN.js │ ├── isNative.js │ ├── isNil.js │ ├── isNull.js │ ├── isNumber.js │ ├── isObject.js │ ├── isObjectLike.js │ ├── isPlainObject.js │ ├── isRegExp.js │ ├── isSafeInteger.js │ ├── isSet.js │ ├── isString.js │ ├── isSymbol.js │ ├── isTypedArray.js │ ├── isUndefined.js │ ├── isWeakMap.js │ ├── isWeakSet.js │ ├── iteratee.js │ ├── join.js │ ├── kebabCase.js │ ├── keyBy.js │ ├── keys.js │ ├── keysIn.js │ ├── lang.js │ ├── last.js │ ├── lastIndexOf.js │ ├── lodash.js │ ├── lodash.min.js │ ├── lowerCase.js │ ├── lowerFirst.js │ ├── lt.js │ ├── lte.js │ ├── map.js │ ├── mapKeys.js │ ├── mapValues.js │ ├── matches.js │ ├── matchesProperty.js │ ├── math.js │ ├── max.js │ ├── maxBy.js │ ├── mean.js │ ├── meanBy.js │ ├── memoize.js │ ├── merge.js │ ├── mergeWith.js │ ├── method.js │ ├── methodOf.js │ ├── min.js │ ├── minBy.js │ ├── mixin.js │ ├── multiply.js │ ├── negate.js │ ├── next.js │ ├── noop.js │ ├── now.js │ ├── nth.js │ ├── nthArg.js │ ├── number.js │ ├── object.js │ ├── omit.js │ ├── omitBy.js │ ├── once.js │ ├── orderBy.js │ ├── over.js │ ├── overArgs.js │ ├── overEvery.js │ ├── overSome.js │ ├── package.json │ ├── pad.js │ ├── padEnd.js │ ├── padStart.js │ ├── parseInt.js │ ├── partial.js │ ├── partialRight.js │ ├── partition.js │ ├── pick.js │ ├── pickBy.js │ ├── plant.js │ ├── property.js │ ├── propertyOf.js │ ├── pull.js │ ├── pullAll.js │ ├── pullAllBy.js │ ├── pullAllWith.js │ ├── pullAt.js │ ├── random.js │ ├── range.js │ ├── rangeRight.js │ ├── rearg.js │ ├── reduce.js │ ├── reduceRight.js │ ├── reject.js │ ├── remove.js │ ├── repeat.js │ ├── replace.js │ ├── rest.js │ ├── result.js │ ├── reverse.js │ ├── round.js │ ├── sample.js │ ├── sampleSize.js │ ├── seq.js │ ├── set.js │ ├── setWith.js │ ├── shuffle.js │ ├── size.js │ ├── slice.js │ ├── snakeCase.js │ ├── some.js │ ├── sortBy.js │ ├── sortedIndex.js │ ├── sortedIndexBy.js │ ├── sortedIndexOf.js │ ├── sortedLastIndex.js │ ├── sortedLastIndexBy.js │ ├── sortedLastIndexOf.js │ ├── sortedUniq.js │ ├── sortedUniqBy.js │ ├── split.js │ ├── spread.js │ ├── startCase.js │ ├── startsWith.js │ ├── string.js │ ├── stubArray.js │ ├── stubFalse.js │ ├── stubObject.js │ ├── stubString.js │ ├── stubTrue.js │ ├── subtract.js │ ├── sum.js │ ├── sumBy.js │ ├── tail.js │ ├── take.js │ ├── takeRight.js │ ├── takeRightWhile.js │ ├── takeWhile.js │ ├── tap.js │ ├── template.js │ ├── templateSettings.js │ ├── throttle.js │ ├── thru.js │ ├── times.js │ ├── toArray.js │ ├── toFinite.js │ ├── toInteger.js │ ├── toIterator.js │ ├── toJSON.js │ ├── toLength.js │ ├── toLower.js │ ├── toNumber.js │ ├── toPairs.js │ ├── toPairsIn.js │ ├── toPath.js │ ├── toPlainObject.js │ ├── toSafeInteger.js │ ├── toString.js │ ├── toUpper.js │ ├── transform.js │ ├── trim.js │ ├── trimEnd.js │ ├── trimStart.js │ ├── truncate.js │ ├── unary.js │ ├── unescape.js │ ├── union.js │ ├── unionBy.js │ ├── unionWith.js │ ├── uniq.js │ ├── uniqBy.js │ ├── uniqWith.js │ ├── uniqueId.js │ ├── unset.js │ ├── unzip.js │ ├── unzipWith.js │ ├── update.js │ ├── updateWith.js │ ├── upperCase.js │ ├── upperFirst.js │ ├── util.js │ ├── value.js │ ├── valueOf.js │ ├── values.js │ ├── valuesIn.js │ ├── without.js │ ├── words.js │ ├── wrap.js │ ├── wrapperAt.js │ ├── wrapperChain.js │ ├── wrapperLodash.js │ ├── wrapperReverse.js │ ├── wrapperValue.js │ ├── xor.js │ ├── xorBy.js │ ├── xorWith.js │ ├── zip.js │ ├── zipObject.js │ ├── zipObjectDeep.js │ └── zipWith.js ├── package-lock.json ├── package.json ├── playground.js ├── py-playground.py ├── python-language ├── README.md ├── automation │ └── web-browser │ │ ├── browser-script.py │ │ ├── flutter.sh │ │ └── websites.txt ├── playground.py ├── python-advanced │ ├── Concurrency │ │ ├── download_concurrent1.py │ │ └── download_serial.py │ ├── chapter1.py │ ├── chapter2.py │ ├── chapter2_test.py │ ├── chapter3.py │ ├── chapter4.py │ ├── chapter5_sqlite_db │ │ ├── chapter5.py │ │ ├── database │ │ │ ├── mydatabase.py │ │ │ └── sample_data.sql │ │ └── mydb.sqlite │ ├── chapter6_generator.py │ ├── chapter7_web_crawler_scrapy │ │ └── amazon_spider.py │ ├── chapter8_exe │ │ ├── favorite_sites.py │ │ └── sites.txt │ ├── chapter9_selenium │ │ ├── chapter9.py │ │ └── chromedriver │ ├── closure.py │ ├── data │ │ ├── article.txt │ │ ├── expense.csv │ │ └── names.txt │ ├── decorator.py │ ├── html │ │ ├── aj.html │ │ ├── error.log │ │ └── simplenews.html │ ├── list_slice.py │ ├── mspack │ │ ├── __init__.py │ │ ├── msmath.py │ │ └── msstring.py │ └── webscrap │ │ ├── wlog.py │ │ └── wscrap.py ├── python-beginner │ ├── .vscode │ │ └── settings.json │ ├── chapter10.py │ ├── chapter11.py │ ├── chapter2.py │ ├── chapter3.py │ ├── chapter4.py │ ├── chapter5.py │ ├── chapter6.py │ ├── chapter7.py │ ├── chapter8.py │ ├── chapter9.py │ ├── helloworld.py │ ├── mspack │ │ ├── __init__.py │ │ ├── msmath.py │ │ └── msstring.py │ └── mymath.py └── python-extra │ └── map-filter-reduce.py ├── react-native ├── README.md ├── simple_counter │ ├── .expo │ │ ├── packager-info.json │ │ └── settings.json │ ├── App.js │ ├── app.json │ ├── assets │ │ ├── icon.png │ │ └── splash.png │ ├── babel.config.js │ └── package.json └── t1_helloworld │ ├── .expo │ ├── packager-info.json │ └── settings.json │ ├── .gitignore │ ├── .watchmanconfig │ ├── App.js │ ├── app.json │ ├── assets │ ├── icon.png │ └── splash.png │ ├── babel.config.js │ ├── package.json │ └── yarn.lock └── yarn.lock /CNAME: -------------------------------------------------------------------------------- 1 | pythonbangla.com -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-minimal 2 | title: পাইথন বাংলা | Bangla Python Tutorial 3 | description: বাংলায় পাইথন প্রোগ্রামিং এবং সফটওয়ার ডেভলপমেন্ট রিলেটেড ভিডিও টিউটোরিয়াল। Bangla Python Programming and software development related video tutorial 4 | -------------------------------------------------------------------------------- /c-programming/chapter1/1.hello_world.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(){ 4 | printf("Hello World\n"); 5 | return 0; 6 | } -------------------------------------------------------------------------------- /cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/cover.png -------------------------------------------------------------------------------- /django-framework/ch1_helloworld/Pipfile: -------------------------------------------------------------------------------- 1 | [[source]] 2 | url = "https://pypi.python.org/simple" 3 | verify_ssl = true 4 | name = "pypi" 5 | 6 | [packages] 7 | django = "*" 8 | 9 | [dev-packages] 10 | 11 | [requires] 12 | python_version = "3.6" 13 | -------------------------------------------------------------------------------- /django-framework/ch1_helloworld/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch1_helloworld/db.sqlite3 -------------------------------------------------------------------------------- /django-framework/ch1_helloworld/helloworld/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch1_helloworld/helloworld/__init__.py -------------------------------------------------------------------------------- /django-framework/ch1_helloworld/main_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch1_helloworld/main_app/__init__.py -------------------------------------------------------------------------------- /django-framework/ch1_helloworld/main_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /django-framework/ch1_helloworld/main_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class MainAppConfig(AppConfig): 5 | name = 'main_app' 6 | -------------------------------------------------------------------------------- /django-framework/ch1_helloworld/main_app/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch1_helloworld/main_app/migrations/__init__.py -------------------------------------------------------------------------------- /django-framework/ch1_helloworld/main_app/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /django-framework/ch1_helloworld/main_app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /django-framework/ch1_helloworld/main_app/views.py: -------------------------------------------------------------------------------- 1 | from django.http import HttpResponse 2 | 3 | def homeView(request): 4 | return HttpResponse('Hello World') 5 | 6 | def anotherView(request): 7 | return HttpResponse("

Another

") -------------------------------------------------------------------------------- /django-framework/ch2_template_test/Pipfile: -------------------------------------------------------------------------------- 1 | [[source]] 2 | url = "https://pypi.python.org/simple" 3 | verify_ssl = true 4 | name = "pypi" 5 | 6 | [packages] 7 | django = "*" 8 | 9 | [dev-packages] 10 | 11 | [requires] 12 | python_version = "3.6" 13 | -------------------------------------------------------------------------------- /django-framework/ch2_template_test/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn hello_template_proj.wsgi --log-file - -------------------------------------------------------------------------------- /django-framework/ch2_template_test/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch2_template_test/db.sqlite3 -------------------------------------------------------------------------------- /django-framework/ch2_template_test/hello_template_proj/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch2_template_test/hello_template_proj/__init__.py -------------------------------------------------------------------------------- /django-framework/ch2_template_test/main_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch2_template_test/main_app/__init__.py -------------------------------------------------------------------------------- /django-framework/ch2_template_test/main_app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /django-framework/ch2_template_test/main_app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class MainAppConfig(AppConfig): 5 | name = 'main_app' 6 | -------------------------------------------------------------------------------- /django-framework/ch2_template_test/main_app/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch2_template_test/main_app/migrations/__init__.py -------------------------------------------------------------------------------- /django-framework/ch2_template_test/main_app/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /django-framework/ch2_template_test/main_app/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.HomeView.as_view(), name="home"), 6 | path('about/', views.AboutView.as_view(), name="about"), 7 | ] 8 | -------------------------------------------------------------------------------- /django-framework/ch2_template_test/templates/about.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | {% block body %} 3 |

About me

4 | {% endblock %} -------------------------------------------------------------------------------- /django-framework/ch4_model_admin/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "/Users/mahmud/.local/share/virtualenvs/ch4_model_admin-yPk46xzm/bin/python" 3 | } -------------------------------------------------------------------------------- /django-framework/ch4_model_admin/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch4_model_admin/db.sqlite3 -------------------------------------------------------------------------------- /django-framework/ch4_model_admin/quotes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch4_model_admin/quotes/__init__.py -------------------------------------------------------------------------------- /django-framework/ch4_model_admin/quotes/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | from . models import QuoteCategory 4 | from . models import Quote 5 | 6 | admin.site.register(QuoteCategory) 7 | admin.site.register(Quote) 8 | -------------------------------------------------------------------------------- /django-framework/ch4_model_admin/quotes/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class QuotesConfig(AppConfig): 5 | name = 'quotes' 6 | -------------------------------------------------------------------------------- /django-framework/ch4_model_admin/quotes/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch4_model_admin/quotes/migrations/__init__.py -------------------------------------------------------------------------------- /django-framework/ch4_model_admin/quotes/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /django-framework/ch4_model_admin/quotes/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.HomeView.as_view(), name="home"), 6 | ] 7 | -------------------------------------------------------------------------------- /django-framework/ch4_model_admin/quotes_proj/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch4_model_admin/quotes_proj/__init__.py -------------------------------------------------------------------------------- /django-framework/ch5_postgresql/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "/Users/mahmud/.local/share/virtualenvs/ch4_model_admin-NTddhX1N/bin/python" 3 | } -------------------------------------------------------------------------------- /django-framework/ch5_postgresql/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch5_postgresql/db.sqlite3 -------------------------------------------------------------------------------- /django-framework/ch5_postgresql/quotes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch5_postgresql/quotes/__init__.py -------------------------------------------------------------------------------- /django-framework/ch5_postgresql/quotes/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | from . models import QuoteCategory 4 | from . models import Quote 5 | 6 | admin.site.register(QuoteCategory) 7 | admin.site.register(Quote) 8 | -------------------------------------------------------------------------------- /django-framework/ch5_postgresql/quotes/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class QuotesConfig(AppConfig): 5 | name = 'quotes' 6 | -------------------------------------------------------------------------------- /django-framework/ch5_postgresql/quotes/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch5_postgresql/quotes/migrations/__init__.py -------------------------------------------------------------------------------- /django-framework/ch5_postgresql/quotes/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /django-framework/ch5_postgresql/quotes/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | 3 | from . import views 4 | 5 | urlpatterns = [ 6 | path('', views.HomeView.as_view(), name="home" ) 7 | ] 8 | -------------------------------------------------------------------------------- /django-framework/ch5_postgresql/quotes_proj/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch5_postgresql/quotes_proj/__init__.py -------------------------------------------------------------------------------- /django-framework/ch6_static/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "/Users/mahmud/.local/share/virtualenvs/ch6_static-KF-4L6Jz/bin/python" 3 | } -------------------------------------------------------------------------------- /django-framework/ch6_static/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch6_static/db.sqlite3 -------------------------------------------------------------------------------- /django-framework/ch6_static/startbootstrap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch6_static/startbootstrap/__init__.py -------------------------------------------------------------------------------- /django-framework/ch6_static/startbootstrap/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /django-framework/ch6_static/startbootstrap/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class StartbootstrapConfig(AppConfig): 5 | name = 'startbootstrap' 6 | -------------------------------------------------------------------------------- /django-framework/ch6_static/startbootstrap/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch6_static/startbootstrap/migrations/__init__.py -------------------------------------------------------------------------------- /django-framework/ch6_static/startbootstrap/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /django-framework/ch6_static/startbootstrap/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /django-framework/ch6_static/startbootstrap/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | 3 | from . import views 4 | 5 | urlpatterns = [ 6 | path('', views.HomeView.as_view(), name="home"), 7 | ] -------------------------------------------------------------------------------- /django-framework/ch6_static/startbootstrap/views.py: -------------------------------------------------------------------------------- 1 | from django.views.generic import TemplateView 2 | 3 | 4 | class HomeView(TemplateView): 5 | template_name = "index.html" 6 | -------------------------------------------------------------------------------- /django-framework/ch6_static/startbootstrap_proj/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch6_static/startbootstrap_proj/__init__.py -------------------------------------------------------------------------------- /django-framework/ch6_static/static/img/bg-masthead.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch6_static/static/img/bg-masthead.jpg -------------------------------------------------------------------------------- /django-framework/ch6_static/static/img/bg-showcase-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch6_static/static/img/bg-showcase-1.jpg -------------------------------------------------------------------------------- /django-framework/ch6_static/static/img/bg-showcase-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch6_static/static/img/bg-showcase-2.jpg -------------------------------------------------------------------------------- /django-framework/ch6_static/static/img/bg-showcase-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch6_static/static/img/bg-showcase-3.jpg -------------------------------------------------------------------------------- /django-framework/ch6_static/static/img/testimonials-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch6_static/static/img/testimonials-1.jpg -------------------------------------------------------------------------------- /django-framework/ch6_static/static/img/testimonials-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch6_static/static/img/testimonials-2.jpg -------------------------------------------------------------------------------- /django-framework/ch6_static/static/img/testimonials-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch6_static/static/img/testimonials-3.jpg -------------------------------------------------------------------------------- /django-framework/ch6_static/static/scss/_footer.scss: -------------------------------------------------------------------------------- 1 | footer.footer { 2 | padding-top: 4rem; 3 | padding-bottom: 4rem; 4 | } 5 | -------------------------------------------------------------------------------- /django-framework/ch6_static/static/scss/_global.scss: -------------------------------------------------------------------------------- 1 | body { 2 | @include body-font; 3 | } 4 | 5 | h1, 6 | h2, 7 | h3, 8 | h4, 9 | h5, 10 | h6 { 11 | @include body-font; 12 | font-weight: 700; 13 | } 14 | -------------------------------------------------------------------------------- /django-framework/ch6_static/static/vendor/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch6_static/static/vendor/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /django-framework/ch6_static/static/vendor/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch6_static/static/vendor/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /django-framework/ch6_static/static/vendor/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch6_static/static/vendor/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /django-framework/ch6_static/static/vendor/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch6_static/static/vendor/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /django-framework/ch6_static/static/vendor/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch6_static/static/vendor/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /django-framework/ch6_static/static/vendor/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /django-framework/ch6_static/static/vendor/font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /django-framework/ch6_static/static/vendor/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /django-framework/ch6_static/static/vendor/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /django-framework/ch6_static/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch6_static/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.eot -------------------------------------------------------------------------------- /django-framework/ch6_static/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch6_static/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.ttf -------------------------------------------------------------------------------- /django-framework/ch7_heroku/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "/Users/mahmud/.local/share/virtualenvs/ch6_static-KF-4L6Jz/bin/python" 3 | } -------------------------------------------------------------------------------- /django-framework/ch7_heroku/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn startbootstrap_proj.wsgi --log-file - -------------------------------------------------------------------------------- /django-framework/ch7_heroku/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch7_heroku/db.sqlite3 -------------------------------------------------------------------------------- /django-framework/ch7_heroku/startbootstrap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch7_heroku/startbootstrap/__init__.py -------------------------------------------------------------------------------- /django-framework/ch7_heroku/startbootstrap/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /django-framework/ch7_heroku/startbootstrap/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class StartbootstrapConfig(AppConfig): 5 | name = 'startbootstrap' 6 | -------------------------------------------------------------------------------- /django-framework/ch7_heroku/startbootstrap/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch7_heroku/startbootstrap/migrations/__init__.py -------------------------------------------------------------------------------- /django-framework/ch7_heroku/startbootstrap/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /django-framework/ch7_heroku/startbootstrap/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /django-framework/ch7_heroku/startbootstrap/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | 3 | from . import views 4 | 5 | urlpatterns = [ 6 | path('', views.HomeView.as_view(), name="home"), 7 | ] -------------------------------------------------------------------------------- /django-framework/ch7_heroku/startbootstrap/views.py: -------------------------------------------------------------------------------- 1 | from django.views.generic import TemplateView 2 | 3 | 4 | class HomeView(TemplateView): 5 | template_name = "index.html" 6 | -------------------------------------------------------------------------------- /django-framework/ch7_heroku/startbootstrap_proj/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch7_heroku/startbootstrap_proj/__init__.py -------------------------------------------------------------------------------- /django-framework/ch7_heroku/static/img/bg-masthead.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch7_heroku/static/img/bg-masthead.jpg -------------------------------------------------------------------------------- /django-framework/ch7_heroku/static/img/bg-showcase-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch7_heroku/static/img/bg-showcase-1.jpg -------------------------------------------------------------------------------- /django-framework/ch7_heroku/static/img/bg-showcase-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch7_heroku/static/img/bg-showcase-2.jpg -------------------------------------------------------------------------------- /django-framework/ch7_heroku/static/img/bg-showcase-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch7_heroku/static/img/bg-showcase-3.jpg -------------------------------------------------------------------------------- /django-framework/ch7_heroku/static/img/testimonials-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch7_heroku/static/img/testimonials-1.jpg -------------------------------------------------------------------------------- /django-framework/ch7_heroku/static/img/testimonials-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch7_heroku/static/img/testimonials-2.jpg -------------------------------------------------------------------------------- /django-framework/ch7_heroku/static/img/testimonials-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch7_heroku/static/img/testimonials-3.jpg -------------------------------------------------------------------------------- /django-framework/ch7_heroku/static/scss/_footer.scss: -------------------------------------------------------------------------------- 1 | footer.footer { 2 | padding-top: 4rem; 3 | padding-bottom: 4rem; 4 | } 5 | -------------------------------------------------------------------------------- /django-framework/ch7_heroku/static/scss/_global.scss: -------------------------------------------------------------------------------- 1 | body { 2 | @include body-font; 3 | } 4 | 5 | h1, 6 | h2, 7 | h3, 8 | h4, 9 | h5, 10 | h6 { 11 | @include body-font; 12 | font-weight: 700; 13 | } 14 | -------------------------------------------------------------------------------- /django-framework/ch7_heroku/static/vendor/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch7_heroku/static/vendor/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /django-framework/ch7_heroku/static/vendor/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch7_heroku/static/vendor/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /django-framework/ch7_heroku/static/vendor/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch7_heroku/static/vendor/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /django-framework/ch7_heroku/static/vendor/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch7_heroku/static/vendor/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /django-framework/ch7_heroku/static/vendor/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch7_heroku/static/vendor/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /django-framework/ch7_heroku/static/vendor/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /django-framework/ch7_heroku/static/vendor/font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /django-framework/ch7_heroku/static/vendor/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /django-framework/ch7_heroku/static/vendor/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /django-framework/ch7_heroku/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch7_heroku/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.eot -------------------------------------------------------------------------------- /django-framework/ch7_heroku/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-framework/ch7_heroku/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.ttf -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/api/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/api/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/api/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/api/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/api/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/api/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/api/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/api/__pycache__/serializers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/api/__pycache__/serializers.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/api/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/api/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/api/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/api/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/api/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/api/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ApiConfig(AppConfig): 5 | name = 'api' 6 | -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/api/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/api/migrations/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/api/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/api/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/api/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/api/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/db.sqlite3 -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | from . models import QuoteCategory 4 | from . models import Quote 5 | 6 | admin.site.register(QuoteCategory) 7 | admin.site.register(Quote) 8 | -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class QuotesConfig(AppConfig): 5 | name = 'quotes' 6 | -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes/migrations/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.HomeView.as_view(), name="home"), 6 | ] 7 | -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes_proj/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes_proj/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes_proj/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes_proj/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes_proj/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes_proj/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes_proj/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes_proj/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes_proj/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes_proj/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes_proj/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes_proj/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes_proj/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes_proj/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes_proj/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes_proj/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /django-rest-framework/1.QuotesApi/quotes_proj/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/1.QuotesApi/quotes_proj/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/2.QuotesAPI_DRF_React/quotes/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/2.QuotesAPI_DRF_React/quotes/api/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/2.QuotesAPI_DRF_React/quotes/api/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /django-rest-framework/2.QuotesAPI_DRF_React/quotes/api/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ApiConfig(AppConfig): 5 | name = 'api' 6 | -------------------------------------------------------------------------------- /django-rest-framework/2.QuotesAPI_DRF_React/quotes/api/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/2.QuotesAPI_DRF_React/quotes/api/migrations/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/2.QuotesAPI_DRF_React/quotes/api/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /django-rest-framework/2.QuotesAPI_DRF_React/quotes/api/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /django-rest-framework/2.QuotesAPI_DRF_React/quotes/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/2.QuotesAPI_DRF_React/quotes/db.sqlite3 -------------------------------------------------------------------------------- /django-rest-framework/2.QuotesAPI_DRF_React/quotes/quotes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/2.QuotesAPI_DRF_React/quotes/quotes/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/2.QuotesAPI_DRF_React/quotes/quotes/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | from . models import QuoteCategory 4 | from . models import Quote 5 | 6 | admin.site.register(QuoteCategory) 7 | admin.site.register(Quote) 8 | -------------------------------------------------------------------------------- /django-rest-framework/2.QuotesAPI_DRF_React/quotes/quotes/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class QuotesConfig(AppConfig): 5 | name = 'quotes' 6 | -------------------------------------------------------------------------------- /django-rest-framework/2.QuotesAPI_DRF_React/quotes/quotes/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/2.QuotesAPI_DRF_React/quotes/quotes/migrations/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/2.QuotesAPI_DRF_React/quotes/quotes/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /django-rest-framework/2.QuotesAPI_DRF_React/quotes/quotes/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.HomeView.as_view(), name="home"), 6 | ] 7 | -------------------------------------------------------------------------------- /django-rest-framework/2.QuotesAPI_DRF_React/quotes/quotes_proj/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/2.QuotesAPI_DRF_React/quotes/quotes_proj/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/3.QutoesAPI_CRUD/quotes/api/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/api/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/3.QutoesAPI_CRUD/quotes/api/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/api/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/3.QutoesAPI_CRUD/quotes/api/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/api/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/3.QutoesAPI_CRUD/quotes/api/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/api/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/3.QutoesAPI_CRUD/quotes/api/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/api/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/3.QutoesAPI_CRUD/quotes/api/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/api/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/api/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ApiConfig(AppConfig): 5 | name = 'api' 6 | -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/api/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/3.QutoesAPI_CRUD/quotes/api/migrations/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/api/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/api/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/3.QutoesAPI_CRUD/quotes/db.sqlite3 -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | from . models import QuoteCategory 4 | from . models import Quote 5 | 6 | admin.site.register(QuoteCategory) 7 | admin.site.register(Quote) 8 | -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class QuotesConfig(AppConfig): 5 | name = 'quotes' 6 | -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes/migrations/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.HomeView.as_view(), name="home"), 6 | ] 7 | -------------------------------------------------------------------------------- /django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes_proj/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/3.QutoesAPI_CRUD/quotes/quotes_proj/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/4.QuotesAPI_Permission/quotes/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/4.QuotesAPI_Permission/quotes/api/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/4.QuotesAPI_Permission/quotes/api/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /django-rest-framework/4.QuotesAPI_Permission/quotes/api/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ApiConfig(AppConfig): 5 | name = 'api' 6 | -------------------------------------------------------------------------------- /django-rest-framework/4.QuotesAPI_Permission/quotes/api/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/4.QuotesAPI_Permission/quotes/api/migrations/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/4.QuotesAPI_Permission/quotes/api/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /django-rest-framework/4.QuotesAPI_Permission/quotes/api/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /django-rest-framework/4.QuotesAPI_Permission/quotes/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/4.QuotesAPI_Permission/quotes/db.sqlite3 -------------------------------------------------------------------------------- /django-rest-framework/4.QuotesAPI_Permission/quotes/quotes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/4.QuotesAPI_Permission/quotes/quotes/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/4.QuotesAPI_Permission/quotes/quotes/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | from . models import QuoteCategory 4 | from . models import Quote 5 | 6 | admin.site.register(QuoteCategory) 7 | admin.site.register(Quote) 8 | -------------------------------------------------------------------------------- /django-rest-framework/4.QuotesAPI_Permission/quotes/quotes/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class QuotesConfig(AppConfig): 5 | name = 'quotes' 6 | -------------------------------------------------------------------------------- /django-rest-framework/4.QuotesAPI_Permission/quotes/quotes/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/4.QuotesAPI_Permission/quotes/quotes/migrations/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/4.QuotesAPI_Permission/quotes/quotes/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /django-rest-framework/4.QuotesAPI_Permission/quotes/quotes/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.HomeView.as_view(), name="home"), 6 | ] 7 | -------------------------------------------------------------------------------- /django-rest-framework/4.QuotesAPI_Permission/quotes/quotes_proj/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/4.QuotesAPI_Permission/quotes/quotes_proj/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/5.QuotesAPI_Authentication/quotes/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/5.QuotesAPI_Authentication/quotes/api/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/5.QuotesAPI_Authentication/quotes/api/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /django-rest-framework/5.QuotesAPI_Authentication/quotes/api/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ApiConfig(AppConfig): 5 | name = 'api' 6 | -------------------------------------------------------------------------------- /django-rest-framework/5.QuotesAPI_Authentication/quotes/api/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/5.QuotesAPI_Authentication/quotes/api/migrations/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/5.QuotesAPI_Authentication/quotes/api/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /django-rest-framework/5.QuotesAPI_Authentication/quotes/api/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /django-rest-framework/5.QuotesAPI_Authentication/quotes/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/5.QuotesAPI_Authentication/quotes/db.sqlite3 -------------------------------------------------------------------------------- /django-rest-framework/5.QuotesAPI_Authentication/quotes/quotes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/5.QuotesAPI_Authentication/quotes/quotes/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/5.QuotesAPI_Authentication/quotes/quotes/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | from . models import QuoteCategory 4 | from . models import Quote 5 | 6 | admin.site.register(QuoteCategory) 7 | admin.site.register(Quote) 8 | -------------------------------------------------------------------------------- /django-rest-framework/5.QuotesAPI_Authentication/quotes/quotes/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class QuotesConfig(AppConfig): 5 | name = 'quotes' 6 | -------------------------------------------------------------------------------- /django-rest-framework/5.QuotesAPI_Authentication/quotes/quotes/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/5.QuotesAPI_Authentication/quotes/quotes/migrations/__init__.py -------------------------------------------------------------------------------- /django-rest-framework/5.QuotesAPI_Authentication/quotes/quotes/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /django-rest-framework/5.QuotesAPI_Authentication/quotes/quotes/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.HomeView.as_view(), name="home"), 6 | ] 7 | -------------------------------------------------------------------------------- /django-rest-framework/5.QuotesAPI_Authentication/quotes/quotes_proj/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/django-rest-framework/5.QuotesAPI_Authentication/quotes/quotes_proj/__init__.py -------------------------------------------------------------------------------- /gitcommands.md: -------------------------------------------------------------------------------- 1 | 2 | ### Fixing .gitignore is ignored by Git 3 | ``` 4 | git rm -r --cached . 5 | git add . 6 | git commit -m "fixed untracked files" 7 | ``` 8 | -------------------------------------------------------------------------------- /node_modules/lodash/_Map.js: -------------------------------------------------------------------------------- 1 | var getNative = require('./_getNative'), 2 | root = require('./_root'); 3 | 4 | /* Built-in method references that are verified to be native. */ 5 | var Map = getNative(root, 'Map'); 6 | 7 | module.exports = Map; 8 | -------------------------------------------------------------------------------- /node_modules/lodash/_Set.js: -------------------------------------------------------------------------------- 1 | var getNative = require('./_getNative'), 2 | root = require('./_root'); 3 | 4 | /* Built-in method references that are verified to be native. */ 5 | var Set = getNative(root, 'Set'); 6 | 7 | module.exports = Set; 8 | -------------------------------------------------------------------------------- /node_modules/lodash/_Symbol.js: -------------------------------------------------------------------------------- 1 | var root = require('./_root'); 2 | 3 | /** Built-in value references. */ 4 | var Symbol = root.Symbol; 5 | 6 | module.exports = Symbol; 7 | -------------------------------------------------------------------------------- /node_modules/lodash/_Uint8Array.js: -------------------------------------------------------------------------------- 1 | var root = require('./_root'); 2 | 3 | /** Built-in value references. */ 4 | var Uint8Array = root.Uint8Array; 5 | 6 | module.exports = Uint8Array; 7 | -------------------------------------------------------------------------------- /node_modules/lodash/_baseLodash.js: -------------------------------------------------------------------------------- 1 | /** 2 | * The function whose prototype chain sequence wrappers inherit from. 3 | * 4 | * @private 5 | */ 6 | function baseLodash() { 7 | // No operation performed. 8 | } 9 | 10 | module.exports = baseLodash; 11 | -------------------------------------------------------------------------------- /node_modules/lodash/_coreJsData.js: -------------------------------------------------------------------------------- 1 | var root = require('./_root'); 2 | 3 | /** Used to detect overreaching core-js shims. */ 4 | var coreJsData = root['__core-js_shared__']; 5 | 6 | module.exports = coreJsData; 7 | -------------------------------------------------------------------------------- /node_modules/lodash/_freeGlobal.js: -------------------------------------------------------------------------------- 1 | /** Detect free variable `global` from Node.js. */ 2 | var freeGlobal = typeof global == 'object' && global && global.Object === Object && global; 3 | 4 | module.exports = freeGlobal; 5 | -------------------------------------------------------------------------------- /node_modules/lodash/_getPrototype.js: -------------------------------------------------------------------------------- 1 | var overArg = require('./_overArg'); 2 | 3 | /** Built-in value references. */ 4 | var getPrototype = overArg(Object.getPrototypeOf, Object); 5 | 6 | module.exports = getPrototype; 7 | -------------------------------------------------------------------------------- /node_modules/lodash/_metaMap.js: -------------------------------------------------------------------------------- 1 | var WeakMap = require('./_WeakMap'); 2 | 3 | /** Used to store function metadata. */ 4 | var metaMap = WeakMap && new WeakMap; 5 | 6 | module.exports = metaMap; 7 | -------------------------------------------------------------------------------- /node_modules/lodash/_nativeCreate.js: -------------------------------------------------------------------------------- 1 | var getNative = require('./_getNative'); 2 | 3 | /* Built-in method references that are verified to be native. */ 4 | var nativeCreate = getNative(Object, 'create'); 5 | 6 | module.exports = nativeCreate; 7 | -------------------------------------------------------------------------------- /node_modules/lodash/_nativeKeys.js: -------------------------------------------------------------------------------- 1 | var overArg = require('./_overArg'); 2 | 3 | /* Built-in method references for those with the same name as other `lodash` methods. */ 4 | var nativeKeys = overArg(Object.keys, Object); 5 | 6 | module.exports = nativeKeys; 7 | -------------------------------------------------------------------------------- /node_modules/lodash/_reEscape.js: -------------------------------------------------------------------------------- 1 | /** Used to match template delimiters. */ 2 | var reEscape = /<%-([\s\S]+?)%>/g; 3 | 4 | module.exports = reEscape; 5 | -------------------------------------------------------------------------------- /node_modules/lodash/_reEvaluate.js: -------------------------------------------------------------------------------- 1 | /** Used to match template delimiters. */ 2 | var reEvaluate = /<%([\s\S]+?)%>/g; 3 | 4 | module.exports = reEvaluate; 5 | -------------------------------------------------------------------------------- /node_modules/lodash/_reInterpolate.js: -------------------------------------------------------------------------------- 1 | /** Used to match template delimiters. */ 2 | var reInterpolate = /<%=([\s\S]+?)%>/g; 3 | 4 | module.exports = reInterpolate; 5 | -------------------------------------------------------------------------------- /node_modules/lodash/_realNames.js: -------------------------------------------------------------------------------- 1 | /** Used to lookup unminified function names. */ 2 | var realNames = {}; 3 | 4 | module.exports = realNames; 5 | -------------------------------------------------------------------------------- /node_modules/lodash/date.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 'now': require('./now') 3 | }; 4 | -------------------------------------------------------------------------------- /node_modules/lodash/each.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEach'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/eachRight.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEachRight'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/entries.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./toPairs'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/entriesIn.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./toPairsIn'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/extend.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignIn'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/extendWith.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignInWith'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/first.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./head'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp.js: -------------------------------------------------------------------------------- 1 | var _ = require('./lodash.min').runInContext(); 2 | module.exports = require('./fp/_baseConvert')(_, _); 3 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/F.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./stubFalse'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/T.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./stubTrue'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/__.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./placeholder'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/_falseOptions.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 'cap': false, 3 | 'curry': false, 4 | 'fixed': false, 5 | 'immutable': false, 6 | 'rearg': false 7 | }; 8 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/add.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('add', require('../add')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/after.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('after', require('../after')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/all.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./every'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/allPass.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./overEvery'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/always.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./constant'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/any.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./some'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/anyPass.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./overSome'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/apply.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./spread'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/array.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../array')); 3 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/ary.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('ary', require('../ary')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/assign.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('assign', require('../assign')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/assignAll.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('assignAll', require('../assign')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/assignAllWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('assignAllWith', require('../assignWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/assignIn.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('assignIn', require('../assignIn')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/assignInAll.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('assignInAll', require('../assignIn')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/assignInAllWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('assignInAllWith', require('../assignInWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/assignInWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('assignInWith', require('../assignInWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/assignWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('assignWith', require('../assignWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/assoc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./set'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/assocPath.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./set'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/at.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('at', require('../at')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/attempt.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('attempt', require('../attempt')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/before.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('before', require('../before')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/bind.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('bind', require('../bind')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/bindAll.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('bindAll', require('../bindAll')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/bindKey.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('bindKey', require('../bindKey')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/camelCase.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('camelCase', require('../camelCase'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/capitalize.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('capitalize', require('../capitalize'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/castArray.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('castArray', require('../castArray')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/ceil.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('ceil', require('../ceil')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/chain.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('chain', require('../chain'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/chunk.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('chunk', require('../chunk')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/clamp.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('clamp', require('../clamp')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/clone.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('clone', require('../clone'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/cloneDeep.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('cloneDeep', require('../cloneDeep'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/cloneDeepWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('cloneDeepWith', require('../cloneDeepWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/cloneWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('cloneWith', require('../cloneWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/collection.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../collection')); 3 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/commit.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('commit', require('../commit'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/compact.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('compact', require('../compact'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/complement.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./negate'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/compose.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./flowRight'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/concat.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('concat', require('../concat')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/cond.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('cond', require('../cond'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/conforms.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./conformsTo'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/conformsTo.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('conformsTo', require('../conformsTo')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/constant.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('constant', require('../constant'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/contains.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./includes'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/countBy.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('countBy', require('../countBy')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/create.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('create', require('../create')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/curry.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('curry', require('../curry')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/curryN.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('curryN', require('../curry')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/curryRight.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('curryRight', require('../curryRight')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/curryRightN.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('curryRightN', require('../curryRight')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/date.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../date')); 3 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/debounce.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('debounce', require('../debounce')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/deburr.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('deburr', require('../deburr'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/defaultTo.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('defaultTo', require('../defaultTo')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/defaults.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('defaults', require('../defaults')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/defaultsAll.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('defaultsAll', require('../defaults')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/defaultsDeep.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('defaultsDeep', require('../defaultsDeep')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/defaultsDeepAll.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('defaultsDeepAll', require('../defaultsDeep')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/defer.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('defer', require('../defer'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/delay.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('delay', require('../delay')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/difference.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('difference', require('../difference')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/differenceBy.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('differenceBy', require('../differenceBy')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/differenceWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('differenceWith', require('../differenceWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/dissoc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./unset'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/dissocPath.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./unset'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/divide.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('divide', require('../divide')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/drop.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('drop', require('../drop')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/dropLast.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dropRight'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/dropLastWhile.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dropRightWhile'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/dropRight.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('dropRight', require('../dropRight')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/dropRightWhile.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('dropRightWhile', require('../dropRightWhile')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/dropWhile.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('dropWhile', require('../dropWhile')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/each.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEach'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/eachRight.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEachRight'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/endsWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('endsWith', require('../endsWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/entries.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./toPairs'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/entriesIn.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./toPairsIn'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/eq.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('eq', require('../eq')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/equals.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./isEqual'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/escape.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('escape', require('../escape'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/escapeRegExp.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('escapeRegExp', require('../escapeRegExp'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/every.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('every', require('../every')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/extend.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignIn'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/extendAll.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignInAll'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/extendAllWith.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignInAllWith'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/extendWith.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignInWith'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/fill.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('fill', require('../fill')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/filter.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('filter', require('../filter')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/find.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('find', require('../find')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/findFrom.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('findFrom', require('../find')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/findIndex.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('findIndex', require('../findIndex')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/findIndexFrom.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('findIndexFrom', require('../findIndex')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/findKey.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('findKey', require('../findKey')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/findLast.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('findLast', require('../findLast')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/findLastFrom.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('findLastFrom', require('../findLast')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/findLastIndex.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('findLastIndex', require('../findLastIndex')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/findLastIndexFrom.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('findLastIndexFrom', require('../findLastIndex')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/findLastKey.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('findLastKey', require('../findLastKey')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/first.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./head'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/flatMap.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('flatMap', require('../flatMap')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/flatMapDeep.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('flatMapDeep', require('../flatMapDeep')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/flatMapDepth.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('flatMapDepth', require('../flatMapDepth')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/flatten.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('flatten', require('../flatten'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/flattenDeep.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('flattenDeep', require('../flattenDeep'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/flattenDepth.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('flattenDepth', require('../flattenDepth')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/flip.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('flip', require('../flip'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/floor.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('floor', require('../floor')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/flow.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('flow', require('../flow')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/flowRight.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('flowRight', require('../flowRight')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/forEach.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('forEach', require('../forEach')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/forEachRight.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('forEachRight', require('../forEachRight')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/forIn.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('forIn', require('../forIn')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/forInRight.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('forInRight', require('../forInRight')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/forOwn.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('forOwn', require('../forOwn')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/forOwnRight.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('forOwnRight', require('../forOwnRight')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/fromPairs.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('fromPairs', require('../fromPairs')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/function.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../function')); 3 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/functions.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('functions', require('../functions'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/functionsIn.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('functionsIn', require('../functionsIn'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/get.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('get', require('../get')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/getOr.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('getOr', require('../get')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/groupBy.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('groupBy', require('../groupBy')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/gt.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('gt', require('../gt')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/gte.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('gte', require('../gte')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/has.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('has', require('../has')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/hasIn.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('hasIn', require('../hasIn')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/head.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('head', require('../head'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/identical.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./eq'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/identity.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('identity', require('../identity'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/inRange.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('inRange', require('../inRange')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/includes.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('includes', require('../includes')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/includesFrom.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('includesFrom', require('../includes')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/indexBy.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./keyBy'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/indexOf.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('indexOf', require('../indexOf')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/indexOfFrom.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('indexOfFrom', require('../indexOf')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/init.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./initial'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/initial.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('initial', require('../initial'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/intersection.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('intersection', require('../intersection')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/intersectionBy.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('intersectionBy', require('../intersectionBy')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/intersectionWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('intersectionWith', require('../intersectionWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/invert.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('invert', require('../invert')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/invertBy.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('invertBy', require('../invertBy')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/invertObj.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./invert'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/invoke.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('invoke', require('../invoke')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/invokeArgs.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('invokeArgs', require('../invoke')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/invokeArgsMap.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('invokeArgsMap', require('../invokeMap')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/invokeMap.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('invokeMap', require('../invokeMap')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isArguments.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isArguments', require('../isArguments'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isArray.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isArray', require('../isArray'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isArrayBuffer.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isArrayBuffer', require('../isArrayBuffer'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isArrayLike.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isArrayLike', require('../isArrayLike'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isBoolean.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isBoolean', require('../isBoolean'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isBuffer.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isBuffer', require('../isBuffer'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isDate.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isDate', require('../isDate'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isElement.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isElement', require('../isElement'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isEmpty.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isEmpty', require('../isEmpty'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isEqual.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isEqual', require('../isEqual')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isEqualWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isEqualWith', require('../isEqualWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isError.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isError', require('../isError'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isFinite.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isFinite', require('../isFinite'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isFunction.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isFunction', require('../isFunction'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isInteger.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isInteger', require('../isInteger'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isLength.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isLength', require('../isLength'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isMap.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isMap', require('../isMap'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isMatch.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isMatch', require('../isMatch')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isMatchWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isMatchWith', require('../isMatchWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isNaN.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isNaN', require('../isNaN'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isNative.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isNative', require('../isNative'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isNil.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isNil', require('../isNil'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isNull.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isNull', require('../isNull'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isNumber.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isNumber', require('../isNumber'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isObject.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isObject', require('../isObject'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isObjectLike.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isObjectLike', require('../isObjectLike'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isPlainObject.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isPlainObject', require('../isPlainObject'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isRegExp.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isRegExp', require('../isRegExp'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isSafeInteger.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isSafeInteger', require('../isSafeInteger'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isSet.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isSet', require('../isSet'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isString.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isString', require('../isString'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isSymbol.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isSymbol', require('../isSymbol'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isTypedArray.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isTypedArray', require('../isTypedArray'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isUndefined.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isUndefined', require('../isUndefined'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isWeakMap.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isWeakMap', require('../isWeakMap'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/isWeakSet.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('isWeakSet', require('../isWeakSet'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/iteratee.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('iteratee', require('../iteratee')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/join.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('join', require('../join')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/juxt.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./over'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/kebabCase.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('kebabCase', require('../kebabCase'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/keyBy.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('keyBy', require('../keyBy')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/keys.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('keys', require('../keys'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/keysIn.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('keysIn', require('../keysIn'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/lang.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../lang')); 3 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/last.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('last', require('../last'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/lastIndexOf.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('lastIndexOf', require('../lastIndexOf')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/lastIndexOfFrom.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('lastIndexOfFrom', require('../lastIndexOf')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/lowerCase.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('lowerCase', require('../lowerCase'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/lowerFirst.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('lowerFirst', require('../lowerFirst'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/lt.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('lt', require('../lt')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/lte.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('lte', require('../lte')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/map.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('map', require('../map')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/mapKeys.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('mapKeys', require('../mapKeys')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/mapValues.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('mapValues', require('../mapValues')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/matches.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./isMatch'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/matchesProperty.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('matchesProperty', require('../matchesProperty')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/math.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../math')); 3 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/max.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('max', require('../max'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/maxBy.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('maxBy', require('../maxBy')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/mean.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('mean', require('../mean'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/meanBy.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('meanBy', require('../meanBy')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/memoize.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('memoize', require('../memoize')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/merge.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('merge', require('../merge')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/mergeAll.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('mergeAll', require('../merge')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/mergeAllWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('mergeAllWith', require('../mergeWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/mergeWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('mergeWith', require('../mergeWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/method.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('method', require('../method')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/methodOf.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('methodOf', require('../methodOf')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/min.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('min', require('../min'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/minBy.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('minBy', require('../minBy')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/mixin.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('mixin', require('../mixin')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/multiply.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('multiply', require('../multiply')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/nAry.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./ary'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/negate.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('negate', require('../negate'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/next.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('next', require('../next'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/noop.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('noop', require('../noop'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/now.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('now', require('../now'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/nth.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('nth', require('../nth')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/nthArg.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('nthArg', require('../nthArg')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/number.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../number')); 3 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/object.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../object')); 3 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/omit.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('omit', require('../omit')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/omitAll.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./omit'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/omitBy.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('omitBy', require('../omitBy')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/once.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('once', require('../once'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/orderBy.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('orderBy', require('../orderBy')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/over.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('over', require('../over')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/overArgs.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('overArgs', require('../overArgs')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/overEvery.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('overEvery', require('../overEvery')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/overSome.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('overSome', require('../overSome')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/pad.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('pad', require('../pad')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/padChars.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('padChars', require('../pad')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/padCharsEnd.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('padCharsEnd', require('../padEnd')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/padCharsStart.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('padCharsStart', require('../padStart')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/padEnd.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('padEnd', require('../padEnd')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/padStart.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('padStart', require('../padStart')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/parseInt.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('parseInt', require('../parseInt')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/partial.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('partial', require('../partial')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/partialRight.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('partialRight', require('../partialRight')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/partition.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('partition', require('../partition')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/path.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./get'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/pathEq.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./matchesProperty'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/pathOr.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./getOr'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/paths.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./at'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/pick.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('pick', require('../pick')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/pickAll.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./pick'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/pickBy.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('pickBy', require('../pickBy')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/pipe.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./flow'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/placeholder.js: -------------------------------------------------------------------------------- 1 | /** 2 | * The default argument placeholder value for methods. 3 | * 4 | * @type {Object} 5 | */ 6 | module.exports = {}; 7 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/plant.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('plant', require('../plant'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/pluck.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./map'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/prop.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./get'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/propEq.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./matchesProperty'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/propOr.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./getOr'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/property.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./get'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/propertyOf.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('propertyOf', require('../get')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/props.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./at'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/pull.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('pull', require('../pull')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/pullAll.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('pullAll', require('../pullAll')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/pullAllBy.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('pullAllBy', require('../pullAllBy')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/pullAllWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('pullAllWith', require('../pullAllWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/pullAt.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('pullAt', require('../pullAt')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/random.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('random', require('../random')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/range.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('range', require('../range')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/rangeRight.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('rangeRight', require('../rangeRight')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/rangeStep.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('rangeStep', require('../range')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/rangeStepRight.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('rangeStepRight', require('../rangeRight')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/rearg.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('rearg', require('../rearg')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/reduce.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('reduce', require('../reduce')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/reduceRight.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('reduceRight', require('../reduceRight')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/reject.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('reject', require('../reject')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/remove.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('remove', require('../remove')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/repeat.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('repeat', require('../repeat')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/replace.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('replace', require('../replace')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/rest.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('rest', require('../rest')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/restFrom.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('restFrom', require('../rest')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/result.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('result', require('../result')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/reverse.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('reverse', require('../reverse')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/round.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('round', require('../round')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/sample.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('sample', require('../sample'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/sampleSize.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('sampleSize', require('../sampleSize')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/seq.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../seq')); 3 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/set.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('set', require('../set')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/setWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('setWith', require('../setWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/shuffle.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('shuffle', require('../shuffle'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/size.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('size', require('../size'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/slice.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('slice', require('../slice')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/snakeCase.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('snakeCase', require('../snakeCase'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/some.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('some', require('../some')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/sortBy.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('sortBy', require('../sortBy')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/sortedIndex.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('sortedIndex', require('../sortedIndex')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/sortedIndexBy.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('sortedIndexBy', require('../sortedIndexBy')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/sortedIndexOf.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('sortedIndexOf', require('../sortedIndexOf')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/sortedLastIndex.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('sortedLastIndex', require('../sortedLastIndex')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/sortedLastIndexBy.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('sortedLastIndexBy', require('../sortedLastIndexBy')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/sortedLastIndexOf.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('sortedLastIndexOf', require('../sortedLastIndexOf')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/sortedUniq.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('sortedUniq', require('../sortedUniq'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/sortedUniqBy.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('sortedUniqBy', require('../sortedUniqBy')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/split.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('split', require('../split')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/spread.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('spread', require('../spread')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/spreadFrom.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('spreadFrom', require('../spread')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/startCase.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('startCase', require('../startCase'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/startsWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('startsWith', require('../startsWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/string.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../string')); 3 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/stubArray.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('stubArray', require('../stubArray'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/stubFalse.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('stubFalse', require('../stubFalse'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/stubObject.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('stubObject', require('../stubObject'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/stubString.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('stubString', require('../stubString'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/stubTrue.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('stubTrue', require('../stubTrue'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/subtract.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('subtract', require('../subtract')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/sum.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('sum', require('../sum'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/sumBy.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('sumBy', require('../sumBy')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/symmetricDifference.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./xor'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/symmetricDifferenceBy.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./xorBy'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/symmetricDifferenceWith.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./xorWith'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/tail.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('tail', require('../tail'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/take.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('take', require('../take')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/takeLast.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./takeRight'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/takeLastWhile.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./takeRightWhile'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/takeRight.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('takeRight', require('../takeRight')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/takeRightWhile.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('takeRightWhile', require('../takeRightWhile')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/takeWhile.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('takeWhile', require('../takeWhile')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/tap.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('tap', require('../tap')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/template.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('template', require('../template')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/throttle.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('throttle', require('../throttle')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/thru.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('thru', require('../thru')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/times.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('times', require('../times')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/toArray.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('toArray', require('../toArray'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/toFinite.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('toFinite', require('../toFinite'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/toInteger.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('toInteger', require('../toInteger'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/toIterator.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('toIterator', require('../toIterator'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/toJSON.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('toJSON', require('../toJSON'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/toLength.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('toLength', require('../toLength'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/toLower.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('toLower', require('../toLower'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/toNumber.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('toNumber', require('../toNumber'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/toPairs.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('toPairs', require('../toPairs'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/toPairsIn.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('toPairsIn', require('../toPairsIn'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/toPath.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('toPath', require('../toPath'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/toPlainObject.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('toPlainObject', require('../toPlainObject'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/toSafeInteger.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('toSafeInteger', require('../toSafeInteger'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/toString.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('toString', require('../toString'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/toUpper.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('toUpper', require('../toUpper'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/transform.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('transform', require('../transform')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/trim.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('trim', require('../trim')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/trimChars.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('trimChars', require('../trim')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/trimCharsEnd.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('trimCharsEnd', require('../trimEnd')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/trimCharsStart.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('trimCharsStart', require('../trimStart')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/trimEnd.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('trimEnd', require('../trimEnd')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/trimStart.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('trimStart', require('../trimStart')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/truncate.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('truncate', require('../truncate')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/unapply.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./rest'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/unary.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('unary', require('../unary'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/unescape.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('unescape', require('../unescape'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/union.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('union', require('../union')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/unionBy.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('unionBy', require('../unionBy')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/unionWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('unionWith', require('../unionWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/uniq.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('uniq', require('../uniq'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/uniqBy.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('uniqBy', require('../uniqBy')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/uniqWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('uniqWith', require('../uniqWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/uniqueId.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('uniqueId', require('../uniqueId')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/unnest.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./flatten'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/unset.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('unset', require('../unset')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/unzip.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('unzip', require('../unzip'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/unzipWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('unzipWith', require('../unzipWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/update.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('update', require('../update')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/updateWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('updateWith', require('../updateWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/upperCase.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('upperCase', require('../upperCase'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/upperFirst.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('upperFirst', require('../upperFirst'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/useWith.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./overArgs'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/util.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../util')); 3 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/value.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('value', require('../value'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/valueOf.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('valueOf', require('../valueOf'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/values.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('values', require('../values'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/valuesIn.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('valuesIn', require('../valuesIn'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/where.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./conformsTo'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/whereEq.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./isMatch'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/without.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('without', require('../without')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/words.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('words', require('../words')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/wrap.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('wrap', require('../wrap')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/wrapperAt.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('wrapperAt', require('../wrapperAt'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/wrapperChain.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('wrapperChain', require('../wrapperChain'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/wrapperLodash.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('wrapperLodash', require('../wrapperLodash'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/wrapperReverse.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('wrapperReverse', require('../wrapperReverse'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/wrapperValue.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('wrapperValue', require('../wrapperValue'), require('./_falseOptions')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/xor.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('xor', require('../xor')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/xorBy.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('xorBy', require('../xorBy')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/xorWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('xorWith', require('../xorWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/zip.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('zip', require('../zip')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/zipAll.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('zipAll', require('../zip')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/zipObj.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./zipObject'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/zipObject.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('zipObject', require('../zipObject')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/zipObjectDeep.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('zipObjectDeep', require('../zipObjectDeep')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/fp/zipWith.js: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'), 2 | func = convert('zipWith', require('../zipWith')); 3 | 4 | func.placeholder = require('./placeholder'); 5 | module.exports = func; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lodash'); -------------------------------------------------------------------------------- /node_modules/lodash/number.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 'clamp': require('./clamp'), 3 | 'inRange': require('./inRange'), 4 | 'random': require('./random') 5 | }; 6 | -------------------------------------------------------------------------------- /node_modules/lodash/toJSON.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/value.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /node_modules/lodash/valueOf.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /python-language/automation/web-browser/flutter.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | kill $(ps aux | grep "Safari") 4 | 5 | python3 /Users/mahmud/Desktop/demo/web/browser-script.py /Users/mahmud/Desktop/demo/web/websites.txt safari 6 | exit 0 -------------------------------------------------------------------------------- /python-language/automation/web-browser/websites.txt: -------------------------------------------------------------------------------- 1 | https://github.com/mahmudahsan/thinkdiff/tree/master/dart 2 | https://github.com/mahmudahsan/thinkdiff/tree/master/flutter 3 | https://flutter.dev/docs/reference/widgets 4 | https://pub.dev/ 5 | -------------------------------------------------------------------------------- /python-language/python-advanced/chapter5_sqlite_db/mydb.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/python-language/python-advanced/chapter5_sqlite_db/mydb.sqlite -------------------------------------------------------------------------------- /python-language/python-advanced/chapter8_exe/sites.txt: -------------------------------------------------------------------------------- 1 | http://google.com 2 | http://github.com/mahmudahsan 3 | http://youtube.com/c/pythonprogramming 4 | -------------------------------------------------------------------------------- /python-language/python-advanced/chapter9_selenium/chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/python-language/python-advanced/chapter9_selenium/chromedriver -------------------------------------------------------------------------------- /python-language/python-advanced/data/expense.csv: -------------------------------------------------------------------------------- 1 | Name,Expense 2 | groceries,10000 3 | house-rent,20000 4 | auto-fuel,5000 -------------------------------------------------------------------------------- /python-language/python-advanced/data/names.txt: -------------------------------------------------------------------------------- 1 | Bill Gates 2 | Mark Zuckerberg 3 | Elon Musk 4 | -------------------------------------------------------------------------------- /python-language/python-advanced/html/error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/python-language/python-advanced/html/error.log -------------------------------------------------------------------------------- /python-language/python-advanced/mspack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/python-language/python-advanced/mspack/__init__.py -------------------------------------------------------------------------------- /python-language/python-beginner/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "/Library/Frameworks/Python.framework/Versions/3.7/bin/python3" 3 | } -------------------------------------------------------------------------------- /python-language/python-beginner/helloworld.py: -------------------------------------------------------------------------------- 1 | class X: 2 | def show(self, name): 3 | print("My name is: " + name) 4 | 5 | x = X() 6 | x.show("Ahsan") -------------------------------------------------------------------------------- /python-language/python-beginner/mspack/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ["msmath", "msstring"] -------------------------------------------------------------------------------- /react-native/simple_counter/.expo/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "hostType": "lan", 3 | "lanType": "ip", 4 | "dev": true, 5 | "minify": false, 6 | "urlRandomness": "4k-pq5" 7 | } -------------------------------------------------------------------------------- /react-native/simple_counter/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/react-native/simple_counter/assets/icon.png -------------------------------------------------------------------------------- /react-native/simple_counter/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/react-native/simple_counter/assets/splash.png -------------------------------------------------------------------------------- /react-native/simple_counter/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = function(api) { 2 | api.cache(true); 3 | return { 4 | presets: ['babel-preset-expo'], 5 | }; 6 | }; 7 | -------------------------------------------------------------------------------- /react-native/t1_helloworld/.expo/packager-info.json: -------------------------------------------------------------------------------- 1 | { 2 | "devToolsPort": 19002, 3 | "expoServerPort": null, 4 | "packagerPort": null, 5 | "packagerPid": null, 6 | "expoServerNgrokUrl": null, 7 | "packagerNgrokUrl": null, 8 | "ngrokPid": null 9 | } -------------------------------------------------------------------------------- /react-native/t1_helloworld/.expo/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "hostType": "lan", 3 | "lanType": "ip", 4 | "dev": true, 5 | "minify": false, 6 | "urlRandomness": "zp-284" 7 | } -------------------------------------------------------------------------------- /react-native/t1_helloworld/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /react-native/t1_helloworld/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /react-native/t1_helloworld/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/react-native/t1_helloworld/assets/icon.png -------------------------------------------------------------------------------- /react-native/t1_helloworld/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmudahsan/thinkdiff/4a250067ea0a36691a93bdc1e8bb9193848682f7/react-native/t1_helloworld/assets/splash.png -------------------------------------------------------------------------------- /react-native/t1_helloworld/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = function(api) { 2 | api.cache(true); 3 | return { 4 | presets: ['babel-preset-expo'], 5 | }; 6 | }; 7 | --------------------------------------------------------------------------------