├── DoubtSession1 ├── index.js └── zomclone │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Routes.js │ ├── components │ └── AuthGaurd.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── pages │ ├── Home.js │ └── Login.js │ ├── reportWebVitals.js │ ├── setupTests.js │ └── utils │ └── firebase.js ├── DoubtSession2 ├── zomatonest │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── nest-cli.json │ ├── okay.png │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app.controller.spec.ts │ │ ├── app.controller.ts │ │ ├── app.module.ts │ │ ├── app.service.ts │ │ ├── images │ │ │ ├── alexa.png │ │ │ ├── images.controller.ts │ │ │ ├── images.module.ts │ │ │ ├── images.service.ts │ │ │ └── schemas │ │ │ │ └── image.schema.ts │ │ ├── main.ts │ │ ├── order │ │ │ ├── order.controller.ts │ │ │ ├── order.module.ts │ │ │ ├── order.service.ts │ │ │ └── schemas │ │ │ │ └── order.schema.ts │ │ ├── restaurant │ │ │ ├── restaurant.controller.ts │ │ │ ├── restaurant.module.ts │ │ │ ├── restaurant.service.ts │ │ │ └── schemas │ │ │ │ └── restaurant.schema.ts │ │ └── user │ │ │ ├── schemas │ │ │ └── user.schema.ts │ │ │ ├── user.controller.ts │ │ │ ├── user.module.ts │ │ │ └── user.service.ts │ ├── test │ │ ├── app.e2e-spec.ts │ │ └── jest-e2e.json │ ├── tsconfig.build.json │ └── tsconfig.json └── zomclone │ ├── .gitignore │ ├── README.md │ ├── android │ ├── .gitignore │ ├── .idea │ │ ├── compiler.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── capacitor.build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── getcapacitor │ │ │ │ └── myapp │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ │ ├── capacitor.config.json │ │ │ │ └── capacitor.plugins.json │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── ionic │ │ │ │ │ └── starter │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable-land-hdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-land-mdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-land-xhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-land-xxhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-land-xxxhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-port-hdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-port-mdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-port-xhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-port-xxhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-port-xxxhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── splash.png │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ │ └── xml │ │ │ │ ├── config.xml │ │ │ │ └── file_paths.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── getcapacitor │ │ │ └── myapp │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── capacitor.settings.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── variables.gradle │ ├── capacitor.config.json │ ├── ionic.config.json │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ ├── robots.txt │ └── zom-splash.png │ └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Routes.js │ ├── components │ ├── AppBarSimple.js │ ├── AuthGaurd.js │ ├── BotomNav.js │ ├── Dish.js │ ├── Restraunt.js │ └── StripeButtonComponent.js │ ├── index.css │ ├── index.js │ ├── layouts │ └── MainLayout.js │ ├── logo.svg │ ├── pages │ ├── Checkout.js │ ├── Gold.js │ ├── Home.js │ ├── Login.js │ ├── Menu.js │ ├── Out.js │ ├── Profile.js │ └── Search.js │ ├── reportWebVitals.js │ ├── setupTests.js │ └── utils │ ├── axios.js │ └── firebase.js ├── May 31 20h35.svgz ├── lecture-1 ├── jsInsert │ ├── coin.png │ ├── coins.mp3 │ └── index.html └── simplehtml │ ├── index.html │ ├── okay │ ├── another.html │ └── p.jpeg │ └── panda.jpeg ├── lecture-2 ├── Jun 2 20h35.svgz └── githubtry │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js ├── lecture-3 ├── Jun 4 20h41.svgz └── zomclone │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Routes.js │ ├── components │ └── AuthGaurd.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── pages │ ├── Home.js │ └── Login.js │ ├── reportWebVitals.js │ ├── setupTests.js │ └── utils │ └── firebase.js ├── lecture-4 ├── Jun 9 20h33.svgz ├── zomback │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── nest-cli.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app.controller.ts │ │ ├── app.module.ts │ │ ├── app.service.ts │ │ ├── main.ts │ │ └── users │ │ │ ├── dto │ │ │ ├── create-user.dto.ts │ │ │ └── update-user.dto.ts │ │ │ ├── entities │ │ │ └── user.entity.ts │ │ │ ├── users.controller.ts │ │ │ ├── users.module.ts │ │ │ └── users.service.ts │ ├── test │ │ ├── app.e2e-spec.ts │ │ └── jest-e2e.json │ ├── tsconfig.build.json │ └── tsconfig.json ├── zomclone │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── Routes.js │ │ ├── components │ │ ├── AuthGaurd.js │ │ └── BotomNav.js │ │ ├── index.css │ │ ├── index.js │ │ ├── layouts │ │ └── MainLayout.js │ │ ├── logo.svg │ │ ├── pages │ │ ├── Home.js │ │ └── Login.js │ │ ├── reportWebVitals.js │ │ ├── setupTests.js │ │ └── utils │ │ ├── axios.js │ │ └── firebase.js └── zomexpress │ ├── .gitignore │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── service.json ├── lecture-5 ├── Jun 11 20h37.svgz ├── fillzomatodb │ ├── alexa.png │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── photos.zip │ ├── photos │ │ ├── 0105fbfc-6f53-4816-a9ee-1669eeaccd41.png │ │ ├── 01229784-2204-4098-a18f-a09a5caf4b1e.png │ │ ├── 01b25be8-ad45-48cd-a3cc-cb51bef483e3.png │ │ ├── 069aa9e2-5d76-466b-8eb9-2ef27871a66c.png │ │ ├── 06a7a9f8-ad82-48b7-9394-b8f598ee1f59.png │ │ ├── 07f411d1-4bea-4413-93d8-9d5ae8682329.png │ │ ├── 08ae1fa0-da07-4f43-b84f-7d60f79120da.png │ │ ├── 08f56592-9048-4f46-8ce8-21028456cdf8.png │ │ ├── 0906954f-0cda-4d17-bbad-7f4f9f13c10d.png │ │ ├── 0e3b3aef-7e91-407a-8c94-f68f617d7832.png │ │ ├── 0e91d542-f60b-4a82-9cf5-33c885a81f52.png │ │ ├── 11383638-02ca-4882-9309-16d02da6321e.png │ │ ├── 136d08e5-1137-438e-bb98-5892a92eed5f.png │ │ ├── 148d2299-a487-45da-920a-4228d32542ee.png │ │ ├── 152608ea-5371-46de-adc4-d450c7eac4f3.png │ │ ├── 1665719a-d2fb-4435-8334-0de0f34b9ed3.png │ │ ├── 1722c809-386d-4295-8480-60707427b26a.png │ │ ├── 177d4a15-07ed-407d-a3e7-0f9bf7ee02ae.png │ │ ├── 194bcc34-cd0c-4c90-aa4e-fb4714a01309.png │ │ ├── 196f5137-1510-45cd-878c-3841aad75cb7.png │ │ ├── 1abe3ff2-8a1f-4292-b69a-ece88f0fd60f.png │ │ ├── 1b766b54-0a88-4a4d-bb27-04354362d366.png │ │ ├── 1c1d64ad-cf62-4aea-bf30-a50d24d0e04f.png │ │ ├── 1c565a74-5b85-49e0-9a25-60ddeaa0849e.png │ │ ├── 1c90dea0-edbd-448f-b086-75e2ef1595dc.png │ │ ├── 1d5be278-3753-4b80-b19c-d51453b00551.png │ │ ├── 1eb5e0cc-019b-41ba-982c-a001c281d9cf.png │ │ ├── 1f873948-8e94-4d06-9e21-9aadb5f8baa9.png │ │ ├── 21393c7f-d204-4155-9706-56f8d0398740.png │ │ ├── 21ad8d59-8371-42a2-ad64-c36520283df2.png │ │ ├── 21e5332c-142e-4f51-81d2-d546e7110fa0.png │ │ ├── 21f12cb0-0e13-4286-94ce-d721ab2781b1.png │ │ ├── 2243a54f-e96b-417a-85f4-34571a828692.png │ │ ├── 22de788a-5731-4463-ae7b-4b06e5de577c.png │ │ ├── 231f0769-ece9-4921-8548-234e95a844ca.png │ │ ├── 2501ffcf-4bc2-452b-b9f7-1fd16dc98f0f.png │ │ ├── 2758f16e-b638-44fc-b222-9de097ff8c55.png │ │ ├── 276204ec-6edb-473f-a9d9-cc4181970cd6.png │ │ ├── 27e55fa5-aaf3-44d6-bc44-8dfc85780a5e.png │ │ ├── 289be738-c44f-4cdf-bdf0-e1c9d85591e8.png │ │ ├── 2b49a1b4-cf0b-437a-af3d-0252937039d7.png │ │ ├── 2c3d1bdf-59e7-4756-a62e-603e8830820c.png │ │ ├── 2cb21938-ef1d-47fa-b478-70044056dc67.png │ │ ├── 2cc03f6d-02be-4f45-b607-8308e3a76f24.png │ │ ├── 2ea90077-9e80-4420-90e6-088de414a9b4.png │ │ ├── 2eec38d0-7e46-4ef6-907c-ea74660d841b.png │ │ ├── 301db59a-0286-4c51-b7f6-2ca5b6c9c767.png │ │ ├── 32bf823f-1189-4f87-be98-c9d2395c8106.png │ │ ├── 32dbe200-44d0-454d-bec4-04e10bb86551.png │ │ ├── 33b31566-9380-434a-816a-62e45f41eeb9.png │ │ ├── 33be44a7-8e7f-47dc-8b01-a1094266e9ba.png │ │ ├── 3477180b-46de-49e3-9f06-d27003c10969.png │ │ ├── 34ea5e11-0b82-48dc-98c3-2c2101241e5d.png │ │ ├── 36b9e3e4-3a00-4611-86a6-dc9f2d6fb31d.png │ │ ├── 3792cfe5-d1f0-454a-b302-8db59fbd86c2.png │ │ ├── 38650828-0bd6-4181-8c87-2f20bcef0842.png │ │ ├── 3a15c01e-296f-4852-84f3-4213e975b6d7.png │ │ ├── 3a26d5ec-7a1f-4ef6-aacd-f594d19bd8f6.png │ │ ├── 3a6f3c45-f4e7-421b-816d-bd5dab737c02.png │ │ ├── 3a8c4f74-c8f5-4dd1-a456-6f762718be1c.png │ │ ├── 3bed573a-8d7d-4269-be34-7bfb6ca7caf0.png │ │ ├── 3cda8d63-57f4-465a-b500-c7fcd6b65d04.png │ │ ├── 3eb2f7c7-2f4d-4b91-b3a9-a9a38aec8250.png │ │ ├── 3f3526cd-9066-4f20-be1a-e1334eef7a01.png │ │ ├── 3f67443f-0342-4d3e-ae65-62a61becf228.png │ │ ├── 4010b7df-c559-4182-b49f-b1cdb200914e.png │ │ ├── 4094cc9e-d4b5-457b-9f54-634dc3761f52.png │ │ ├── 419065b4-3f4f-4907-9607-1c939d01e064.png │ │ ├── 41db466a-c8ab-4bad-ab57-c80a7d0b208d.png │ │ ├── 44c7eae5-09d5-428a-a21c-c35ce0645982.png │ │ ├── 45220caa-794a-460f-a10c-926e0185f3c4.png │ │ ├── 46774efd-eb44-4a49-a404-364757a9f82c.png │ │ ├── 4741730c-8d97-469e-a572-3b3ade48cf6f.png │ │ ├── 47b3f200-5a4e-48fe-ad39-db5847d5339a.png │ │ ├── 4987d68a-2908-4de7-ba3d-eecb688e313d.png │ │ ├── 4a10619a-4f62-4d85-9732-55d9719537df.png │ │ ├── 4b033038-27ed-40c7-876a-1aa9e090f765.png │ │ ├── 4b746d87-303c-463e-b756-8b450993e330.png │ │ ├── 4b826a44-7d5e-48c9-8213-65872ddf69cf.png │ │ ├── 4cceda59-ac5a-4eed-bd4e-56550fb7569f.png │ │ ├── 4ea2e5ae-f2a8-4432-9c50-08e4c1ad8b9d.png │ │ ├── 4fbaa1ca-ce7b-42fe-b40a-c535e967b595.png │ │ ├── 500d3e9f-ec8a-4c77-a4a3-2fce1819cdb0.png │ │ ├── 514a3183-61e5-4bf6-bb32-8646aa5b6276.png │ │ ├── 51a45ca2-18fe-43b3-baa0-6cc8f315f25a.png │ │ ├── 535b0079-53e5-4e4c-9f87-c686eda50968.png │ │ ├── 546961a2-a4b7-45e8-9dbc-d4072fc64e8e.png │ │ ├── 56417ffa-23bd-4943-a8af-4639628f251e.png │ │ ├── 57254024-54f1-41ea-b88d-3719ff6b6d6f.png │ │ ├── 57968c4f-64a7-475f-8d11-de405c66b1b0.png │ │ ├── 57d5ebda-f992-4d6c-85ee-f07bbb470c5c.png │ │ ├── 597eef31-9408-4d13-8ba3-77ae379d5cb8.png │ │ ├── 5aba2595-4d29-4916-8a99-79a8ffe78894.png │ │ ├── 5b9330dd-8179-410c-88f4-7e607575220c.png │ │ ├── 5ce5496c-d0cb-4f66-b4b6-8dcad2ec2d25.png │ │ ├── 5d111240-fd5b-4c23-8079-59960c615258.png │ │ ├── 5deca00f-f909-4f19-9181-cb5a7cce0f4c.png │ │ ├── 5e1c6b75-e067-469f-84cf-1d4a0a5d4248.png │ │ ├── 5f09bcc1-b1ab-49c4-a0e2-9db10ae7219c.png │ │ ├── 5f26938b-0be0-4de5-a17a-80895f22dfa8.png │ │ ├── 5fd13b38-0935-40f2-8b50-54926e1bcce8.png │ │ ├── 6003c45a-0542-4886-8ba6-e203da0025af.png │ │ ├── 600e681f-d497-4bc3-b879-3b13cee2ca27.png │ │ ├── 6089ea35-2edd-4111-b8fc-d693827cf3b5.png │ │ ├── 609ccd58-744d-4e16-8eb7-7e04fa695bde.png │ │ ├── 6175a1f7-ac35-4dd2-867c-09a723df16d0.png │ │ ├── 61769e0f-a4f2-49f5-8d7f-bd054d1b9a76.png │ │ ├── 633c7df7-4386-4106-a25e-d8317c5576c3.png │ │ ├── 63ad0c66-ded4-480b-9100-915aa2e8cd7d.png │ │ ├── 63eca528-73d6-4f69-b22f-39f7e178c7a0.png │ │ ├── 64b39e5d-65d2-4677-bc25-c2bca24293b7.png │ │ ├── 65da33c5-d57f-47f3-bf09-6b8887579e4f.png │ │ ├── 66abf476-003a-421a-af0c-af375a17de9d.png │ │ ├── 66bc56cb-75f7-481a-9060-f2115f66aea4.png │ │ ├── 672d3151-1164-4c93-9ece-2c6c409cf2e5.png │ │ ├── 6755c6e8-005d-418c-9fd5-73f73e443cbf.png │ │ ├── 683cf88f-3fd5-432a-af6e-8c816254ba48.png │ │ ├── 696fdc78-f599-4854-a0fa-25591eb9d2d8.png │ │ ├── 6c312764-816c-4604-8beb-c6963e67ba74.png │ │ ├── 6cc23018-fd70-4d65-9413-26d4bb4a4abe.png │ │ ├── 6e49cfd5-058f-450e-a277-5077fe00f769.png │ │ ├── 6ec984dc-235f-49f9-a4be-5db34fe09156.png │ │ ├── 6ee3027b-c0c9-47c0-ac1c-77f94797356e.png │ │ ├── 700389f6-3b20-4f97-b0ee-404cb2318607.png │ │ ├── 7070ebf9-2980-48f1-a34b-cb22a8d67ad0.png │ │ ├── 72126a86-eb5a-4600-bb37-1855bb3600ac.png │ │ ├── 74005661-55f1-4520-a4fd-b6697219a625.png │ │ ├── 7578ff75-9aef-4719-8e87-3afdc6d2d415.png │ │ ├── 759df0bf-4a49-400e-9d4a-2ac92223feb8.png │ │ ├── 76ac4c40-2c2f-4a17-89cd-9524fc83519a.png │ │ ├── 76b623c1-f555-46e6-8c83-82d6c1424540.png │ │ ├── 7874efd3-8828-484b-9597-4d37b01e08e1.png │ │ ├── 7977427d-4064-4311-922a-81dd9e506d13.png │ │ ├── 7b30447b-4c8e-4561-823d-0544e7c4b4b7.png │ │ ├── 7c623eba-e887-407e-8fb4-3e4823a3e099.png │ │ ├── 7ccdb6b8-eeec-4c75-b52f-5f98dda954ce.png │ │ ├── 7f57bbdb-139e-45cc-b744-56bf0dde6fcd.png │ │ ├── 802b7bae-6914-49c0-aed0-021338ea4fd6.png │ │ ├── 802d7d77-d088-4581-8289-88a25cf06f29.png │ │ ├── 812d1050-f447-45cd-bb9f-0fd1a10c3475.png │ │ ├── 8266eff8-9a32-411c-b2a9-cd47cbce9acf.png │ │ ├── 839c389a-00ea-48c3-b858-ff214fb6c729.png │ │ ├── 85e6da4b-16a3-4ded-bb78-8247546bf4ae.png │ │ ├── 8654736d-dde5-408d-8644-2710e535c149.png │ │ ├── 8682c4ad-e11a-4742-90cb-bfa3f3c76151.png │ │ ├── 884d7ce9-4459-4744-99c8-6303c2ce04ec.png │ │ ├── 8b73d8cc-a273-461f-aef1-e230c987abf7.png │ │ ├── 8c92bfe4-66ac-4396-af80-95e081280fee.png │ │ ├── 8d38463e-a7d0-43bb-a705-a789689a7c51.png │ │ ├── 8d4b1f5c-f667-4623-8ecf-ee6a4c2fe3b1.png │ │ ├── 8d6883b6-0417-40db-ac8a-9178c2efa2a5.png │ │ ├── 8f68790d-e1ba-45c6-94bf-d8333efac870.png │ │ ├── 91ba1ba6-bd23-428b-9f68-593201df2662.png │ │ ├── 941bbff4-ad5f-41c1-92a5-996e5284ed46.png │ │ ├── 975e2930-4281-4222-bffb-ecff3ad1f76c.png │ │ ├── 9a2cce5b-a344-4fcd-a7ef-eada6d94551b.png │ │ ├── 9a312976-7580-4de2-a9f4-ad4c5e19cf78.png │ │ ├── 9a3a290b-afa3-40b0-8813-cd80301122e9.png │ │ ├── 9a48d0c0-46d4-4633-aff2-f1acbc0ea1f0.png │ │ ├── 9b6f5901-135e-40a3-9aeb-01097858a97e.png │ │ ├── 9c537dc6-404c-473a-9b99-1b1dd0f8a996.png │ │ ├── 9c6611f3-1543-4d50-bb28-cf153ee042ba.png │ │ ├── 9cbeaad9-89b1-467f-81bc-f69fde70055d.png │ │ ├── 9ccca864-4b72-4007-99d4-7b1f47f0790f.png │ │ ├── 9d329e6c-58f9-4b22-abc1-f3e70d371b2e.png │ │ ├── 9d82f6b9-2374-4414-b26b-d9795693b0cd.png │ │ ├── 9e3292b3-da9a-4952-a81a-1cc3891eaabe.png │ │ ├── 9e7b74d0-c74a-4c5d-8e18-bfaa9ce20c8b.png │ │ ├── 9ece66bc-9bc3-468c-ac66-105b84aa9df4.png │ │ ├── a06a9ce8-1a35-456f-a38b-1a21f1ca0687.png │ │ ├── a18671dc-07f0-47f3-ad24-6d375d1a36a2.png │ │ ├── a1d60c92-e374-4716-a075-f9f65a018c72.png │ │ ├── a28116a6-5b41-4689-b2ef-758efa7915c4.png │ │ ├── a29071dc-c932-4bb3-9782-8ef912d83f25.png │ │ ├── a31d6434-aa44-40b1-be0b-dbeb99eb7072.png │ │ ├── a3e54134-4183-4de0-8a86-ce331e326105.png │ │ ├── a461c79f-6c50-498e-8455-74e6b560d76e.png │ │ ├── a4d69c01-4640-45ea-a79a-521bb64cb4b5.png │ │ ├── a5f8306a-a1e2-4e59-98d0-28578f32c1c0.png │ │ ├── a5fa355b-6794-47d1-b86e-f1270c19808f.png │ │ ├── a6da489f-1cdd-42b2-8a1a-ad0f7f20bc91.png │ │ ├── a740efcf-f8ea-43b4-8f60-a95ddd2b9779.png │ │ ├── a84c2ff5-3dcf-4674-bacf-a65a2323a5cd.png │ │ ├── a8e1f39d-3f93-46d3-9745-f1e5466a32d6.png │ │ ├── aa487220-3f12-4359-b7a3-abcb559e5d9a.png │ │ ├── abac7016-b4ae-4612-9a20-fb1ffb6c152f.png │ │ ├── ad3c2c77-f995-4878-bf0f-81d6921758a3.png │ │ ├── ae21d20b-0dd1-428d-bc7d-45af560dfdc8.png │ │ ├── af07e2c2-958b-4e51-ada8-eae3ee14ba87.png │ │ ├── af41a4fe-959e-48d0-b185-9af040cfc06c.png │ │ ├── af452e4e-cf4e-4201-823d-05e7660e9c50.png │ │ ├── b04b7102-dea7-4371-8765-fac4d2384583.png │ │ ├── b139ff50-af60-4b4d-8088-806929327e92.png │ │ ├── b14fdca4-896b-45f7-87e5-a70270e7cf98.png │ │ ├── b2dc18dd-888b-437f-9c66-e9060fa447f1.png │ │ ├── b39f79e2-1e9b-4e46-a786-f9fae6fa7d45.png │ │ ├── b3dd2211-4ec8-4b76-9397-6f6c4d0d9854.png │ │ ├── b86afbb6-de91-4a86-8494-10211cf8efd7.png │ │ ├── b8f4e9c2-f5cc-4bb0-b75d-02efedae1d5f.png │ │ ├── b9232ace-790b-4f0d-ae1d-e3b558be8c00.png │ │ ├── b952a33c-3588-4972-a983-b56590a27584.png │ │ ├── b9efca0b-f5af-401f-81c1-8c69f0898312.png │ │ ├── b9f7b8fb-0da0-44bc-b1a3-53b6216f8ff3.png │ │ ├── ba12773a-6cd1-450c-a1eb-bc963c75ba4e.png │ │ ├── bb25872b-effb-4fc8-8253-9f9a24017334.png │ │ ├── bd03e986-14d1-4c2d-a281-b58185454484.png │ │ ├── bd42e84a-861c-474b-b929-38b968038c4f.png │ │ ├── bea4a539-c180-42ab-af91-7ebd192886f4.png │ │ ├── c07fc431-7362-4707-b08d-93854c871dbb.png │ │ ├── c14979ff-bf0b-436d-b165-553b2bd18267.png │ │ ├── c228ddae-4998-4de1-a382-8574f447d58e.png │ │ ├── c2adf8a3-0e45-41cd-a6c1-17f6796f1dfa.png │ │ ├── c2fb0982-db50-4618-ba15-e3541f951137.png │ │ ├── c33fc86f-d074-411a-ba65-6bac4f3f30bc.png │ │ ├── c444c8d5-a672-45ba-8bad-4929f1e7c996.png │ │ ├── c701cd3b-527f-46dd-8176-24505f72481a.png │ │ ├── c7cbb5a8-46ac-4fc0-8fb8-543472e1c04a.png │ │ ├── c98e1821-7c07-408c-b3de-3f50d9e1994c.png │ │ ├── cd0db5df-f80e-45fb-bd87-07b283581b03.png │ │ ├── cdb4cfba-dfc4-4e1c-a167-792b9660a955.png │ │ ├── cdb8edf9-4f4f-4a38-a5c0-3dc7e89f25ce.png │ │ ├── ce6bd163-8103-43cf-9d87-7c16f9fdf5d1.png │ │ ├── ceadd966-b94e-48c6-8985-db957e8a7c74.png │ │ ├── d051cce8-f248-46fb-9f47-1efee7e58d9a.png │ │ ├── d06b9e12-a28b-47dc-848d-6e9d85a97c2d.png │ │ ├── d1f1f8db-85ac-4a98-9c8b-460233ba75dc.png │ │ ├── d25aea45-cde3-45c8-98c9-a1a5631b79cf.png │ │ ├── d3979240-9721-4def-aa52-fa589ddeccc4.png │ │ ├── d43a615d-11b9-49d0-8ae3-53c1586bf2a1.png │ │ ├── d531a614-cc26-4743-a90b-7aade6164800.png │ │ ├── d57c4e1e-c082-4bba-81fa-fe81f7e0019a.png │ │ ├── d63bdca8-d5ef-4fb4-a145-4c4ea80e08ae.png │ │ ├── d68b479b-3d35-4556-ba20-feb9593f8d52.png │ │ ├── d6b91f14-feae-424f-b41e-2b44f660ce94.png │ │ ├── d7a2d3c1-bbf6-4a9b-8efb-1aab43226c75.png │ │ ├── d8171570-7f0b-4a91-9af2-4ec90929e6aa.png │ │ ├── d951139d-9708-4052-9141-ea146c1cef3e.png │ │ ├── da835254-bf3c-4483-9dcd-b84acc29e975.png │ │ ├── dbd3b671-0164-4734-98d0-cc5ef6a7d888.png │ │ ├── dd8d1a8d-8468-4a69-9038-0f4d6b0766fe.png │ │ ├── ddc8d26c-9d54-4daf-86c9-822365adb8f8.png │ │ ├── ddf979b8-d7bf-4acd-a028-f0f422c1b601.png │ │ ├── de7acf2b-97af-4108-b4cd-53517ccff002.png │ │ ├── e10a559a-ba96-436a-a97d-397c19e8efa7.png │ │ ├── e32cb7e8-2ca0-4279-9d4b-157085c24d1a.png │ │ ├── e3f3a0f3-2725-4464-9986-45b694de11f5.png │ │ ├── e4fe852a-5ff2-4959-b3cf-f3f822a08e59.png │ │ ├── e6a82319-eb4a-4bf4-9a94-a8357a91272a.png │ │ ├── e799c781-2245-4265-a59d-e61b485940ae.png │ │ ├── ea869404-fa62-46ec-b01d-811fc8870d1b.png │ │ ├── eb4906eb-0bfc-40e2-9cff-a139c61df122.png │ │ ├── eb8240de-35f7-4c15-8d59-05795042f63c.png │ │ ├── ed60e9f8-ed9b-4cad-84b1-4d01d6d2acac.png │ │ ├── ee2ec4d9-eec3-4438-9b61-ba2586a2674d.png │ │ ├── f25a936f-b9db-4d4a-a9b1-d9a7dd2a0fe4.png │ │ ├── f4105463-68fd-4fda-a9d7-adc66e8e49e3.png │ │ ├── f429d61d-ef59-4d89-9841-764a872eeb47.png │ │ ├── f47879b0-bc46-4154-8026-98882f97b758.png │ │ ├── f5f89baf-4b5f-462e-a4b1-f680bb07de70.png │ │ ├── f6a0732a-abac-4e26-9908-78e9ac2630f6.png │ │ ├── fa222dfc-1a1b-4de0-ad99-b3579684b58b.png │ │ ├── fa24c67e-a200-407c-a377-fd03edf146c3.png │ │ ├── fa467eaf-c5f5-4a5a-8d51-07c24870737a.png │ │ ├── fa939f2b-6791-4589-9cfe-f888fdb4e473.png │ │ ├── fb9b9f9b-587a-4010-b9cf-05b8c490cdeb.png │ │ ├── fbfc1784-44dc-4f35-979d-d0a818a2b522.png │ │ ├── fcdb0ff1-fc24-4579-a3e4-2fdadd6d4b0f.png │ │ ├── fd3ff76e-1ab3-49d6-b1c1-6938952e1c65.png │ │ ├── fd4079e2-e753-4f1c-b571-b14f8ad0c2d6.png │ │ ├── fecb6c49-bd0d-45ba-9d2a-bc5839ead45b.png │ │ ├── ff9cfc12-6a9d-4c0c-805b-355b5d976a24.png │ │ └── ffc9e57b-1ad6-4d8e-9bd8-b3a9d51d6758.png │ └── zomato_with_images.json └── zomatonest │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── nest-cli.json │ ├── okay.png │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── app.controller.spec.ts │ ├── app.controller.ts │ ├── app.module.ts │ ├── app.service.ts │ ├── images │ │ ├── alexa.png │ │ ├── images.controller.ts │ │ ├── images.module.ts │ │ ├── images.service.ts │ │ └── schemas │ │ │ └── image.schema.ts │ ├── main.ts │ ├── order │ │ ├── order.controller.ts │ │ ├── order.module.ts │ │ ├── order.service.ts │ │ └── schemas │ │ │ └── order.schema.ts │ ├── restaurant │ │ ├── restaurant.controller.ts │ │ ├── restaurant.module.ts │ │ ├── restaurant.service.ts │ │ └── schemas │ │ │ └── restaurant.schema.ts │ └── user │ │ ├── schemas │ │ └── user.schema.ts │ │ ├── user.controller.ts │ │ ├── user.module.ts │ │ └── user.service.ts │ ├── test │ ├── app.e2e-spec.ts │ └── jest-e2e.json │ ├── tsconfig.build.json │ └── tsconfig.json ├── lecture-6 └── zomclone │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Routes.js │ ├── components │ ├── AuthGaurd.js │ ├── BotomNav.js │ └── Restraunt.js │ ├── index.css │ ├── index.js │ ├── layouts │ └── MainLayout.js │ ├── logo.svg │ ├── pages │ ├── Gold.js │ ├── Home.js │ ├── Login.js │ ├── Out.js │ ├── Profile.js │ └── Search.js │ ├── reportWebVitals.js │ ├── setupTests.js │ └── utils │ ├── axios.js │ └── firebase.js ├── lecture-7 ├── zomatonest │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── nest-cli.json │ ├── okay.png │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app.controller.spec.ts │ │ ├── app.controller.ts │ │ ├── app.module.ts │ │ ├── app.service.ts │ │ ├── images │ │ │ ├── alexa.png │ │ │ ├── images.controller.ts │ │ │ ├── images.module.ts │ │ │ ├── images.service.ts │ │ │ └── schemas │ │ │ │ └── image.schema.ts │ │ ├── main.ts │ │ ├── order │ │ │ ├── order.controller.ts │ │ │ ├── order.module.ts │ │ │ ├── order.service.ts │ │ │ └── schemas │ │ │ │ └── order.schema.ts │ │ ├── restaurant │ │ │ ├── restaurant.controller.ts │ │ │ ├── restaurant.module.ts │ │ │ ├── restaurant.service.ts │ │ │ └── schemas │ │ │ │ └── restaurant.schema.ts │ │ └── user │ │ │ ├── schemas │ │ │ └── user.schema.ts │ │ │ ├── user.controller.ts │ │ │ ├── user.module.ts │ │ │ └── user.service.ts │ ├── test │ │ ├── app.e2e-spec.ts │ │ └── jest-e2e.json │ ├── tsconfig.build.json │ └── tsconfig.json └── zomclone │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Routes.js │ ├── components │ ├── AppBarSimple.js │ ├── AuthGaurd.js │ ├── BotomNav.js │ ├── Dish.js │ └── Restraunt.js │ ├── index.css │ ├── index.js │ ├── layouts │ └── MainLayout.js │ ├── logo.svg │ ├── pages │ ├── Gold.js │ ├── Home.js │ ├── Login.js │ ├── Menu.js │ ├── Out.js │ ├── Profile.js │ └── Search.js │ ├── reportWebVitals.js │ ├── setupTests.js │ └── utils │ ├── axios.js │ └── firebase.js └── zomback ├── .eslintrc.js ├── .prettierrc ├── README.md ├── nest-cli.json ├── package.json ├── src ├── app.controller.spec.ts ├── app.controller.ts ├── app.module.ts ├── app.service.ts └── main.ts ├── test ├── app.e2e-spec.ts └── jest-e2e.json ├── tsconfig.build.json └── tsconfig.json /DoubtSession1/index.js: -------------------------------------------------------------------------------- 1 | let obj = { 2 | name: "Vasudev Singhal", 3 | class: "Xii", 4 | rollNo: 23 5 | } 6 | 7 | 8 | let {name} = obj; 9 | 10 | 11 | console.log(name); -------------------------------------------------------------------------------- /DoubtSession1/zomclone/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /DoubtSession1/zomclone/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession1/zomclone/public/favicon.ico -------------------------------------------------------------------------------- /DoubtSession1/zomclone/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession1/zomclone/public/logo192.png -------------------------------------------------------------------------------- /DoubtSession1/zomclone/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession1/zomclone/public/logo512.png -------------------------------------------------------------------------------- /DoubtSession1/zomclone/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /DoubtSession1/zomclone/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /DoubtSession1/zomclone/src/App.js: -------------------------------------------------------------------------------- 1 | import "./App.css"; 2 | import React, { useEffect, useState } from "react"; 3 | import Routes from "./Routes"; 4 | import firebase from "./utils/firebase"; 5 | 6 | let UserContext = React.createContext(); 7 | 8 | function App() { 9 | let [user, setUser] = useState(); 10 | 11 | useEffect(function () { 12 | firebase.auth().onAuthStateChanged(function (userInfo) { 13 | setUser(userInfo); 14 | }); 15 | }, []); 16 | 17 | return ( 18 | 19 | 20 | 21 | ); 22 | } 23 | 24 | export { App, UserContext }; -------------------------------------------------------------------------------- /DoubtSession1/zomclone/src/App.test.js: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react'; 2 | import App from './App'; 3 | 4 | test('renders learn react link', () => { 5 | render(); 6 | const linkElement = screen.getByText(/learn react/i); 7 | expect(linkElement).toBeInTheDocument(); 8 | }); 9 | -------------------------------------------------------------------------------- /DoubtSession1/zomclone/src/Routes.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Switch, Route } from "react-router-dom"; 3 | import AuthGaurd from "./components/AuthGaurd"; 4 | import Home from "./pages/Home"; 5 | import Login from "./pages/Login"; 6 | 7 | export default function Routes() { 8 | return ( 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | ); 20 | } 21 | -------------------------------------------------------------------------------- /DoubtSession1/zomclone/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | } 9 | 10 | code { 11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 12 | monospace; 13 | } 14 | -------------------------------------------------------------------------------- /DoubtSession1/zomclone/src/index.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ReactDOM from "react-dom"; 3 | import "./index.css"; 4 | import {App} from "./App"; 5 | import reportWebVitals from "./reportWebVitals"; 6 | import { BrowserRouter as Router } from "react-router-dom"; 7 | 8 | ReactDOM.render( 9 | 10 | 11 | 12 | 13 | , 14 | document.getElementById("root") 15 | ); 16 | 17 | // If you want to start measuring performance in your app, pass a function 18 | // to log results (for example: reportWebVitals(console.log)) 19 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals 20 | reportWebVitals(); 21 | -------------------------------------------------------------------------------- /DoubtSession1/zomclone/src/pages/Home.js: -------------------------------------------------------------------------------- 1 | import { useContext } from "react"; 2 | import { UserContext } from "../App"; 3 | import firebase from "../utils/firebase"; 4 | export default function Home() { 5 | let value = useContext(UserContext); 6 | // console.log(value); 7 | let user = value.user; 8 | console.log(user); 9 | return ( 10 |
11 |

{user.displayName || user.phoneNumber}

12 | 19 |
20 | ); 21 | } 22 | -------------------------------------------------------------------------------- /DoubtSession1/zomclone/src/reportWebVitals.js: -------------------------------------------------------------------------------- 1 | const reportWebVitals = onPerfEntry => { 2 | if (onPerfEntry && onPerfEntry instanceof Function) { 3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 4 | getCLS(onPerfEntry); 5 | getFID(onPerfEntry); 6 | getFCP(onPerfEntry); 7 | getLCP(onPerfEntry); 8 | getTTFB(onPerfEntry); 9 | }); 10 | } 11 | }; 12 | 13 | export default reportWebVitals; 14 | -------------------------------------------------------------------------------- /DoubtSession1/zomclone/src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | -------------------------------------------------------------------------------- /DoubtSession1/zomclone/src/utils/firebase.js: -------------------------------------------------------------------------------- 1 | import firebase from "firebase"; 2 | 3 | var firebaseConfig = { 4 | apiKey: "AIzaSyCv-xaHLGA4Pst3GY8YBCid1Jxz9wL7td8", 5 | authDomain: "zomato-7c424.firebaseapp.com", 6 | projectId: "zomato-7c424", 7 | storageBucket: "zomato-7c424.appspot.com", 8 | messagingSenderId: "98010897824", 9 | appId: "1:98010897824:web:cc4540d6d7cb3b59e458c5", 10 | }; 11 | 12 | firebase.initializeApp(firebaseConfig); 13 | 14 | export default firebase; 15 | -------------------------------------------------------------------------------- /DoubtSession2/zomatonest/.gitignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /dist 3 | /node_modules 4 | 5 | # Logs 6 | logs 7 | *.log 8 | npm-debug.log* 9 | yarn-debug.log* 10 | yarn-error.log* 11 | lerna-debug.log* 12 | 13 | # OS 14 | .DS_Store 15 | 16 | # Tests 17 | /coverage 18 | /.nyc_output 19 | 20 | # IDEs and editors 21 | /.idea 22 | .project 23 | .classpath 24 | .c9/ 25 | *.launch 26 | .settings/ 27 | *.sublime-workspace 28 | 29 | # IDE - VSCode 30 | .vscode/* 31 | !.vscode/settings.json 32 | !.vscode/tasks.json 33 | !.vscode/launch.json 34 | !.vscode/extensions.json -------------------------------------------------------------------------------- /DoubtSession2/zomatonest/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "trailingComma": "all" 4 | } -------------------------------------------------------------------------------- /DoubtSession2/zomatonest/nest-cli.json: -------------------------------------------------------------------------------- 1 | { 2 | "collection": "@nestjs/schematics", 3 | "sourceRoot": "src" 4 | } 5 | -------------------------------------------------------------------------------- /DoubtSession2/zomatonest/okay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomatonest/okay.png -------------------------------------------------------------------------------- /DoubtSession2/zomatonest/src/app.controller.ts: -------------------------------------------------------------------------------- 1 | import { Controller, Get } from '@nestjs/common'; 2 | import { AppService } from './app.service'; 3 | 4 | @Controller() 5 | export class AppController { 6 | constructor(private readonly appService: AppService) {} 7 | 8 | @Get() 9 | getHello(): string { 10 | return this.appService.getHello(); 11 | } 12 | } 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /DoubtSession2/zomatonest/src/app.service.ts: -------------------------------------------------------------------------------- 1 | import { Injectable } from '@nestjs/common'; 2 | 3 | @Injectable() 4 | export class AppService { 5 | getHello(): string { 6 | return 'Hello World!'; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /DoubtSession2/zomatonest/src/images/alexa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomatonest/src/images/alexa.png -------------------------------------------------------------------------------- /DoubtSession2/zomatonest/src/images/images.module.ts: -------------------------------------------------------------------------------- 1 | import { Module } from '@nestjs/common'; 2 | import { ImagesService } from './images.service'; 3 | import { ImagesController } from './images.controller'; 4 | import { MongooseModule } from '@nestjs/mongoose'; 5 | import { Image, ImageSchema } from './schemas/image.schema'; 6 | 7 | @Module({ 8 | imports: [ 9 | MongooseModule.forFeature([{ name: Image.name, schema: ImageSchema }]), 10 | ], 11 | controllers: [ImagesController], 12 | providers: [ImagesService], 13 | }) 14 | export class ImagesModule {} 15 | -------------------------------------------------------------------------------- /DoubtSession2/zomatonest/src/images/schemas/image.schema.ts: -------------------------------------------------------------------------------- 1 | import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose'; 2 | import { Document } from 'mongoose'; 3 | 4 | export type ImageDocument = Image & Document; 5 | 6 | @Schema() 7 | export class Image { 8 | @Prop() 9 | content: string; 10 | } 11 | 12 | export const ImageSchema = SchemaFactory.createForClass(Image); 13 | -------------------------------------------------------------------------------- /DoubtSession2/zomatonest/src/main.ts: -------------------------------------------------------------------------------- 1 | import { NestFactory } from '@nestjs/core'; 2 | import { AppModule } from './app.module'; 3 | import * as express from 'express'; 4 | 5 | async function bootstrap() { 6 | const app = await NestFactory.create(AppModule); 7 | app.enableCors(); 8 | app.use(express.json({ limit: '50mb' })); 9 | await app.listen(process.env.PORT || 5000); 10 | } 11 | bootstrap(); 12 | -------------------------------------------------------------------------------- /DoubtSession2/zomatonest/src/order/order.module.ts: -------------------------------------------------------------------------------- 1 | import { Module } from '@nestjs/common'; 2 | import { OrderService } from './order.service'; 3 | import { OrderController } from './order.controller'; 4 | import { MongooseModule } from '@nestjs/mongoose'; 5 | import { Order, OrderSchema } from './schemas/order.schema'; 6 | 7 | @Module({ 8 | imports: [ 9 | MongooseModule.forFeature([{ name: Order.name, schema: OrderSchema}]), 10 | ], 11 | controllers: [OrderController], 12 | providers: [OrderService] 13 | }) 14 | export class OrderModule {} 15 | -------------------------------------------------------------------------------- /DoubtSession2/zomatonest/src/restaurant/restaurant.module.ts: -------------------------------------------------------------------------------- 1 | import { Module } from '@nestjs/common'; 2 | import { RestaurantService } from './restaurant.service'; 3 | import { RestaurantController } from './restaurant.controller'; 4 | import { MongooseModule } from '@nestjs/mongoose'; 5 | import { Restaurant, RestaurantSchema } from './schemas/restaurant.schema'; 6 | 7 | @Module({ 8 | imports: [ 9 | MongooseModule.forFeature([{ name: Restaurant.name, schema: RestaurantSchema}]), 10 | ], 11 | controllers: [RestaurantController], 12 | providers: [RestaurantService] 13 | }) 14 | export class RestaurantModule {} 15 | -------------------------------------------------------------------------------- /DoubtSession2/zomatonest/src/restaurant/schemas/restaurant.schema.ts: -------------------------------------------------------------------------------- 1 | import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose'; 2 | import { Document } from 'mongoose'; 3 | 4 | export type RestaurantDocument = Restaurant & Document; 5 | 6 | @Schema() 7 | export class Restaurant { 8 | @Prop() 9 | name: string; 10 | 11 | @Prop() 12 | address: string; 13 | 14 | @Prop() 15 | phoneNo: string; 16 | 17 | @Prop() 18 | rating: string; 19 | 20 | @Prop() 21 | menu: Array; 22 | 23 | @Prop() 24 | onlineOrder: string; 25 | 26 | @Prop() 27 | photo: string; 28 | } 29 | 30 | export const RestaurantSchema = SchemaFactory.createForClass(Restaurant); 31 | -------------------------------------------------------------------------------- /DoubtSession2/zomatonest/src/user/schemas/user.schema.ts: -------------------------------------------------------------------------------- 1 | import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose'; 2 | import { Document } from 'mongoose'; 3 | 4 | export type UserDocument = User & Document; 5 | 6 | @Schema() 7 | export class User { 8 | @Prop() 9 | name: string; 10 | 11 | @Prop() 12 | phoneNo: number; 13 | 14 | @Prop() 15 | email: string; 16 | 17 | @Prop() 18 | address: string; 19 | } 20 | 21 | export const UserSchema = SchemaFactory.createForClass(User); 22 | -------------------------------------------------------------------------------- /DoubtSession2/zomatonest/src/user/user.module.ts: -------------------------------------------------------------------------------- 1 | import { Module } from '@nestjs/common'; 2 | import { UserService } from './user.service'; 3 | import { UserController } from './user.controller'; 4 | import { MongooseModule } from '@nestjs/mongoose'; 5 | import { User, UserSchema } from './schemas/user.schema'; 6 | 7 | @Module({ 8 | imports: [ 9 | MongooseModule.forFeature([{ name: User.name, schema: UserSchema}]), 10 | ], 11 | controllers: [UserController], 12 | providers: [UserService] 13 | }) 14 | export class UserModule {} 15 | -------------------------------------------------------------------------------- /DoubtSession2/zomatonest/test/jest-e2e.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleFileExtensions": ["js", "json", "ts"], 3 | "rootDir": ".", 4 | "testEnvironment": "node", 5 | "testRegex": ".e2e-spec.ts$", 6 | "transform": { 7 | "^.+\\.(t|j)s$": "ts-jest" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /DoubtSession2/zomatonest/tsconfig.build.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "exclude": ["node_modules", "test", "dist", "**/*spec.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /DoubtSession2/zomatonest/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "declaration": true, 5 | "removeComments": true, 6 | "emitDecoratorMetadata": true, 7 | "experimentalDecorators": true, 8 | "allowSyntheticDefaultImports": true, 9 | "target": "es2017", 10 | "sourceMap": true, 11 | "outDir": "./dist", 12 | "baseUrl": "./", 13 | "incremental": true 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 9 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build/* 2 | !/build/.npmkeep 3 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/capacitor.build.gradle: -------------------------------------------------------------------------------- 1 | // DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN 2 | 3 | android { 4 | compileOptions { 5 | sourceCompatibility JavaVersion.VERSION_1_8 6 | targetCompatibility JavaVersion.VERSION_1_8 7 | } 8 | } 9 | 10 | apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle" 11 | dependencies { 12 | implementation project(':capacitor-app') 13 | implementation project(':capacitor-haptics') 14 | implementation project(':capacitor-keyboard') 15 | implementation project(':capacitor-status-bar') 16 | 17 | } 18 | 19 | 20 | if (hasProperty('postBuildExtras')) { 21 | postBuildExtras() 22 | } 23 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/assets/capacitor.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "appId": "io.ionic.starter", 3 | "appName": "Zom", 4 | "webDir": "build", 5 | "bundledWebRuntime": false 6 | } 7 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/assets/capacitor.plugins.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "pkg": "@capacitor/app", 4 | "classpath": "com.capacitorjs.plugins.app.AppPlugin" 5 | }, 6 | { 7 | "pkg": "@capacitor/haptics", 8 | "classpath": "com.capacitorjs.plugins.haptics.HapticsPlugin" 9 | }, 10 | { 11 | "pkg": "@capacitor/keyboard", 12 | "classpath": "com.capacitorjs.plugins.keyboard.KeyboardPlugin" 13 | }, 14 | { 15 | "pkg": "@capacitor/status-bar", 16 | "classpath": "com.capacitorjs.plugins.statusbar.StatusBarPlugin" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/java/io/ionic/starter/MainActivity.java: -------------------------------------------------------------------------------- 1 | package io.ionic.starter; 2 | 3 | import com.getcapacitor.BridgeActivity; 4 | 5 | public class MainActivity extends BridgeActivity {} 6 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/drawable-land-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/drawable-land-hdpi/splash.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/drawable-land-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/drawable-land-mdpi/splash.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/drawable-land-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/drawable-land-xhdpi/splash.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/drawable-land-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/drawable-land-xxhdpi/splash.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/drawable-land-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/drawable-land-xxxhdpi/splash.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/drawable-port-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/drawable-port-hdpi/splash.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/drawable-port-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/drawable-port-mdpi/splash.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/drawable-port-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/drawable-port-xhdpi/splash.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/drawable-port-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/drawable-port-xxhdpi/splash.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/drawable-port-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/drawable-port-xxxhdpi/splash.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/drawable/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/drawable/splash.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Zom 4 | Zom 5 | io.ionic.starter 6 | io.ionic.starter 7 | 8 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/xml/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.getcapacitor.myapp; 2 | 3 | import static org.junit.Assert.*; 4 | 5 | import org.junit.Test; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | 14 | @Test 15 | public void addition_isCorrect() throws Exception { 16 | assertEquals(4, 2 + 2); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-all.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | include ':capacitor-cordova-android-plugins' 3 | project(':capacitor-cordova-android-plugins').projectDir = new File('./capacitor-cordova-android-plugins/') 4 | 5 | apply from: 'capacitor.settings.gradle' -------------------------------------------------------------------------------- /DoubtSession2/zomclone/android/variables.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | minSdkVersion = 21 3 | compileSdkVersion = 30 4 | targetSdkVersion = 30 5 | androidxActivityVersion = '1.2.0' 6 | androidxAppCompatVersion = '1.2.0' 7 | androidxCoordinatorLayoutVersion = '1.1.0' 8 | androidxCoreVersion = '1.3.2' 9 | androidxFragmentVersion = '1.3.0' 10 | junitVersion = '4.13.1' 11 | androidxJunitVersion = '1.1.2' 12 | androidxEspressoCoreVersion = '3.3.0' 13 | cordovaAndroidVersion = '7.0.0' 14 | } -------------------------------------------------------------------------------- /DoubtSession2/zomclone/capacitor.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "appId": "io.ionic.starter", 3 | "appName": "Zom", 4 | "webDir": "build", 5 | "bundledWebRuntime": false 6 | } 7 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/ionic.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zom", 3 | "integrations": { 4 | "capacitor": {} 5 | }, 6 | "type": "react" 7 | } 8 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/public/favicon.ico -------------------------------------------------------------------------------- /DoubtSession2/zomclone/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/public/logo192.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/public/logo512.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/public/zom-splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/DoubtSession2/zomclone/public/zom-splash.png -------------------------------------------------------------------------------- /DoubtSession2/zomclone/src/App.test.js: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react'; 2 | import App from './App'; 3 | 4 | test('renders learn react link', () => { 5 | render(); 6 | const linkElement = screen.getByText(/learn react/i); 7 | expect(linkElement).toBeInTheDocument(); 8 | }); 9 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | } 9 | 10 | code { 11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 12 | monospace; 13 | } 14 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/src/index.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ReactDOM from "react-dom"; 3 | import "./index.css"; 4 | import { App } from "./App"; 5 | import reportWebVitals from "./reportWebVitals"; 6 | import { BrowserRouter as Router } from "react-router-dom"; 7 | 8 | ReactDOM.render( 9 | 10 | 11 | 12 | 13 | , 14 | document.getElementById("root") 15 | ); 16 | 17 | // If you want to start measuring performance in your app, pass a function 18 | // to log results (for example: reportWebVitals(console.log)) 19 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals 20 | reportWebVitals(); 21 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/src/layouts/MainLayout.js: -------------------------------------------------------------------------------- 1 | import BottomNav from "../components/BotomNav"; 2 | 3 | export default function MainLayout({ children }) { 4 | return ( 5 |
12 | {children} 13 | 14 |
15 | ); 16 | } 17 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/src/pages/Gold.js: -------------------------------------------------------------------------------- 1 | 2 | export default function Gold() { 3 | return ( 4 |
5 |

Gold

6 |
7 | ); 8 | } -------------------------------------------------------------------------------- /DoubtSession2/zomclone/src/pages/Home.js: -------------------------------------------------------------------------------- 1 | import { useContext } from "react"; 2 | import { List } from "@material-ui/core"; 3 | import { RestrauntsContext } from "../App"; 4 | import Restraunt from "../components/Restraunt"; 5 | 6 | export default function Home() { 7 | let {restraunts} = useContext(RestrauntsContext); 8 | 9 | return ( 10 | 16 | {restraunts.map(function (info, index) { 17 | return ; 18 | })} 19 | 20 | ); 21 | } 22 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/src/pages/Out.js: -------------------------------------------------------------------------------- 1 | 2 | export default function Out() { 3 | return ( 4 |
5 |

Out

6 |
7 | ); 8 | } 9 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/src/pages/Search.js: -------------------------------------------------------------------------------- 1 | export default function Search() { 2 | return ( 3 |
4 |

Search

5 |
6 | ); 7 | } -------------------------------------------------------------------------------- /DoubtSession2/zomclone/src/reportWebVitals.js: -------------------------------------------------------------------------------- 1 | const reportWebVitals = onPerfEntry => { 2 | if (onPerfEntry && onPerfEntry instanceof Function) { 3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 4 | getCLS(onPerfEntry); 5 | getFID(onPerfEntry); 6 | getFCP(onPerfEntry); 7 | getLCP(onPerfEntry); 8 | getTTFB(onPerfEntry); 9 | }); 10 | } 11 | }; 12 | 13 | export default reportWebVitals; 14 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | -------------------------------------------------------------------------------- /DoubtSession2/zomclone/src/utils/axios.js: -------------------------------------------------------------------------------- 1 | import axios from 'axios'; 2 | 3 | let instance = axios.create(); 4 | 5 | export default instance; -------------------------------------------------------------------------------- /DoubtSession2/zomclone/src/utils/firebase.js: -------------------------------------------------------------------------------- 1 | import firebase from "firebase"; 2 | 3 | var firebaseConfig = { 4 | apiKey: "AIzaSyCZTPSMMX5D1BfovHwK8MqPqoo8FrG5F4o", 5 | authDomain: "zomato-f797b.firebaseapp.com", 6 | projectId: "zomato-f797b", 7 | storageBucket: "zomato-f797b.appspot.com", 8 | messagingSenderId: "168162061422", 9 | appId: "1:168162061422:web:05bcd08a183160c3618a7f", 10 | }; 11 | 12 | firebase.initializeApp(firebaseConfig); 13 | 14 | export default firebase; 15 | -------------------------------------------------------------------------------- /May 31 20h35.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/May 31 20h35.svgz -------------------------------------------------------------------------------- /lecture-1/jsInsert/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-1/jsInsert/coin.png -------------------------------------------------------------------------------- /lecture-1/jsInsert/coins.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-1/jsInsert/coins.mp3 -------------------------------------------------------------------------------- /lecture-1/simplehtml/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 |

Welcome to Code for Cause

11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /lecture-1/simplehtml/okay/another.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 |

This is another page

11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /lecture-1/simplehtml/okay/p.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-1/simplehtml/okay/p.jpeg -------------------------------------------------------------------------------- /lecture-1/simplehtml/panda.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-1/simplehtml/panda.jpeg -------------------------------------------------------------------------------- /lecture-2/Jun 2 20h35.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-2/Jun 2 20h35.svgz -------------------------------------------------------------------------------- /lecture-2/githubtry/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /lecture-2/githubtry/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-2/githubtry/public/favicon.ico -------------------------------------------------------------------------------- /lecture-2/githubtry/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-2/githubtry/public/logo192.png -------------------------------------------------------------------------------- /lecture-2/githubtry/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-2/githubtry/public/logo512.png -------------------------------------------------------------------------------- /lecture-2/githubtry/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /lecture-2/githubtry/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /lecture-2/githubtry/src/App.test.js: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react'; 2 | import App from './App'; 3 | 4 | test('renders learn react link', () => { 5 | render(); 6 | const linkElement = screen.getByText(/learn react/i); 7 | expect(linkElement).toBeInTheDocument(); 8 | }); 9 | -------------------------------------------------------------------------------- /lecture-2/githubtry/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | } 9 | 10 | code { 11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 12 | monospace; 13 | } 14 | -------------------------------------------------------------------------------- /lecture-2/githubtry/src/index.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ReactDOM from "react-dom"; 3 | import App from "./App"; 4 | import "./index.css"; 5 | 6 | let chacha = document.getElementById("chacha"); 7 | 8 | ReactDOM.render(, chacha); 9 | -------------------------------------------------------------------------------- /lecture-2/githubtry/src/reportWebVitals.js: -------------------------------------------------------------------------------- 1 | const reportWebVitals = onPerfEntry => { 2 | if (onPerfEntry && onPerfEntry instanceof Function) { 3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 4 | getCLS(onPerfEntry); 5 | getFID(onPerfEntry); 6 | getFCP(onPerfEntry); 7 | getLCP(onPerfEntry); 8 | getTTFB(onPerfEntry); 9 | }); 10 | } 11 | }; 12 | 13 | export default reportWebVitals; 14 | -------------------------------------------------------------------------------- /lecture-2/githubtry/src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | -------------------------------------------------------------------------------- /lecture-3/Jun 4 20h41.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-3/Jun 4 20h41.svgz -------------------------------------------------------------------------------- /lecture-3/zomclone/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /lecture-3/zomclone/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-3/zomclone/public/favicon.ico -------------------------------------------------------------------------------- /lecture-3/zomclone/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-3/zomclone/public/logo192.png -------------------------------------------------------------------------------- /lecture-3/zomclone/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-3/zomclone/public/logo512.png -------------------------------------------------------------------------------- /lecture-3/zomclone/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /lecture-3/zomclone/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /lecture-3/zomclone/src/App.js: -------------------------------------------------------------------------------- 1 | import "./App.css"; 2 | import React, { useEffect, useState } from "react"; 3 | import Routes from "./Routes"; 4 | import firebase from "./utils/firebase"; 5 | 6 | let UserContext = React.createContext(); 7 | 8 | function App() { 9 | let [user, setUser] = useState(); 10 | 11 | useEffect(function () { 12 | firebase.auth().onAuthStateChanged(function (userInfo) { 13 | setUser(userInfo); 14 | }); 15 | }, []); 16 | 17 | return ( 18 | 19 | ; 20 | 21 | ); 22 | } 23 | 24 | export { App, UserContext }; 25 | -------------------------------------------------------------------------------- /lecture-3/zomclone/src/App.test.js: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react'; 2 | import App from './App'; 3 | 4 | test('renders learn react link', () => { 5 | render(); 6 | const linkElement = screen.getByText(/learn react/i); 7 | expect(linkElement).toBeInTheDocument(); 8 | }); 9 | -------------------------------------------------------------------------------- /lecture-3/zomclone/src/Routes.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Switch, Route } from "react-router-dom"; 3 | import AuthGaurd from "./components/AuthGaurd"; 4 | import Home from "./pages/Home"; 5 | import Login from "./pages/Login"; 6 | 7 | export default function Routes() { 8 | return ( 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | ); 20 | } 21 | -------------------------------------------------------------------------------- /lecture-3/zomclone/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | } 9 | 10 | code { 11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 12 | monospace; 13 | } 14 | -------------------------------------------------------------------------------- /lecture-3/zomclone/src/index.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ReactDOM from "react-dom"; 3 | import "./index.css"; 4 | import { App } from "./App"; 5 | import reportWebVitals from "./reportWebVitals"; 6 | import { BrowserRouter as Router } from "react-router-dom"; 7 | 8 | ReactDOM.render( 9 | 10 | 11 | 12 | 13 | , 14 | document.getElementById("root") 15 | ); 16 | 17 | // If you want to start measuring performance in your app, pass a function 18 | // to log results (for example: reportWebVitals(console.log)) 19 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals 20 | reportWebVitals(); 21 | -------------------------------------------------------------------------------- /lecture-3/zomclone/src/pages/Home.js: -------------------------------------------------------------------------------- 1 | import { useContext } from "react"; 2 | import { UserContext } from "../App"; 3 | import firebase from "../utils/firebase"; 4 | export default function () { 5 | let { user } = useContext(UserContext); 6 | return ( 7 |
8 |

{user.displayName}

9 | 16 |
17 | ); 18 | } 19 | -------------------------------------------------------------------------------- /lecture-3/zomclone/src/reportWebVitals.js: -------------------------------------------------------------------------------- 1 | const reportWebVitals = onPerfEntry => { 2 | if (onPerfEntry && onPerfEntry instanceof Function) { 3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 4 | getCLS(onPerfEntry); 5 | getFID(onPerfEntry); 6 | getFCP(onPerfEntry); 7 | getLCP(onPerfEntry); 8 | getTTFB(onPerfEntry); 9 | }); 10 | } 11 | }; 12 | 13 | export default reportWebVitals; 14 | -------------------------------------------------------------------------------- /lecture-3/zomclone/src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | -------------------------------------------------------------------------------- /lecture-3/zomclone/src/utils/firebase.js: -------------------------------------------------------------------------------- 1 | import firebase from "firebase"; 2 | 3 | var firebaseConfig = { 4 | apiKey: "AIzaSyCZTPSMMX5D1BfovHwK8MqPqoo8FrG5F4o", 5 | authDomain: "zomato-f797b.firebaseapp.com", 6 | projectId: "zomato-f797b", 7 | storageBucket: "zomato-f797b.appspot.com", 8 | messagingSenderId: "168162061422", 9 | appId: "1:168162061422:web:05bcd08a183160c3618a7f", 10 | }; 11 | 12 | firebase.initializeApp(firebaseConfig); 13 | 14 | export default firebase; 15 | -------------------------------------------------------------------------------- /lecture-4/Jun 9 20h33.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-4/Jun 9 20h33.svgz -------------------------------------------------------------------------------- /lecture-4/zomback/.gitignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /dist 3 | /node_modules 4 | 5 | # Logs 6 | logs 7 | *.log 8 | npm-debug.log* 9 | yarn-debug.log* 10 | yarn-error.log* 11 | lerna-debug.log* 12 | 13 | # OS 14 | .DS_Store 15 | 16 | # Tests 17 | /coverage 18 | /.nyc_output 19 | 20 | # IDEs and editors 21 | /.idea 22 | .project 23 | .classpath 24 | .c9/ 25 | *.launch 26 | .settings/ 27 | *.sublime-workspace 28 | 29 | # IDE - VSCode 30 | .vscode/* 31 | !.vscode/settings.json 32 | !.vscode/tasks.json 33 | !.vscode/launch.json 34 | !.vscode/extensions.json -------------------------------------------------------------------------------- /lecture-4/zomback/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "trailingComma": "all" 4 | } -------------------------------------------------------------------------------- /lecture-4/zomback/nest-cli.json: -------------------------------------------------------------------------------- 1 | { 2 | "collection": "@nestjs/schematics", 3 | "sourceRoot": "src" 4 | } 5 | -------------------------------------------------------------------------------- /lecture-4/zomback/src/app.controller.ts: -------------------------------------------------------------------------------- 1 | import { Controller, Get } from '@nestjs/common'; 2 | import { AppService } from './app.service'; 3 | 4 | @Controller() 5 | export class AppController { 6 | constructor(private readonly appService: AppService) {} 7 | 8 | @Get("/hello") 9 | getHello(): string { 10 | return this.appService.getHello(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /lecture-4/zomback/src/app.module.ts: -------------------------------------------------------------------------------- 1 | import { Module } from '@nestjs/common'; 2 | import { AppController } from './app.controller'; 3 | import { AppService } from './app.service'; 4 | import { UsersModule } from './users/users.module'; 5 | 6 | @Module({ 7 | imports: [UsersModule], 8 | controllers: [AppController], 9 | providers: [AppService], 10 | }) 11 | export class AppModule {} 12 | -------------------------------------------------------------------------------- /lecture-4/zomback/src/app.service.ts: -------------------------------------------------------------------------------- 1 | import { Injectable } from '@nestjs/common'; 2 | 3 | @Injectable() 4 | export class AppService { 5 | getHello(): string { 6 | return 'Welcome to Code for Cause!'; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /lecture-4/zomback/src/main.ts: -------------------------------------------------------------------------------- 1 | import { NestFactory } from '@nestjs/core'; 2 | import { AppModule } from './app.module'; 3 | 4 | async function bootstrap() { 5 | const app = await NestFactory.create(AppModule); 6 | await app.listen(3000); 7 | } 8 | bootstrap(); 9 | -------------------------------------------------------------------------------- /lecture-4/zomback/src/users/dto/create-user.dto.ts: -------------------------------------------------------------------------------- 1 | export class CreateUserDto {} 2 | -------------------------------------------------------------------------------- /lecture-4/zomback/src/users/dto/update-user.dto.ts: -------------------------------------------------------------------------------- 1 | import { PartialType } from '@nestjs/mapped-types'; 2 | import { CreateUserDto } from './create-user.dto'; 3 | 4 | export class UpdateUserDto extends PartialType(CreateUserDto) {} 5 | -------------------------------------------------------------------------------- /lecture-4/zomback/src/users/entities/user.entity.ts: -------------------------------------------------------------------------------- 1 | export class User {} 2 | -------------------------------------------------------------------------------- /lecture-4/zomback/src/users/users.module.ts: -------------------------------------------------------------------------------- 1 | import { Module } from '@nestjs/common'; 2 | import { UsersService } from './users.service'; 3 | import { UsersController } from './users.controller'; 4 | 5 | @Module({ 6 | controllers: [UsersController], 7 | providers: [UsersService] 8 | }) 9 | export class UsersModule {} 10 | -------------------------------------------------------------------------------- /lecture-4/zomback/test/jest-e2e.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleFileExtensions": ["js", "json", "ts"], 3 | "rootDir": ".", 4 | "testEnvironment": "node", 5 | "testRegex": ".e2e-spec.ts$", 6 | "transform": { 7 | "^.+\\.(t|j)s$": "ts-jest" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /lecture-4/zomback/tsconfig.build.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "exclude": ["node_modules", "test", "dist", "**/*spec.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /lecture-4/zomback/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "declaration": true, 5 | "removeComments": true, 6 | "emitDecoratorMetadata": true, 7 | "experimentalDecorators": true, 8 | "allowSyntheticDefaultImports": true, 9 | "target": "es2017", 10 | "sourceMap": true, 11 | "outDir": "./dist", 12 | "baseUrl": "./", 13 | "incremental": true 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /lecture-4/zomclone/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /lecture-4/zomclone/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-4/zomclone/public/favicon.ico -------------------------------------------------------------------------------- /lecture-4/zomclone/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-4/zomclone/public/logo192.png -------------------------------------------------------------------------------- /lecture-4/zomclone/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-4/zomclone/public/logo512.png -------------------------------------------------------------------------------- /lecture-4/zomclone/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /lecture-4/zomclone/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /lecture-4/zomclone/src/App.test.js: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react'; 2 | import App from './App'; 3 | 4 | test('renders learn react link', () => { 5 | render(); 6 | const linkElement = screen.getByText(/learn react/i); 7 | expect(linkElement).toBeInTheDocument(); 8 | }); 9 | -------------------------------------------------------------------------------- /lecture-4/zomclone/src/Routes.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Switch, Route } from "react-router-dom"; 3 | import AuthGaurd from "./components/AuthGaurd"; 4 | import MainLayout from "./layouts/MainLayout"; 5 | import Home from "./pages/Home"; 6 | import Login from "./pages/Login"; 7 | 8 | export default function Routes() { 9 | return ( 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | ); 23 | } 24 | -------------------------------------------------------------------------------- /lecture-4/zomclone/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | } 9 | 10 | code { 11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 12 | monospace; 13 | } 14 | -------------------------------------------------------------------------------- /lecture-4/zomclone/src/index.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ReactDOM from "react-dom"; 3 | import "./index.css"; 4 | import { App } from "./App"; 5 | import reportWebVitals from "./reportWebVitals"; 6 | import { BrowserRouter as Router } from "react-router-dom"; 7 | 8 | ReactDOM.render( 9 | 10 | 11 | 12 | 13 | , 14 | document.getElementById("root") 15 | ); 16 | 17 | // If you want to start measuring performance in your app, pass a function 18 | // to log results (for example: reportWebVitals(console.log)) 19 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals 20 | reportWebVitals(); 21 | -------------------------------------------------------------------------------- /lecture-4/zomclone/src/layouts/MainLayout.js: -------------------------------------------------------------------------------- 1 | import { Box } from "@material-ui/core"; 2 | import BottomNav from "../components/BotomNav"; 3 | 4 | export default function MainLayout({ children }) { 5 | return ( 6 |
13 | {children} 14 | 15 |
16 | ); 17 | } 18 | -------------------------------------------------------------------------------- /lecture-4/zomclone/src/reportWebVitals.js: -------------------------------------------------------------------------------- 1 | const reportWebVitals = onPerfEntry => { 2 | if (onPerfEntry && onPerfEntry instanceof Function) { 3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 4 | getCLS(onPerfEntry); 5 | getFID(onPerfEntry); 6 | getFCP(onPerfEntry); 7 | getLCP(onPerfEntry); 8 | getTTFB(onPerfEntry); 9 | }); 10 | } 11 | }; 12 | 13 | export default reportWebVitals; 14 | -------------------------------------------------------------------------------- /lecture-4/zomclone/src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | -------------------------------------------------------------------------------- /lecture-4/zomclone/src/utils/axios.js: -------------------------------------------------------------------------------- 1 | import axios from 'axios'; 2 | 3 | let instance = axios.create(); 4 | 5 | export default instance; -------------------------------------------------------------------------------- /lecture-4/zomclone/src/utils/firebase.js: -------------------------------------------------------------------------------- 1 | import firebase from "firebase"; 2 | 3 | var firebaseConfig = { 4 | apiKey: "AIzaSyCZTPSMMX5D1BfovHwK8MqPqoo8FrG5F4o", 5 | authDomain: "zomato-f797b.firebaseapp.com", 6 | projectId: "zomato-f797b", 7 | storageBucket: "zomato-f797b.appspot.com", 8 | messagingSenderId: "168162061422", 9 | appId: "1:168162061422:web:05bcd08a183160c3618a7f", 10 | }; 11 | 12 | firebase.initializeApp(firebaseConfig); 13 | 14 | export default firebase; 15 | -------------------------------------------------------------------------------- /lecture-4/zomexpress/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /lecture-4/zomexpress/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "zomexpress", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "node index.js", 8 | "test": "echo \"Error: no test specified\" && exit 1" 9 | }, 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "cors": "^2.8.5", 14 | "express": "^4.17.1", 15 | "express-bearer-token": "^2.4.0", 16 | "firebase-admin": "^9.9.0" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /lecture-5/Jun 11 20h37.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/Jun 11 20h37.svgz -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/alexa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/alexa.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fillzomatodb", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "start" : "node index.js", 8 | "test": "echo \"Error: no test specified\" && exit 1" 9 | }, 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "axios": "^0.21.1" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos.zip -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/0105fbfc-6f53-4816-a9ee-1669eeaccd41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/0105fbfc-6f53-4816-a9ee-1669eeaccd41.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/01229784-2204-4098-a18f-a09a5caf4b1e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/01229784-2204-4098-a18f-a09a5caf4b1e.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/01b25be8-ad45-48cd-a3cc-cb51bef483e3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/01b25be8-ad45-48cd-a3cc-cb51bef483e3.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/069aa9e2-5d76-466b-8eb9-2ef27871a66c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/069aa9e2-5d76-466b-8eb9-2ef27871a66c.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/06a7a9f8-ad82-48b7-9394-b8f598ee1f59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/06a7a9f8-ad82-48b7-9394-b8f598ee1f59.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/07f411d1-4bea-4413-93d8-9d5ae8682329.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/07f411d1-4bea-4413-93d8-9d5ae8682329.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/08ae1fa0-da07-4f43-b84f-7d60f79120da.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/08ae1fa0-da07-4f43-b84f-7d60f79120da.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/08f56592-9048-4f46-8ce8-21028456cdf8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/08f56592-9048-4f46-8ce8-21028456cdf8.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/0906954f-0cda-4d17-bbad-7f4f9f13c10d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/0906954f-0cda-4d17-bbad-7f4f9f13c10d.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/0e3b3aef-7e91-407a-8c94-f68f617d7832.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/0e3b3aef-7e91-407a-8c94-f68f617d7832.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/0e91d542-f60b-4a82-9cf5-33c885a81f52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/0e91d542-f60b-4a82-9cf5-33c885a81f52.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/11383638-02ca-4882-9309-16d02da6321e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/11383638-02ca-4882-9309-16d02da6321e.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/136d08e5-1137-438e-bb98-5892a92eed5f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/136d08e5-1137-438e-bb98-5892a92eed5f.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/148d2299-a487-45da-920a-4228d32542ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/148d2299-a487-45da-920a-4228d32542ee.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/152608ea-5371-46de-adc4-d450c7eac4f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/152608ea-5371-46de-adc4-d450c7eac4f3.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/1665719a-d2fb-4435-8334-0de0f34b9ed3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/1665719a-d2fb-4435-8334-0de0f34b9ed3.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/1722c809-386d-4295-8480-60707427b26a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/1722c809-386d-4295-8480-60707427b26a.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/177d4a15-07ed-407d-a3e7-0f9bf7ee02ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/177d4a15-07ed-407d-a3e7-0f9bf7ee02ae.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/194bcc34-cd0c-4c90-aa4e-fb4714a01309.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/194bcc34-cd0c-4c90-aa4e-fb4714a01309.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/196f5137-1510-45cd-878c-3841aad75cb7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/196f5137-1510-45cd-878c-3841aad75cb7.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/1abe3ff2-8a1f-4292-b69a-ece88f0fd60f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/1abe3ff2-8a1f-4292-b69a-ece88f0fd60f.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/1b766b54-0a88-4a4d-bb27-04354362d366.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/1b766b54-0a88-4a4d-bb27-04354362d366.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/1c1d64ad-cf62-4aea-bf30-a50d24d0e04f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/1c1d64ad-cf62-4aea-bf30-a50d24d0e04f.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/1c565a74-5b85-49e0-9a25-60ddeaa0849e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/1c565a74-5b85-49e0-9a25-60ddeaa0849e.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/1c90dea0-edbd-448f-b086-75e2ef1595dc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/1c90dea0-edbd-448f-b086-75e2ef1595dc.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/1d5be278-3753-4b80-b19c-d51453b00551.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/1d5be278-3753-4b80-b19c-d51453b00551.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/1eb5e0cc-019b-41ba-982c-a001c281d9cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/1eb5e0cc-019b-41ba-982c-a001c281d9cf.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/1f873948-8e94-4d06-9e21-9aadb5f8baa9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/1f873948-8e94-4d06-9e21-9aadb5f8baa9.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/21393c7f-d204-4155-9706-56f8d0398740.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/21393c7f-d204-4155-9706-56f8d0398740.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/21ad8d59-8371-42a2-ad64-c36520283df2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/21ad8d59-8371-42a2-ad64-c36520283df2.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/21e5332c-142e-4f51-81d2-d546e7110fa0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/21e5332c-142e-4f51-81d2-d546e7110fa0.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/21f12cb0-0e13-4286-94ce-d721ab2781b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/21f12cb0-0e13-4286-94ce-d721ab2781b1.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/2243a54f-e96b-417a-85f4-34571a828692.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/2243a54f-e96b-417a-85f4-34571a828692.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/22de788a-5731-4463-ae7b-4b06e5de577c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/22de788a-5731-4463-ae7b-4b06e5de577c.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/231f0769-ece9-4921-8548-234e95a844ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/231f0769-ece9-4921-8548-234e95a844ca.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/2501ffcf-4bc2-452b-b9f7-1fd16dc98f0f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/2501ffcf-4bc2-452b-b9f7-1fd16dc98f0f.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/2758f16e-b638-44fc-b222-9de097ff8c55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/2758f16e-b638-44fc-b222-9de097ff8c55.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/276204ec-6edb-473f-a9d9-cc4181970cd6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/276204ec-6edb-473f-a9d9-cc4181970cd6.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/27e55fa5-aaf3-44d6-bc44-8dfc85780a5e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/27e55fa5-aaf3-44d6-bc44-8dfc85780a5e.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/289be738-c44f-4cdf-bdf0-e1c9d85591e8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/289be738-c44f-4cdf-bdf0-e1c9d85591e8.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/2b49a1b4-cf0b-437a-af3d-0252937039d7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/2b49a1b4-cf0b-437a-af3d-0252937039d7.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/2c3d1bdf-59e7-4756-a62e-603e8830820c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/2c3d1bdf-59e7-4756-a62e-603e8830820c.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/2cb21938-ef1d-47fa-b478-70044056dc67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/2cb21938-ef1d-47fa-b478-70044056dc67.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/2cc03f6d-02be-4f45-b607-8308e3a76f24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/2cc03f6d-02be-4f45-b607-8308e3a76f24.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/2ea90077-9e80-4420-90e6-088de414a9b4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/2ea90077-9e80-4420-90e6-088de414a9b4.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/2eec38d0-7e46-4ef6-907c-ea74660d841b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/2eec38d0-7e46-4ef6-907c-ea74660d841b.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/301db59a-0286-4c51-b7f6-2ca5b6c9c767.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/301db59a-0286-4c51-b7f6-2ca5b6c9c767.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/32bf823f-1189-4f87-be98-c9d2395c8106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/32bf823f-1189-4f87-be98-c9d2395c8106.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/32dbe200-44d0-454d-bec4-04e10bb86551.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/32dbe200-44d0-454d-bec4-04e10bb86551.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/33b31566-9380-434a-816a-62e45f41eeb9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/33b31566-9380-434a-816a-62e45f41eeb9.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/33be44a7-8e7f-47dc-8b01-a1094266e9ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/33be44a7-8e7f-47dc-8b01-a1094266e9ba.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/3477180b-46de-49e3-9f06-d27003c10969.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/3477180b-46de-49e3-9f06-d27003c10969.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/34ea5e11-0b82-48dc-98c3-2c2101241e5d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/34ea5e11-0b82-48dc-98c3-2c2101241e5d.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/36b9e3e4-3a00-4611-86a6-dc9f2d6fb31d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/36b9e3e4-3a00-4611-86a6-dc9f2d6fb31d.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/3792cfe5-d1f0-454a-b302-8db59fbd86c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/3792cfe5-d1f0-454a-b302-8db59fbd86c2.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/38650828-0bd6-4181-8c87-2f20bcef0842.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/38650828-0bd6-4181-8c87-2f20bcef0842.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/3a15c01e-296f-4852-84f3-4213e975b6d7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/3a15c01e-296f-4852-84f3-4213e975b6d7.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/3a26d5ec-7a1f-4ef6-aacd-f594d19bd8f6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/3a26d5ec-7a1f-4ef6-aacd-f594d19bd8f6.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/3a6f3c45-f4e7-421b-816d-bd5dab737c02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/3a6f3c45-f4e7-421b-816d-bd5dab737c02.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/3a8c4f74-c8f5-4dd1-a456-6f762718be1c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/3a8c4f74-c8f5-4dd1-a456-6f762718be1c.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/3bed573a-8d7d-4269-be34-7bfb6ca7caf0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/3bed573a-8d7d-4269-be34-7bfb6ca7caf0.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/3cda8d63-57f4-465a-b500-c7fcd6b65d04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/3cda8d63-57f4-465a-b500-c7fcd6b65d04.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/3eb2f7c7-2f4d-4b91-b3a9-a9a38aec8250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/3eb2f7c7-2f4d-4b91-b3a9-a9a38aec8250.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/3f3526cd-9066-4f20-be1a-e1334eef7a01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/3f3526cd-9066-4f20-be1a-e1334eef7a01.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/3f67443f-0342-4d3e-ae65-62a61becf228.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/3f67443f-0342-4d3e-ae65-62a61becf228.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/4010b7df-c559-4182-b49f-b1cdb200914e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/4010b7df-c559-4182-b49f-b1cdb200914e.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/4094cc9e-d4b5-457b-9f54-634dc3761f52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/4094cc9e-d4b5-457b-9f54-634dc3761f52.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/419065b4-3f4f-4907-9607-1c939d01e064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/419065b4-3f4f-4907-9607-1c939d01e064.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/41db466a-c8ab-4bad-ab57-c80a7d0b208d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/41db466a-c8ab-4bad-ab57-c80a7d0b208d.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/44c7eae5-09d5-428a-a21c-c35ce0645982.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/44c7eae5-09d5-428a-a21c-c35ce0645982.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/45220caa-794a-460f-a10c-926e0185f3c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/45220caa-794a-460f-a10c-926e0185f3c4.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/46774efd-eb44-4a49-a404-364757a9f82c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/46774efd-eb44-4a49-a404-364757a9f82c.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/4741730c-8d97-469e-a572-3b3ade48cf6f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/4741730c-8d97-469e-a572-3b3ade48cf6f.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/47b3f200-5a4e-48fe-ad39-db5847d5339a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/47b3f200-5a4e-48fe-ad39-db5847d5339a.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/4987d68a-2908-4de7-ba3d-eecb688e313d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/4987d68a-2908-4de7-ba3d-eecb688e313d.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/4a10619a-4f62-4d85-9732-55d9719537df.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/4a10619a-4f62-4d85-9732-55d9719537df.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/4b033038-27ed-40c7-876a-1aa9e090f765.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/4b033038-27ed-40c7-876a-1aa9e090f765.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/4b746d87-303c-463e-b756-8b450993e330.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/4b746d87-303c-463e-b756-8b450993e330.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/4b826a44-7d5e-48c9-8213-65872ddf69cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/4b826a44-7d5e-48c9-8213-65872ddf69cf.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/4cceda59-ac5a-4eed-bd4e-56550fb7569f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/4cceda59-ac5a-4eed-bd4e-56550fb7569f.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/4ea2e5ae-f2a8-4432-9c50-08e4c1ad8b9d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/4ea2e5ae-f2a8-4432-9c50-08e4c1ad8b9d.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/4fbaa1ca-ce7b-42fe-b40a-c535e967b595.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/4fbaa1ca-ce7b-42fe-b40a-c535e967b595.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/500d3e9f-ec8a-4c77-a4a3-2fce1819cdb0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/500d3e9f-ec8a-4c77-a4a3-2fce1819cdb0.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/514a3183-61e5-4bf6-bb32-8646aa5b6276.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/514a3183-61e5-4bf6-bb32-8646aa5b6276.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/51a45ca2-18fe-43b3-baa0-6cc8f315f25a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/51a45ca2-18fe-43b3-baa0-6cc8f315f25a.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/535b0079-53e5-4e4c-9f87-c686eda50968.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/535b0079-53e5-4e4c-9f87-c686eda50968.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/546961a2-a4b7-45e8-9dbc-d4072fc64e8e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/546961a2-a4b7-45e8-9dbc-d4072fc64e8e.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/56417ffa-23bd-4943-a8af-4639628f251e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/56417ffa-23bd-4943-a8af-4639628f251e.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/57254024-54f1-41ea-b88d-3719ff6b6d6f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/57254024-54f1-41ea-b88d-3719ff6b6d6f.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/57968c4f-64a7-475f-8d11-de405c66b1b0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/57968c4f-64a7-475f-8d11-de405c66b1b0.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/57d5ebda-f992-4d6c-85ee-f07bbb470c5c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/57d5ebda-f992-4d6c-85ee-f07bbb470c5c.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/597eef31-9408-4d13-8ba3-77ae379d5cb8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/597eef31-9408-4d13-8ba3-77ae379d5cb8.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/5aba2595-4d29-4916-8a99-79a8ffe78894.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/5aba2595-4d29-4916-8a99-79a8ffe78894.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/5b9330dd-8179-410c-88f4-7e607575220c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/5b9330dd-8179-410c-88f4-7e607575220c.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/5ce5496c-d0cb-4f66-b4b6-8dcad2ec2d25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/5ce5496c-d0cb-4f66-b4b6-8dcad2ec2d25.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/5d111240-fd5b-4c23-8079-59960c615258.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/5d111240-fd5b-4c23-8079-59960c615258.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/5deca00f-f909-4f19-9181-cb5a7cce0f4c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/5deca00f-f909-4f19-9181-cb5a7cce0f4c.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/5e1c6b75-e067-469f-84cf-1d4a0a5d4248.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/5e1c6b75-e067-469f-84cf-1d4a0a5d4248.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/5f09bcc1-b1ab-49c4-a0e2-9db10ae7219c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/5f09bcc1-b1ab-49c4-a0e2-9db10ae7219c.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/5f26938b-0be0-4de5-a17a-80895f22dfa8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/5f26938b-0be0-4de5-a17a-80895f22dfa8.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/5fd13b38-0935-40f2-8b50-54926e1bcce8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/5fd13b38-0935-40f2-8b50-54926e1bcce8.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/6003c45a-0542-4886-8ba6-e203da0025af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/6003c45a-0542-4886-8ba6-e203da0025af.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/600e681f-d497-4bc3-b879-3b13cee2ca27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/600e681f-d497-4bc3-b879-3b13cee2ca27.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/6089ea35-2edd-4111-b8fc-d693827cf3b5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/6089ea35-2edd-4111-b8fc-d693827cf3b5.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/609ccd58-744d-4e16-8eb7-7e04fa695bde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/609ccd58-744d-4e16-8eb7-7e04fa695bde.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/6175a1f7-ac35-4dd2-867c-09a723df16d0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/6175a1f7-ac35-4dd2-867c-09a723df16d0.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/61769e0f-a4f2-49f5-8d7f-bd054d1b9a76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/61769e0f-a4f2-49f5-8d7f-bd054d1b9a76.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/633c7df7-4386-4106-a25e-d8317c5576c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/633c7df7-4386-4106-a25e-d8317c5576c3.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/63ad0c66-ded4-480b-9100-915aa2e8cd7d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/63ad0c66-ded4-480b-9100-915aa2e8cd7d.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/63eca528-73d6-4f69-b22f-39f7e178c7a0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/63eca528-73d6-4f69-b22f-39f7e178c7a0.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/64b39e5d-65d2-4677-bc25-c2bca24293b7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/64b39e5d-65d2-4677-bc25-c2bca24293b7.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/65da33c5-d57f-47f3-bf09-6b8887579e4f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/65da33c5-d57f-47f3-bf09-6b8887579e4f.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/66abf476-003a-421a-af0c-af375a17de9d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/66abf476-003a-421a-af0c-af375a17de9d.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/66bc56cb-75f7-481a-9060-f2115f66aea4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/66bc56cb-75f7-481a-9060-f2115f66aea4.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/672d3151-1164-4c93-9ece-2c6c409cf2e5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/672d3151-1164-4c93-9ece-2c6c409cf2e5.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/6755c6e8-005d-418c-9fd5-73f73e443cbf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/6755c6e8-005d-418c-9fd5-73f73e443cbf.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/683cf88f-3fd5-432a-af6e-8c816254ba48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/683cf88f-3fd5-432a-af6e-8c816254ba48.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/696fdc78-f599-4854-a0fa-25591eb9d2d8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/696fdc78-f599-4854-a0fa-25591eb9d2d8.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/6c312764-816c-4604-8beb-c6963e67ba74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/6c312764-816c-4604-8beb-c6963e67ba74.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/6cc23018-fd70-4d65-9413-26d4bb4a4abe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/6cc23018-fd70-4d65-9413-26d4bb4a4abe.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/6e49cfd5-058f-450e-a277-5077fe00f769.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/6e49cfd5-058f-450e-a277-5077fe00f769.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/6ec984dc-235f-49f9-a4be-5db34fe09156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/6ec984dc-235f-49f9-a4be-5db34fe09156.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/6ee3027b-c0c9-47c0-ac1c-77f94797356e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/6ee3027b-c0c9-47c0-ac1c-77f94797356e.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/700389f6-3b20-4f97-b0ee-404cb2318607.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/700389f6-3b20-4f97-b0ee-404cb2318607.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/7070ebf9-2980-48f1-a34b-cb22a8d67ad0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/7070ebf9-2980-48f1-a34b-cb22a8d67ad0.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/72126a86-eb5a-4600-bb37-1855bb3600ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/72126a86-eb5a-4600-bb37-1855bb3600ac.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/74005661-55f1-4520-a4fd-b6697219a625.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/74005661-55f1-4520-a4fd-b6697219a625.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/7578ff75-9aef-4719-8e87-3afdc6d2d415.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/7578ff75-9aef-4719-8e87-3afdc6d2d415.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/759df0bf-4a49-400e-9d4a-2ac92223feb8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/759df0bf-4a49-400e-9d4a-2ac92223feb8.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/76ac4c40-2c2f-4a17-89cd-9524fc83519a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/76ac4c40-2c2f-4a17-89cd-9524fc83519a.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/76b623c1-f555-46e6-8c83-82d6c1424540.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/76b623c1-f555-46e6-8c83-82d6c1424540.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/7874efd3-8828-484b-9597-4d37b01e08e1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/7874efd3-8828-484b-9597-4d37b01e08e1.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/7977427d-4064-4311-922a-81dd9e506d13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/7977427d-4064-4311-922a-81dd9e506d13.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/7b30447b-4c8e-4561-823d-0544e7c4b4b7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/7b30447b-4c8e-4561-823d-0544e7c4b4b7.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/7c623eba-e887-407e-8fb4-3e4823a3e099.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/7c623eba-e887-407e-8fb4-3e4823a3e099.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/7ccdb6b8-eeec-4c75-b52f-5f98dda954ce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/7ccdb6b8-eeec-4c75-b52f-5f98dda954ce.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/7f57bbdb-139e-45cc-b744-56bf0dde6fcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/7f57bbdb-139e-45cc-b744-56bf0dde6fcd.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/802b7bae-6914-49c0-aed0-021338ea4fd6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/802b7bae-6914-49c0-aed0-021338ea4fd6.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/802d7d77-d088-4581-8289-88a25cf06f29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/802d7d77-d088-4581-8289-88a25cf06f29.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/812d1050-f447-45cd-bb9f-0fd1a10c3475.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/812d1050-f447-45cd-bb9f-0fd1a10c3475.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/8266eff8-9a32-411c-b2a9-cd47cbce9acf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/8266eff8-9a32-411c-b2a9-cd47cbce9acf.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/839c389a-00ea-48c3-b858-ff214fb6c729.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/839c389a-00ea-48c3-b858-ff214fb6c729.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/85e6da4b-16a3-4ded-bb78-8247546bf4ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/85e6da4b-16a3-4ded-bb78-8247546bf4ae.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/8654736d-dde5-408d-8644-2710e535c149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/8654736d-dde5-408d-8644-2710e535c149.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/8682c4ad-e11a-4742-90cb-bfa3f3c76151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/8682c4ad-e11a-4742-90cb-bfa3f3c76151.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/884d7ce9-4459-4744-99c8-6303c2ce04ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/884d7ce9-4459-4744-99c8-6303c2ce04ec.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/8b73d8cc-a273-461f-aef1-e230c987abf7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/8b73d8cc-a273-461f-aef1-e230c987abf7.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/8c92bfe4-66ac-4396-af80-95e081280fee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/8c92bfe4-66ac-4396-af80-95e081280fee.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/8d38463e-a7d0-43bb-a705-a789689a7c51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/8d38463e-a7d0-43bb-a705-a789689a7c51.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/8d4b1f5c-f667-4623-8ecf-ee6a4c2fe3b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/8d4b1f5c-f667-4623-8ecf-ee6a4c2fe3b1.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/8d6883b6-0417-40db-ac8a-9178c2efa2a5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/8d6883b6-0417-40db-ac8a-9178c2efa2a5.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/8f68790d-e1ba-45c6-94bf-d8333efac870.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/8f68790d-e1ba-45c6-94bf-d8333efac870.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/91ba1ba6-bd23-428b-9f68-593201df2662.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/91ba1ba6-bd23-428b-9f68-593201df2662.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/941bbff4-ad5f-41c1-92a5-996e5284ed46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/941bbff4-ad5f-41c1-92a5-996e5284ed46.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/975e2930-4281-4222-bffb-ecff3ad1f76c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/975e2930-4281-4222-bffb-ecff3ad1f76c.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/9a2cce5b-a344-4fcd-a7ef-eada6d94551b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/9a2cce5b-a344-4fcd-a7ef-eada6d94551b.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/9a312976-7580-4de2-a9f4-ad4c5e19cf78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/9a312976-7580-4de2-a9f4-ad4c5e19cf78.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/9a3a290b-afa3-40b0-8813-cd80301122e9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/9a3a290b-afa3-40b0-8813-cd80301122e9.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/9a48d0c0-46d4-4633-aff2-f1acbc0ea1f0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/9a48d0c0-46d4-4633-aff2-f1acbc0ea1f0.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/9b6f5901-135e-40a3-9aeb-01097858a97e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/9b6f5901-135e-40a3-9aeb-01097858a97e.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/9c537dc6-404c-473a-9b99-1b1dd0f8a996.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/9c537dc6-404c-473a-9b99-1b1dd0f8a996.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/9c6611f3-1543-4d50-bb28-cf153ee042ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/9c6611f3-1543-4d50-bb28-cf153ee042ba.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/9cbeaad9-89b1-467f-81bc-f69fde70055d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/9cbeaad9-89b1-467f-81bc-f69fde70055d.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/9ccca864-4b72-4007-99d4-7b1f47f0790f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/9ccca864-4b72-4007-99d4-7b1f47f0790f.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/9d329e6c-58f9-4b22-abc1-f3e70d371b2e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/9d329e6c-58f9-4b22-abc1-f3e70d371b2e.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/9d82f6b9-2374-4414-b26b-d9795693b0cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/9d82f6b9-2374-4414-b26b-d9795693b0cd.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/9e3292b3-da9a-4952-a81a-1cc3891eaabe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/9e3292b3-da9a-4952-a81a-1cc3891eaabe.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/9e7b74d0-c74a-4c5d-8e18-bfaa9ce20c8b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/9e7b74d0-c74a-4c5d-8e18-bfaa9ce20c8b.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/9ece66bc-9bc3-468c-ac66-105b84aa9df4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/9ece66bc-9bc3-468c-ac66-105b84aa9df4.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/a06a9ce8-1a35-456f-a38b-1a21f1ca0687.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/a06a9ce8-1a35-456f-a38b-1a21f1ca0687.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/a18671dc-07f0-47f3-ad24-6d375d1a36a2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/a18671dc-07f0-47f3-ad24-6d375d1a36a2.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/a1d60c92-e374-4716-a075-f9f65a018c72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/a1d60c92-e374-4716-a075-f9f65a018c72.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/a28116a6-5b41-4689-b2ef-758efa7915c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/a28116a6-5b41-4689-b2ef-758efa7915c4.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/a29071dc-c932-4bb3-9782-8ef912d83f25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/a29071dc-c932-4bb3-9782-8ef912d83f25.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/a31d6434-aa44-40b1-be0b-dbeb99eb7072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/a31d6434-aa44-40b1-be0b-dbeb99eb7072.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/a3e54134-4183-4de0-8a86-ce331e326105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/a3e54134-4183-4de0-8a86-ce331e326105.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/a461c79f-6c50-498e-8455-74e6b560d76e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/a461c79f-6c50-498e-8455-74e6b560d76e.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/a4d69c01-4640-45ea-a79a-521bb64cb4b5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/a4d69c01-4640-45ea-a79a-521bb64cb4b5.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/a5f8306a-a1e2-4e59-98d0-28578f32c1c0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/a5f8306a-a1e2-4e59-98d0-28578f32c1c0.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/a5fa355b-6794-47d1-b86e-f1270c19808f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/a5fa355b-6794-47d1-b86e-f1270c19808f.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/a6da489f-1cdd-42b2-8a1a-ad0f7f20bc91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/a6da489f-1cdd-42b2-8a1a-ad0f7f20bc91.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/a740efcf-f8ea-43b4-8f60-a95ddd2b9779.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/a740efcf-f8ea-43b4-8f60-a95ddd2b9779.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/a84c2ff5-3dcf-4674-bacf-a65a2323a5cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/a84c2ff5-3dcf-4674-bacf-a65a2323a5cd.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/a8e1f39d-3f93-46d3-9745-f1e5466a32d6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/a8e1f39d-3f93-46d3-9745-f1e5466a32d6.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/aa487220-3f12-4359-b7a3-abcb559e5d9a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/aa487220-3f12-4359-b7a3-abcb559e5d9a.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/abac7016-b4ae-4612-9a20-fb1ffb6c152f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/abac7016-b4ae-4612-9a20-fb1ffb6c152f.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/ad3c2c77-f995-4878-bf0f-81d6921758a3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/ad3c2c77-f995-4878-bf0f-81d6921758a3.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/ae21d20b-0dd1-428d-bc7d-45af560dfdc8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/ae21d20b-0dd1-428d-bc7d-45af560dfdc8.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/af07e2c2-958b-4e51-ada8-eae3ee14ba87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/af07e2c2-958b-4e51-ada8-eae3ee14ba87.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/af41a4fe-959e-48d0-b185-9af040cfc06c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/af41a4fe-959e-48d0-b185-9af040cfc06c.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/af452e4e-cf4e-4201-823d-05e7660e9c50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/af452e4e-cf4e-4201-823d-05e7660e9c50.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/b04b7102-dea7-4371-8765-fac4d2384583.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/b04b7102-dea7-4371-8765-fac4d2384583.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/b139ff50-af60-4b4d-8088-806929327e92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/b139ff50-af60-4b4d-8088-806929327e92.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/b14fdca4-896b-45f7-87e5-a70270e7cf98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/b14fdca4-896b-45f7-87e5-a70270e7cf98.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/b2dc18dd-888b-437f-9c66-e9060fa447f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/b2dc18dd-888b-437f-9c66-e9060fa447f1.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/b39f79e2-1e9b-4e46-a786-f9fae6fa7d45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/b39f79e2-1e9b-4e46-a786-f9fae6fa7d45.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/b3dd2211-4ec8-4b76-9397-6f6c4d0d9854.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/b3dd2211-4ec8-4b76-9397-6f6c4d0d9854.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/b86afbb6-de91-4a86-8494-10211cf8efd7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/b86afbb6-de91-4a86-8494-10211cf8efd7.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/b8f4e9c2-f5cc-4bb0-b75d-02efedae1d5f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/b8f4e9c2-f5cc-4bb0-b75d-02efedae1d5f.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/b9232ace-790b-4f0d-ae1d-e3b558be8c00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/b9232ace-790b-4f0d-ae1d-e3b558be8c00.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/b952a33c-3588-4972-a983-b56590a27584.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/b952a33c-3588-4972-a983-b56590a27584.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/b9efca0b-f5af-401f-81c1-8c69f0898312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/b9efca0b-f5af-401f-81c1-8c69f0898312.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/b9f7b8fb-0da0-44bc-b1a3-53b6216f8ff3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/b9f7b8fb-0da0-44bc-b1a3-53b6216f8ff3.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/ba12773a-6cd1-450c-a1eb-bc963c75ba4e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/ba12773a-6cd1-450c-a1eb-bc963c75ba4e.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/bb25872b-effb-4fc8-8253-9f9a24017334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/bb25872b-effb-4fc8-8253-9f9a24017334.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/bd03e986-14d1-4c2d-a281-b58185454484.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/bd03e986-14d1-4c2d-a281-b58185454484.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/bd42e84a-861c-474b-b929-38b968038c4f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/bd42e84a-861c-474b-b929-38b968038c4f.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/bea4a539-c180-42ab-af91-7ebd192886f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/bea4a539-c180-42ab-af91-7ebd192886f4.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/c07fc431-7362-4707-b08d-93854c871dbb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/c07fc431-7362-4707-b08d-93854c871dbb.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/c14979ff-bf0b-436d-b165-553b2bd18267.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/c14979ff-bf0b-436d-b165-553b2bd18267.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/c228ddae-4998-4de1-a382-8574f447d58e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/c228ddae-4998-4de1-a382-8574f447d58e.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/c2adf8a3-0e45-41cd-a6c1-17f6796f1dfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/c2adf8a3-0e45-41cd-a6c1-17f6796f1dfa.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/c2fb0982-db50-4618-ba15-e3541f951137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/c2fb0982-db50-4618-ba15-e3541f951137.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/c33fc86f-d074-411a-ba65-6bac4f3f30bc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/c33fc86f-d074-411a-ba65-6bac4f3f30bc.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/c444c8d5-a672-45ba-8bad-4929f1e7c996.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/c444c8d5-a672-45ba-8bad-4929f1e7c996.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/c701cd3b-527f-46dd-8176-24505f72481a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/c701cd3b-527f-46dd-8176-24505f72481a.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/c7cbb5a8-46ac-4fc0-8fb8-543472e1c04a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/c7cbb5a8-46ac-4fc0-8fb8-543472e1c04a.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/c98e1821-7c07-408c-b3de-3f50d9e1994c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/c98e1821-7c07-408c-b3de-3f50d9e1994c.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/cd0db5df-f80e-45fb-bd87-07b283581b03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/cd0db5df-f80e-45fb-bd87-07b283581b03.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/cdb4cfba-dfc4-4e1c-a167-792b9660a955.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/cdb4cfba-dfc4-4e1c-a167-792b9660a955.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/cdb8edf9-4f4f-4a38-a5c0-3dc7e89f25ce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/cdb8edf9-4f4f-4a38-a5c0-3dc7e89f25ce.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/ce6bd163-8103-43cf-9d87-7c16f9fdf5d1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/ce6bd163-8103-43cf-9d87-7c16f9fdf5d1.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/ceadd966-b94e-48c6-8985-db957e8a7c74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/ceadd966-b94e-48c6-8985-db957e8a7c74.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/d051cce8-f248-46fb-9f47-1efee7e58d9a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/d051cce8-f248-46fb-9f47-1efee7e58d9a.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/d06b9e12-a28b-47dc-848d-6e9d85a97c2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/d06b9e12-a28b-47dc-848d-6e9d85a97c2d.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/d1f1f8db-85ac-4a98-9c8b-460233ba75dc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/d1f1f8db-85ac-4a98-9c8b-460233ba75dc.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/d25aea45-cde3-45c8-98c9-a1a5631b79cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/d25aea45-cde3-45c8-98c9-a1a5631b79cf.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/d3979240-9721-4def-aa52-fa589ddeccc4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/d3979240-9721-4def-aa52-fa589ddeccc4.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/d43a615d-11b9-49d0-8ae3-53c1586bf2a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/d43a615d-11b9-49d0-8ae3-53c1586bf2a1.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/d531a614-cc26-4743-a90b-7aade6164800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/d531a614-cc26-4743-a90b-7aade6164800.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/d57c4e1e-c082-4bba-81fa-fe81f7e0019a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/d57c4e1e-c082-4bba-81fa-fe81f7e0019a.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/d63bdca8-d5ef-4fb4-a145-4c4ea80e08ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/d63bdca8-d5ef-4fb4-a145-4c4ea80e08ae.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/d68b479b-3d35-4556-ba20-feb9593f8d52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/d68b479b-3d35-4556-ba20-feb9593f8d52.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/d6b91f14-feae-424f-b41e-2b44f660ce94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/d6b91f14-feae-424f-b41e-2b44f660ce94.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/d7a2d3c1-bbf6-4a9b-8efb-1aab43226c75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/d7a2d3c1-bbf6-4a9b-8efb-1aab43226c75.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/d8171570-7f0b-4a91-9af2-4ec90929e6aa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/d8171570-7f0b-4a91-9af2-4ec90929e6aa.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/d951139d-9708-4052-9141-ea146c1cef3e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/d951139d-9708-4052-9141-ea146c1cef3e.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/da835254-bf3c-4483-9dcd-b84acc29e975.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/da835254-bf3c-4483-9dcd-b84acc29e975.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/dbd3b671-0164-4734-98d0-cc5ef6a7d888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/dbd3b671-0164-4734-98d0-cc5ef6a7d888.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/dd8d1a8d-8468-4a69-9038-0f4d6b0766fe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/dd8d1a8d-8468-4a69-9038-0f4d6b0766fe.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/ddc8d26c-9d54-4daf-86c9-822365adb8f8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/ddc8d26c-9d54-4daf-86c9-822365adb8f8.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/ddf979b8-d7bf-4acd-a028-f0f422c1b601.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/ddf979b8-d7bf-4acd-a028-f0f422c1b601.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/de7acf2b-97af-4108-b4cd-53517ccff002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/de7acf2b-97af-4108-b4cd-53517ccff002.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/e10a559a-ba96-436a-a97d-397c19e8efa7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/e10a559a-ba96-436a-a97d-397c19e8efa7.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/e32cb7e8-2ca0-4279-9d4b-157085c24d1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/e32cb7e8-2ca0-4279-9d4b-157085c24d1a.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/e3f3a0f3-2725-4464-9986-45b694de11f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/e3f3a0f3-2725-4464-9986-45b694de11f5.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/e4fe852a-5ff2-4959-b3cf-f3f822a08e59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/e4fe852a-5ff2-4959-b3cf-f3f822a08e59.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/e6a82319-eb4a-4bf4-9a94-a8357a91272a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/e6a82319-eb4a-4bf4-9a94-a8357a91272a.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/e799c781-2245-4265-a59d-e61b485940ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/e799c781-2245-4265-a59d-e61b485940ae.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/ea869404-fa62-46ec-b01d-811fc8870d1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/ea869404-fa62-46ec-b01d-811fc8870d1b.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/eb4906eb-0bfc-40e2-9cff-a139c61df122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/eb4906eb-0bfc-40e2-9cff-a139c61df122.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/eb8240de-35f7-4c15-8d59-05795042f63c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/eb8240de-35f7-4c15-8d59-05795042f63c.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/ed60e9f8-ed9b-4cad-84b1-4d01d6d2acac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/ed60e9f8-ed9b-4cad-84b1-4d01d6d2acac.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/ee2ec4d9-eec3-4438-9b61-ba2586a2674d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/ee2ec4d9-eec3-4438-9b61-ba2586a2674d.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/f25a936f-b9db-4d4a-a9b1-d9a7dd2a0fe4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/f25a936f-b9db-4d4a-a9b1-d9a7dd2a0fe4.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/f4105463-68fd-4fda-a9d7-adc66e8e49e3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/f4105463-68fd-4fda-a9d7-adc66e8e49e3.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/f429d61d-ef59-4d89-9841-764a872eeb47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/f429d61d-ef59-4d89-9841-764a872eeb47.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/f47879b0-bc46-4154-8026-98882f97b758.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/f47879b0-bc46-4154-8026-98882f97b758.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/f5f89baf-4b5f-462e-a4b1-f680bb07de70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/f5f89baf-4b5f-462e-a4b1-f680bb07de70.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/f6a0732a-abac-4e26-9908-78e9ac2630f6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/f6a0732a-abac-4e26-9908-78e9ac2630f6.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/fa222dfc-1a1b-4de0-ad99-b3579684b58b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/fa222dfc-1a1b-4de0-ad99-b3579684b58b.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/fa24c67e-a200-407c-a377-fd03edf146c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/fa24c67e-a200-407c-a377-fd03edf146c3.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/fa467eaf-c5f5-4a5a-8d51-07c24870737a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/fa467eaf-c5f5-4a5a-8d51-07c24870737a.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/fa939f2b-6791-4589-9cfe-f888fdb4e473.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/fa939f2b-6791-4589-9cfe-f888fdb4e473.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/fb9b9f9b-587a-4010-b9cf-05b8c490cdeb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/fb9b9f9b-587a-4010-b9cf-05b8c490cdeb.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/fbfc1784-44dc-4f35-979d-d0a818a2b522.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/fbfc1784-44dc-4f35-979d-d0a818a2b522.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/fcdb0ff1-fc24-4579-a3e4-2fdadd6d4b0f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/fcdb0ff1-fc24-4579-a3e4-2fdadd6d4b0f.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/fd3ff76e-1ab3-49d6-b1c1-6938952e1c65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/fd3ff76e-1ab3-49d6-b1c1-6938952e1c65.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/fd4079e2-e753-4f1c-b571-b14f8ad0c2d6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/fd4079e2-e753-4f1c-b571-b14f8ad0c2d6.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/fecb6c49-bd0d-45ba-9d2a-bc5839ead45b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/fecb6c49-bd0d-45ba-9d2a-bc5839ead45b.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/ff9cfc12-6a9d-4c0c-805b-355b5d976a24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/ff9cfc12-6a9d-4c0c-805b-355b5d976a24.png -------------------------------------------------------------------------------- /lecture-5/fillzomatodb/photos/ffc9e57b-1ad6-4d8e-9bd8-b3a9d51d6758.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/fillzomatodb/photos/ffc9e57b-1ad6-4d8e-9bd8-b3a9d51d6758.png -------------------------------------------------------------------------------- /lecture-5/zomatonest/.gitignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /dist 3 | /node_modules 4 | 5 | # Logs 6 | logs 7 | *.log 8 | npm-debug.log* 9 | yarn-debug.log* 10 | yarn-error.log* 11 | lerna-debug.log* 12 | 13 | # OS 14 | .DS_Store 15 | 16 | # Tests 17 | /coverage 18 | /.nyc_output 19 | 20 | # IDEs and editors 21 | /.idea 22 | .project 23 | .classpath 24 | .c9/ 25 | *.launch 26 | .settings/ 27 | *.sublime-workspace 28 | 29 | # IDE - VSCode 30 | .vscode/* 31 | !.vscode/settings.json 32 | !.vscode/tasks.json 33 | !.vscode/launch.json 34 | !.vscode/extensions.json -------------------------------------------------------------------------------- /lecture-5/zomatonest/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "trailingComma": "all" 4 | } -------------------------------------------------------------------------------- /lecture-5/zomatonest/nest-cli.json: -------------------------------------------------------------------------------- 1 | { 2 | "collection": "@nestjs/schematics", 3 | "sourceRoot": "src" 4 | } 5 | -------------------------------------------------------------------------------- /lecture-5/zomatonest/okay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/zomatonest/okay.png -------------------------------------------------------------------------------- /lecture-5/zomatonest/src/app.controller.ts: -------------------------------------------------------------------------------- 1 | import { Controller, Get } from '@nestjs/common'; 2 | import { AppService } from './app.service'; 3 | 4 | @Controller() 5 | export class AppController { 6 | constructor(private readonly appService: AppService) {} 7 | 8 | @Get() 9 | getHello(): string { 10 | return this.appService.getHello(); 11 | } 12 | } 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /lecture-5/zomatonest/src/app.service.ts: -------------------------------------------------------------------------------- 1 | import { Injectable } from '@nestjs/common'; 2 | 3 | @Injectable() 4 | export class AppService { 5 | getHello(): string { 6 | return 'Hello World!'; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /lecture-5/zomatonest/src/images/alexa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-5/zomatonest/src/images/alexa.png -------------------------------------------------------------------------------- /lecture-5/zomatonest/src/images/images.module.ts: -------------------------------------------------------------------------------- 1 | import { Module } from '@nestjs/common'; 2 | import { ImagesService } from './images.service'; 3 | import { ImagesController } from './images.controller'; 4 | import { MongooseModule } from '@nestjs/mongoose'; 5 | import { Image, ImageSchema } from './schemas/image.schema'; 6 | 7 | @Module({ 8 | imports: [ 9 | MongooseModule.forFeature([{ name: Image.name, schema: ImageSchema }]), 10 | ], 11 | controllers: [ImagesController], 12 | providers: [ImagesService], 13 | }) 14 | export class ImagesModule {} 15 | -------------------------------------------------------------------------------- /lecture-5/zomatonest/src/images/schemas/image.schema.ts: -------------------------------------------------------------------------------- 1 | import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose'; 2 | import { Document } from 'mongoose'; 3 | 4 | export type ImageDocument = Image & Document; 5 | 6 | @Schema() 7 | export class Image { 8 | @Prop() 9 | content: string; 10 | } 11 | 12 | export const ImageSchema = SchemaFactory.createForClass(Image); 13 | -------------------------------------------------------------------------------- /lecture-5/zomatonest/src/main.ts: -------------------------------------------------------------------------------- 1 | import { NestFactory } from '@nestjs/core'; 2 | import { AppModule } from './app.module'; 3 | import * as express from 'express'; 4 | 5 | async function bootstrap() { 6 | const app = await NestFactory.create(AppModule); 7 | app.enableCors(); 8 | app.use(express.json({ limit: '50mb' })); 9 | await app.listen(5000); 10 | } 11 | bootstrap(); 12 | -------------------------------------------------------------------------------- /lecture-5/zomatonest/src/order/order.module.ts: -------------------------------------------------------------------------------- 1 | import { Module } from '@nestjs/common'; 2 | import { OrderService } from './order.service'; 3 | import { OrderController } from './order.controller'; 4 | import { MongooseModule } from '@nestjs/mongoose'; 5 | import { Order, OrderSchema } from './schemas/order.schema'; 6 | 7 | @Module({ 8 | imports: [ 9 | MongooseModule.forFeature([{ name: Order.name, schema: OrderSchema}]), 10 | ], 11 | controllers: [OrderController], 12 | providers: [OrderService] 13 | }) 14 | export class OrderModule {} 15 | -------------------------------------------------------------------------------- /lecture-5/zomatonest/src/restaurant/restaurant.module.ts: -------------------------------------------------------------------------------- 1 | import { Module } from '@nestjs/common'; 2 | import { RestaurantService } from './restaurant.service'; 3 | import { RestaurantController } from './restaurant.controller'; 4 | import { MongooseModule } from '@nestjs/mongoose'; 5 | import { Restaurant, RestaurantSchema } from './schemas/restaurant.schema'; 6 | 7 | @Module({ 8 | imports: [ 9 | MongooseModule.forFeature([{ name: Restaurant.name, schema: RestaurantSchema}]), 10 | ], 11 | controllers: [RestaurantController], 12 | providers: [RestaurantService] 13 | }) 14 | export class RestaurantModule {} 15 | -------------------------------------------------------------------------------- /lecture-5/zomatonest/src/restaurant/schemas/restaurant.schema.ts: -------------------------------------------------------------------------------- 1 | import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose'; 2 | import { Document } from 'mongoose'; 3 | 4 | export type RestaurantDocument = Restaurant & Document; 5 | 6 | @Schema() 7 | export class Restaurant { 8 | @Prop() 9 | name: string; 10 | 11 | @Prop() 12 | address: string; 13 | 14 | @Prop() 15 | phoneNo: string; 16 | 17 | @Prop() 18 | rating: string; 19 | 20 | @Prop() 21 | menu: Array; 22 | 23 | @Prop() 24 | onlineOrder: string; 25 | 26 | @Prop() 27 | photo: string; 28 | } 29 | 30 | export const RestaurantSchema = SchemaFactory.createForClass(Restaurant); 31 | -------------------------------------------------------------------------------- /lecture-5/zomatonest/src/user/schemas/user.schema.ts: -------------------------------------------------------------------------------- 1 | import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose'; 2 | import { Document } from 'mongoose'; 3 | 4 | export type UserDocument = User & Document; 5 | 6 | @Schema() 7 | export class User { 8 | @Prop() 9 | name: string; 10 | 11 | @Prop() 12 | phoneNo: number; 13 | 14 | @Prop() 15 | email: string; 16 | 17 | @Prop() 18 | address: string; 19 | } 20 | 21 | export const UserSchema = SchemaFactory.createForClass(User); 22 | -------------------------------------------------------------------------------- /lecture-5/zomatonest/src/user/user.module.ts: -------------------------------------------------------------------------------- 1 | import { Module } from '@nestjs/common'; 2 | import { UserService } from './user.service'; 3 | import { UserController } from './user.controller'; 4 | import { MongooseModule } from '@nestjs/mongoose'; 5 | import { User, UserSchema } from './schemas/user.schema'; 6 | 7 | @Module({ 8 | imports: [ 9 | MongooseModule.forFeature([{ name: User.name, schema: UserSchema}]), 10 | ], 11 | controllers: [UserController], 12 | providers: [UserService] 13 | }) 14 | export class UserModule {} 15 | -------------------------------------------------------------------------------- /lecture-5/zomatonest/test/jest-e2e.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleFileExtensions": ["js", "json", "ts"], 3 | "rootDir": ".", 4 | "testEnvironment": "node", 5 | "testRegex": ".e2e-spec.ts$", 6 | "transform": { 7 | "^.+\\.(t|j)s$": "ts-jest" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /lecture-5/zomatonest/tsconfig.build.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "exclude": ["node_modules", "test", "dist", "**/*spec.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /lecture-5/zomatonest/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "declaration": true, 5 | "removeComments": true, 6 | "emitDecoratorMetadata": true, 7 | "experimentalDecorators": true, 8 | "allowSyntheticDefaultImports": true, 9 | "target": "es2017", 10 | "sourceMap": true, 11 | "outDir": "./dist", 12 | "baseUrl": "./", 13 | "incremental": true 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /lecture-6/zomclone/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /lecture-6/zomclone/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-6/zomclone/public/favicon.ico -------------------------------------------------------------------------------- /lecture-6/zomclone/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-6/zomclone/public/logo192.png -------------------------------------------------------------------------------- /lecture-6/zomclone/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-6/zomclone/public/logo512.png -------------------------------------------------------------------------------- /lecture-6/zomclone/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /lecture-6/zomclone/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /lecture-6/zomclone/src/App.test.js: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react'; 2 | import App from './App'; 3 | 4 | test('renders learn react link', () => { 5 | render(); 6 | const linkElement = screen.getByText(/learn react/i); 7 | expect(linkElement).toBeInTheDocument(); 8 | }); 9 | -------------------------------------------------------------------------------- /lecture-6/zomclone/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | } 9 | 10 | code { 11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 12 | monospace; 13 | } 14 | -------------------------------------------------------------------------------- /lecture-6/zomclone/src/index.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ReactDOM from "react-dom"; 3 | import "./index.css"; 4 | import { App } from "./App"; 5 | import reportWebVitals from "./reportWebVitals"; 6 | import { BrowserRouter as Router } from "react-router-dom"; 7 | 8 | ReactDOM.render( 9 | 10 | 11 | 12 | 13 | , 14 | document.getElementById("root") 15 | ); 16 | 17 | // If you want to start measuring performance in your app, pass a function 18 | // to log results (for example: reportWebVitals(console.log)) 19 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals 20 | reportWebVitals(); 21 | -------------------------------------------------------------------------------- /lecture-6/zomclone/src/layouts/MainLayout.js: -------------------------------------------------------------------------------- 1 | import { Box } from "@material-ui/core"; 2 | import BottomNav from "../components/BotomNav"; 3 | 4 | export default function MainLayout({ children }) { 5 | return ( 6 |
13 | {children} 14 | 15 |
16 | ); 17 | } 18 | -------------------------------------------------------------------------------- /lecture-6/zomclone/src/pages/Gold.js: -------------------------------------------------------------------------------- 1 | import { useContext } from "react"; 2 | import { UserContext } from "../App"; 3 | export default function Gold() { 4 | let { user } = useContext(UserContext); 5 | return ( 6 |
7 |

Gold

8 |
9 | ); 10 | } -------------------------------------------------------------------------------- /lecture-6/zomclone/src/pages/Out.js: -------------------------------------------------------------------------------- 1 | import { useContext } from "react"; 2 | import { UserContext } from "../App"; 3 | export default function Out() { 4 | let { user } = useContext(UserContext); 5 | return ( 6 |
7 |

Out

8 |
9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /lecture-6/zomclone/src/pages/Profile.js: -------------------------------------------------------------------------------- 1 | export default function Profile() { 2 | return ( 3 |
4 |

Profile

5 |
6 | ); 7 | } -------------------------------------------------------------------------------- /lecture-6/zomclone/src/pages/Search.js: -------------------------------------------------------------------------------- 1 | export default function Search() { 2 | return ( 3 |
4 |

Search

5 |
6 | ); 7 | } -------------------------------------------------------------------------------- /lecture-6/zomclone/src/reportWebVitals.js: -------------------------------------------------------------------------------- 1 | const reportWebVitals = onPerfEntry => { 2 | if (onPerfEntry && onPerfEntry instanceof Function) { 3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 4 | getCLS(onPerfEntry); 5 | getFID(onPerfEntry); 6 | getFCP(onPerfEntry); 7 | getLCP(onPerfEntry); 8 | getTTFB(onPerfEntry); 9 | }); 10 | } 11 | }; 12 | 13 | export default reportWebVitals; 14 | -------------------------------------------------------------------------------- /lecture-6/zomclone/src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | -------------------------------------------------------------------------------- /lecture-6/zomclone/src/utils/axios.js: -------------------------------------------------------------------------------- 1 | import axios from 'axios'; 2 | 3 | let instance = axios.create(); 4 | 5 | export default instance; -------------------------------------------------------------------------------- /lecture-6/zomclone/src/utils/firebase.js: -------------------------------------------------------------------------------- 1 | import firebase from "firebase"; 2 | 3 | var firebaseConfig = { 4 | apiKey: "AIzaSyCZTPSMMX5D1BfovHwK8MqPqoo8FrG5F4o", 5 | authDomain: "zomato-f797b.firebaseapp.com", 6 | projectId: "zomato-f797b", 7 | storageBucket: "zomato-f797b.appspot.com", 8 | messagingSenderId: "168162061422", 9 | appId: "1:168162061422:web:05bcd08a183160c3618a7f", 10 | }; 11 | 12 | firebase.initializeApp(firebaseConfig); 13 | 14 | export default firebase; 15 | -------------------------------------------------------------------------------- /lecture-7/zomatonest/.gitignore: -------------------------------------------------------------------------------- 1 | # compiled output 2 | /dist 3 | /node_modules 4 | 5 | # Logs 6 | logs 7 | *.log 8 | npm-debug.log* 9 | yarn-debug.log* 10 | yarn-error.log* 11 | lerna-debug.log* 12 | 13 | # OS 14 | .DS_Store 15 | 16 | # Tests 17 | /coverage 18 | /.nyc_output 19 | 20 | # IDEs and editors 21 | /.idea 22 | .project 23 | .classpath 24 | .c9/ 25 | *.launch 26 | .settings/ 27 | *.sublime-workspace 28 | 29 | # IDE - VSCode 30 | .vscode/* 31 | !.vscode/settings.json 32 | !.vscode/tasks.json 33 | !.vscode/launch.json 34 | !.vscode/extensions.json -------------------------------------------------------------------------------- /lecture-7/zomatonest/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "trailingComma": "all" 4 | } -------------------------------------------------------------------------------- /lecture-7/zomatonest/nest-cli.json: -------------------------------------------------------------------------------- 1 | { 2 | "collection": "@nestjs/schematics", 3 | "sourceRoot": "src" 4 | } 5 | -------------------------------------------------------------------------------- /lecture-7/zomatonest/okay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-7/zomatonest/okay.png -------------------------------------------------------------------------------- /lecture-7/zomatonest/src/app.controller.ts: -------------------------------------------------------------------------------- 1 | import { Controller, Get } from '@nestjs/common'; 2 | import { AppService } from './app.service'; 3 | 4 | @Controller() 5 | export class AppController { 6 | constructor(private readonly appService: AppService) {} 7 | 8 | @Get() 9 | getHello(): string { 10 | return this.appService.getHello(); 11 | } 12 | } 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /lecture-7/zomatonest/src/app.service.ts: -------------------------------------------------------------------------------- 1 | import { Injectable } from '@nestjs/common'; 2 | 3 | @Injectable() 4 | export class AppService { 5 | getHello(): string { 6 | return 'Hello World!'; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /lecture-7/zomatonest/src/images/alexa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-7/zomatonest/src/images/alexa.png -------------------------------------------------------------------------------- /lecture-7/zomatonest/src/images/images.module.ts: -------------------------------------------------------------------------------- 1 | import { Module } from '@nestjs/common'; 2 | import { ImagesService } from './images.service'; 3 | import { ImagesController } from './images.controller'; 4 | import { MongooseModule } from '@nestjs/mongoose'; 5 | import { Image, ImageSchema } from './schemas/image.schema'; 6 | 7 | @Module({ 8 | imports: [ 9 | MongooseModule.forFeature([{ name: Image.name, schema: ImageSchema }]), 10 | ], 11 | controllers: [ImagesController], 12 | providers: [ImagesService], 13 | }) 14 | export class ImagesModule {} 15 | -------------------------------------------------------------------------------- /lecture-7/zomatonest/src/images/schemas/image.schema.ts: -------------------------------------------------------------------------------- 1 | import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose'; 2 | import { Document } from 'mongoose'; 3 | 4 | export type ImageDocument = Image & Document; 5 | 6 | @Schema() 7 | export class Image { 8 | @Prop() 9 | content: string; 10 | } 11 | 12 | export const ImageSchema = SchemaFactory.createForClass(Image); 13 | -------------------------------------------------------------------------------- /lecture-7/zomatonest/src/main.ts: -------------------------------------------------------------------------------- 1 | import { NestFactory } from '@nestjs/core'; 2 | import { AppModule } from './app.module'; 3 | import * as express from 'express'; 4 | 5 | async function bootstrap() { 6 | const app = await NestFactory.create(AppModule); 7 | app.enableCors(); 8 | app.use(express.json({ limit: '50mb' })); 9 | await app.listen(5000); 10 | } 11 | bootstrap(); 12 | -------------------------------------------------------------------------------- /lecture-7/zomatonest/src/order/order.module.ts: -------------------------------------------------------------------------------- 1 | import { Module } from '@nestjs/common'; 2 | import { OrderService } from './order.service'; 3 | import { OrderController } from './order.controller'; 4 | import { MongooseModule } from '@nestjs/mongoose'; 5 | import { Order, OrderSchema } from './schemas/order.schema'; 6 | 7 | @Module({ 8 | imports: [ 9 | MongooseModule.forFeature([{ name: Order.name, schema: OrderSchema}]), 10 | ], 11 | controllers: [OrderController], 12 | providers: [OrderService] 13 | }) 14 | export class OrderModule {} 15 | -------------------------------------------------------------------------------- /lecture-7/zomatonest/src/restaurant/restaurant.module.ts: -------------------------------------------------------------------------------- 1 | import { Module } from '@nestjs/common'; 2 | import { RestaurantService } from './restaurant.service'; 3 | import { RestaurantController } from './restaurant.controller'; 4 | import { MongooseModule } from '@nestjs/mongoose'; 5 | import { Restaurant, RestaurantSchema } from './schemas/restaurant.schema'; 6 | 7 | @Module({ 8 | imports: [ 9 | MongooseModule.forFeature([{ name: Restaurant.name, schema: RestaurantSchema}]), 10 | ], 11 | controllers: [RestaurantController], 12 | providers: [RestaurantService] 13 | }) 14 | export class RestaurantModule {} 15 | -------------------------------------------------------------------------------- /lecture-7/zomatonest/src/restaurant/schemas/restaurant.schema.ts: -------------------------------------------------------------------------------- 1 | import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose'; 2 | import { Document } from 'mongoose'; 3 | 4 | export type RestaurantDocument = Restaurant & Document; 5 | 6 | @Schema() 7 | export class Restaurant { 8 | @Prop() 9 | name: string; 10 | 11 | @Prop() 12 | address: string; 13 | 14 | @Prop() 15 | phoneNo: string; 16 | 17 | @Prop() 18 | rating: string; 19 | 20 | @Prop() 21 | menu: Array; 22 | 23 | @Prop() 24 | onlineOrder: string; 25 | 26 | @Prop() 27 | photo: string; 28 | } 29 | 30 | export const RestaurantSchema = SchemaFactory.createForClass(Restaurant); 31 | -------------------------------------------------------------------------------- /lecture-7/zomatonest/src/user/schemas/user.schema.ts: -------------------------------------------------------------------------------- 1 | import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose'; 2 | import { Document } from 'mongoose'; 3 | 4 | export type UserDocument = User & Document; 5 | 6 | @Schema() 7 | export class User { 8 | @Prop() 9 | name: string; 10 | 11 | @Prop() 12 | phoneNo: number; 13 | 14 | @Prop() 15 | email: string; 16 | 17 | @Prop() 18 | address: string; 19 | } 20 | 21 | export const UserSchema = SchemaFactory.createForClass(User); 22 | -------------------------------------------------------------------------------- /lecture-7/zomatonest/src/user/user.module.ts: -------------------------------------------------------------------------------- 1 | import { Module } from '@nestjs/common'; 2 | import { UserService } from './user.service'; 3 | import { UserController } from './user.controller'; 4 | import { MongooseModule } from '@nestjs/mongoose'; 5 | import { User, UserSchema } from './schemas/user.schema'; 6 | 7 | @Module({ 8 | imports: [ 9 | MongooseModule.forFeature([{ name: User.name, schema: UserSchema}]), 10 | ], 11 | controllers: [UserController], 12 | providers: [UserService] 13 | }) 14 | export class UserModule {} 15 | -------------------------------------------------------------------------------- /lecture-7/zomatonest/test/jest-e2e.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleFileExtensions": ["js", "json", "ts"], 3 | "rootDir": ".", 4 | "testEnvironment": "node", 5 | "testRegex": ".e2e-spec.ts$", 6 | "transform": { 7 | "^.+\\.(t|j)s$": "ts-jest" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /lecture-7/zomatonest/tsconfig.build.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "exclude": ["node_modules", "test", "dist", "**/*spec.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /lecture-7/zomatonest/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "declaration": true, 5 | "removeComments": true, 6 | "emitDecoratorMetadata": true, 7 | "experimentalDecorators": true, 8 | "allowSyntheticDefaultImports": true, 9 | "target": "es2017", 10 | "sourceMap": true, 11 | "outDir": "./dist", 12 | "baseUrl": "./", 13 | "incremental": true 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /lecture-7/zomclone/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /lecture-7/zomclone/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-7/zomclone/public/favicon.ico -------------------------------------------------------------------------------- /lecture-7/zomclone/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-7/zomclone/public/logo192.png -------------------------------------------------------------------------------- /lecture-7/zomclone/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforcauseorg-archive/Zomato-Live-JS-May-2021/9983991316560c9e5f1b3315a65bc49a6f7511e8/lecture-7/zomclone/public/logo512.png -------------------------------------------------------------------------------- /lecture-7/zomclone/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /lecture-7/zomclone/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /lecture-7/zomclone/src/App.test.js: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react'; 2 | import App from './App'; 3 | 4 | test('renders learn react link', () => { 5 | render(); 6 | const linkElement = screen.getByText(/learn react/i); 7 | expect(linkElement).toBeInTheDocument(); 8 | }); 9 | -------------------------------------------------------------------------------- /lecture-7/zomclone/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | } 9 | 10 | code { 11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 12 | monospace; 13 | } 14 | -------------------------------------------------------------------------------- /lecture-7/zomclone/src/index.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ReactDOM from "react-dom"; 3 | import "./index.css"; 4 | import { App } from "./App"; 5 | import reportWebVitals from "./reportWebVitals"; 6 | import { BrowserRouter as Router } from "react-router-dom"; 7 | 8 | ReactDOM.render( 9 | 10 | 11 | 12 | 13 | , 14 | document.getElementById("root") 15 | ); 16 | 17 | // If you want to start measuring performance in your app, pass a function 18 | // to log results (for example: reportWebVitals(console.log)) 19 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals 20 | reportWebVitals(); 21 | -------------------------------------------------------------------------------- /lecture-7/zomclone/src/layouts/MainLayout.js: -------------------------------------------------------------------------------- 1 | import BottomNav from "../components/BotomNav"; 2 | 3 | export default function MainLayout({ children }) { 4 | return ( 5 |
12 | {children} 13 | 14 |
15 | ); 16 | } 17 | -------------------------------------------------------------------------------- /lecture-7/zomclone/src/pages/Gold.js: -------------------------------------------------------------------------------- 1 | 2 | export default function Gold() { 3 | return ( 4 |
5 |

Gold

6 |
7 | ); 8 | } -------------------------------------------------------------------------------- /lecture-7/zomclone/src/pages/Home.js: -------------------------------------------------------------------------------- 1 | import { useContext } from "react"; 2 | import { List } from "@material-ui/core"; 3 | import { RestrauntsContext } from "../App"; 4 | import Restraunt from "../components/Restraunt"; 5 | 6 | export default function Home() { 7 | let {restraunts} = useContext(RestrauntsContext); 8 | 9 | return ( 10 | 16 | {restraunts.map(function (info, index) { 17 | return ; 18 | })} 19 | 20 | ); 21 | } 22 | -------------------------------------------------------------------------------- /lecture-7/zomclone/src/pages/Out.js: -------------------------------------------------------------------------------- 1 | 2 | export default function Out() { 3 | return ( 4 |
5 |

Out

6 |
7 | ); 8 | } 9 | -------------------------------------------------------------------------------- /lecture-7/zomclone/src/pages/Profile.js: -------------------------------------------------------------------------------- 1 | export default function Profile() { 2 | return ( 3 |
4 |

Profile

5 |
6 | ); 7 | } -------------------------------------------------------------------------------- /lecture-7/zomclone/src/pages/Search.js: -------------------------------------------------------------------------------- 1 | export default function Search() { 2 | return ( 3 |
4 |

Search

5 |
6 | ); 7 | } -------------------------------------------------------------------------------- /lecture-7/zomclone/src/reportWebVitals.js: -------------------------------------------------------------------------------- 1 | const reportWebVitals = onPerfEntry => { 2 | if (onPerfEntry && onPerfEntry instanceof Function) { 3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 4 | getCLS(onPerfEntry); 5 | getFID(onPerfEntry); 6 | getFCP(onPerfEntry); 7 | getLCP(onPerfEntry); 8 | getTTFB(onPerfEntry); 9 | }); 10 | } 11 | }; 12 | 13 | export default reportWebVitals; 14 | -------------------------------------------------------------------------------- /lecture-7/zomclone/src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | -------------------------------------------------------------------------------- /lecture-7/zomclone/src/utils/axios.js: -------------------------------------------------------------------------------- 1 | import axios from 'axios'; 2 | 3 | let instance = axios.create(); 4 | 5 | export default instance; -------------------------------------------------------------------------------- /lecture-7/zomclone/src/utils/firebase.js: -------------------------------------------------------------------------------- 1 | import firebase from "firebase"; 2 | 3 | var firebaseConfig = { 4 | apiKey: "AIzaSyCZTPSMMX5D1BfovHwK8MqPqoo8FrG5F4o", 5 | authDomain: "zomato-f797b.firebaseapp.com", 6 | projectId: "zomato-f797b", 7 | storageBucket: "zomato-f797b.appspot.com", 8 | messagingSenderId: "168162061422", 9 | appId: "1:168162061422:web:05bcd08a183160c3618a7f", 10 | }; 11 | 12 | firebase.initializeApp(firebaseConfig); 13 | 14 | export default firebase; 15 | -------------------------------------------------------------------------------- /zomback/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "trailingComma": "all" 4 | } -------------------------------------------------------------------------------- /zomback/nest-cli.json: -------------------------------------------------------------------------------- 1 | { 2 | "collection": "@nestjs/schematics", 3 | "sourceRoot": "src" 4 | } 5 | -------------------------------------------------------------------------------- /zomback/src/app.controller.ts: -------------------------------------------------------------------------------- 1 | import { Controller, Get } from '@nestjs/common'; 2 | import { AppService } from './app.service'; 3 | 4 | @Controller() 5 | export class AppController { 6 | constructor(private readonly appService: AppService) {} 7 | 8 | @Get() 9 | getHello(): string { 10 | return this.appService.getHello(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /zomback/src/app.module.ts: -------------------------------------------------------------------------------- 1 | import { Module } from '@nestjs/common'; 2 | import { AppController } from './app.controller'; 3 | import { AppService } from './app.service'; 4 | 5 | @Module({ 6 | imports: [], 7 | controllers: [AppController], 8 | providers: [AppService], 9 | }) 10 | export class AppModule {} 11 | -------------------------------------------------------------------------------- /zomback/src/app.service.ts: -------------------------------------------------------------------------------- 1 | import { Injectable } from '@nestjs/common'; 2 | 3 | @Injectable() 4 | export class AppService { 5 | getHello(): string { 6 | return 'Hello World!'; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /zomback/src/main.ts: -------------------------------------------------------------------------------- 1 | import { NestFactory } from '@nestjs/core'; 2 | import { AppModule } from './app.module'; 3 | 4 | async function bootstrap() { 5 | const app = await NestFactory.create(AppModule); 6 | await app.listen(3000); 7 | } 8 | bootstrap(); 9 | -------------------------------------------------------------------------------- /zomback/test/jest-e2e.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleFileExtensions": ["js", "json", "ts"], 3 | "rootDir": ".", 4 | "testEnvironment": "node", 5 | "testRegex": ".e2e-spec.ts$", 6 | "transform": { 7 | "^.+\\.(t|j)s$": "ts-jest" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /zomback/tsconfig.build.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "exclude": ["node_modules", "test", "dist", "**/*spec.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /zomback/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "declaration": true, 5 | "removeComments": true, 6 | "emitDecoratorMetadata": true, 7 | "experimentalDecorators": true, 8 | "allowSyntheticDefaultImports": true, 9 | "target": "es2017", 10 | "sourceMap": true, 11 | "outDir": "./dist", 12 | "baseUrl": "./", 13 | "incremental": true 14 | } 15 | } 16 | --------------------------------------------------------------------------------