├── Main ├── src │ ├── app │ │ ├── app.component.css │ │ ├── about │ │ │ ├── about.component.css │ │ │ ├── about.component.html │ │ │ ├── about.component.ts │ │ │ └── about.component.spec.ts │ │ ├── cart │ │ │ ├── cart.component.css │ │ │ ├── cart.component.html │ │ │ ├── cart.component.ts │ │ │ └── cart.component.spec.ts │ │ ├── home │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ ├── home.component.ts │ │ │ └── home.component.spec.ts │ │ ├── login │ │ │ ├── login.component.css │ │ │ ├── login.component.ts │ │ │ ├── login.component.spec.ts │ │ │ └── login.component.html │ │ ├── contact │ │ │ ├── contact.component.css │ │ │ ├── contact.component.html │ │ │ ├── contact.component.ts │ │ │ └── contact.component.spec.ts │ │ ├── footer │ │ │ ├── footer.component.css │ │ │ ├── footer.component.html │ │ │ ├── footer.component.ts │ │ │ └── footer.component.spec.ts │ │ ├── header │ │ │ ├── header.component.css │ │ │ ├── header.component.ts │ │ │ └── header.component.spec.ts │ │ ├── product │ │ │ ├── product.component.css │ │ │ ├── product.component.html │ │ │ ├── product.component.ts │ │ │ └── product.component.spec.ts │ │ ├── signup │ │ │ ├── signup.component.css │ │ │ ├── signup.component.ts │ │ │ ├── signup.component.html │ │ │ └── signup.component.spec.ts │ │ ├── dashboard │ │ │ ├── dashboard.component.css │ │ │ ├── dashboard.component.html │ │ │ ├── dashboard.component.ts │ │ │ └── dashboard.component.spec.ts │ │ ├── not-found │ │ │ ├── not-found.component.css │ │ │ ├── not-found.component.html │ │ │ ├── not-found.component.ts │ │ │ └── not-found.component.spec.ts │ │ ├── app.component.html │ │ ├── star-rating.pipe.spec.ts │ │ ├── app.component.ts │ │ ├── products │ │ │ ├── products.component.html │ │ │ ├── products.component.css │ │ │ ├── products.component.ts │ │ │ └── products.component.spec.ts │ │ ├── auth.service.spec.ts │ │ ├── cart.service.spec.ts │ │ ├── cart.service.ts │ │ ├── star-rating.pipe.ts │ │ └── environments │ │ │ └── environments.ts │ ├── styles.css │ ├── main.ts │ └── index.html ├── public │ └── favicon.ico ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── .editorconfig ├── tsconfig.app.json ├── tsconfig.spec.json └── .gitignore ├── Angular ├── notes │ ├── components-communication.txt │ ├── routing.txt │ ├── Angular 16 communication.pptx │ ├── projects.txt │ ├── components.txt │ └── topics.txt ├── code │ ├── ang18 │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.css │ │ │ │ ├── child │ │ │ │ │ ├── child.component.css │ │ │ │ │ ├── child.component.html │ │ │ │ │ ├── child.component.ts │ │ │ │ │ └── child.component.spec.ts │ │ │ │ ├── app.routes.ts │ │ │ │ ├── app.component.html │ │ │ │ ├── app.config.server.ts │ │ │ │ ├── app.config.ts │ │ │ │ ├── app.component.ts │ │ │ │ └── app.component.spec.ts │ │ │ ├── styles.css │ │ │ ├── main.ts │ │ │ ├── main.server.ts │ │ │ └── index.html │ │ ├── public │ │ │ └── favicon.ico │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── .editorconfig │ │ ├── tsconfig.spec.json │ │ ├── tsconfig.app.json │ │ └── .gitignore │ ├── lifeCycle │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app-routing.module.ts │ │ │ │ └── app.module.ts │ │ │ ├── styles.css │ │ │ ├── main.ts │ │ │ └── index.html │ │ ├── public │ │ │ └── favicon.ico │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ └── launch.json │ │ ├── .editorconfig │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── .gitignore │ ├── rxJSDemo │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app-routing.module.ts │ │ │ │ └── app.module.ts │ │ │ ├── styles.css │ │ │ ├── main.ts │ │ │ └── index.html │ │ ├── public │ │ │ └── favicon.ico │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ └── launch.json │ │ ├── .editorconfig │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── .gitignore │ ├── twoWay │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.ts │ │ │ │ └── app.module.ts │ │ │ ├── styles.css │ │ │ ├── main.ts │ │ │ └── index.html │ │ ├── public │ │ │ └── favicon.ico │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ └── launch.json │ │ ├── .editorconfig │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── .gitignore │ ├── child2parent │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.css │ │ │ │ ├── books │ │ │ │ │ ├── books.component.css │ │ │ │ │ ├── books.component.html │ │ │ │ │ ├── books.component.ts │ │ │ │ │ └── books.component.spec.ts │ │ │ │ ├── books-child │ │ │ │ │ ├── books-child.component.css │ │ │ │ │ ├── books-child.component.html │ │ │ │ │ ├── books-child.component.ts │ │ │ │ │ └── books-child.component.spec.ts │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ └── app.module.ts │ │ │ ├── styles.css │ │ │ ├── main.ts │ │ │ └── index.html │ │ ├── public │ │ │ └── favicon.ico │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ └── launch.json │ │ ├── .editorconfig │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── .gitignore │ ├── httpClientdemo │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── api.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── api.service.spec.ts │ │ │ │ ├── app.module.ts │ │ │ │ └── app.component.ts │ │ │ ├── styles.css │ │ │ ├── main.ts │ │ │ └── index.html │ │ ├── public │ │ │ └── favicon.ico │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ └── launch.json │ │ ├── .editorconfig │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── .gitignore │ ├── routing │ │ ├── src │ │ │ ├── app │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ ├── home.component.ts │ │ │ │ │ └── home.component.spec.ts │ │ │ │ ├── about │ │ │ │ │ ├── about.component.css │ │ │ │ │ ├── about.component.html │ │ │ │ │ ├── about.component.ts │ │ │ │ │ └── about.component.spec.ts │ │ │ │ ├── contact │ │ │ │ │ ├── contact.component.css │ │ │ │ │ ├── contact.component.html │ │ │ │ │ ├── contact.component.ts │ │ │ │ │ └── contact.component.spec.ts │ │ │ │ ├── login │ │ │ │ │ ├── login.component.css │ │ │ │ │ ├── login.component.html │ │ │ │ │ ├── login.component.ts │ │ │ │ │ └── login.component.spec.ts │ │ │ │ ├── project │ │ │ │ │ ├── project.component.css │ │ │ │ │ ├── project.component.html │ │ │ │ │ ├── project.component.ts │ │ │ │ │ └── project.component.spec.ts │ │ │ │ ├── dashboard │ │ │ │ │ ├── dashboard.component.css │ │ │ │ │ ├── dashboard.component.html │ │ │ │ │ ├── dashboard.component.ts │ │ │ │ │ └── dashboard.component.spec.ts │ │ │ │ ├── not-found │ │ │ │ │ ├── not-found.component.css │ │ │ │ │ ├── not-found.component.html │ │ │ │ │ ├── not-found.component.ts │ │ │ │ │ └── not-found.component.spec.ts │ │ │ │ ├── projects │ │ │ │ │ ├── projects.component.css │ │ │ │ │ ├── projects.component.html │ │ │ │ │ ├── projects.component.ts │ │ │ │ │ └── projects.component.spec.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── footer │ │ │ │ │ ├── footer.component.html │ │ │ │ │ ├── footer.component.css │ │ │ │ │ ├── footer.component.ts │ │ │ │ │ └── footer.component.spec.ts │ │ │ │ ├── dash.guard.ts │ │ │ │ ├── app.component.html │ │ │ │ ├── x │ │ │ │ │ └── x.module.ts │ │ │ │ ├── app.component.ts │ │ │ │ ├── header │ │ │ │ │ ├── header.component.ts │ │ │ │ │ ├── header.component.css │ │ │ │ │ ├── header.component.html │ │ │ │ │ └── header.component.spec.ts │ │ │ │ ├── dash.guard.spec.ts │ │ │ │ └── app.component.spec.ts │ │ │ ├── styles.css │ │ │ ├── main.ts │ │ │ └── index.html │ │ ├── public │ │ │ └── favicon.ico │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ └── launch.json │ │ ├── .editorconfig │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── .gitignore │ ├── servicesDemo │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── header │ │ │ │ │ ├── header.component.html │ │ │ │ │ ├── header.component.css │ │ │ │ │ ├── header.component.ts │ │ │ │ │ └── header.component.spec.ts │ │ │ │ ├── product │ │ │ │ │ ├── product.component.css │ │ │ │ │ ├── product.component.html │ │ │ │ │ ├── product.component.spec.ts │ │ │ │ │ └── product.component.ts │ │ │ │ ├── app.component.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── count-common-product.service.ts │ │ │ │ ├── count-common-product.service.spec.ts │ │ │ │ └── app.module.ts │ │ │ ├── styles.css │ │ │ ├── main.ts │ │ │ └── index.html │ │ ├── public │ │ │ └── favicon.ico │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ └── launch.json │ │ ├── .editorconfig │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── .gitignore │ ├── nestedComponents │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.css │ │ │ │ ├── movies │ │ │ │ │ ├── movies.component.css │ │ │ │ │ ├── movies.component.html │ │ │ │ │ ├── movies.component.spec.ts │ │ │ │ │ └── movies.component.ts │ │ │ │ ├── movie │ │ │ │ │ ├── movie.component.html │ │ │ │ │ ├── movie.component.css │ │ │ │ │ ├── movie.component.ts │ │ │ │ │ └── movie.component.spec.ts │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ └── app.module.ts │ │ │ ├── styles.css │ │ │ ├── main.ts │ │ │ └── index.html │ │ ├── public │ │ │ └── favicon.ico │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ └── launch.json │ │ ├── .editorconfig │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── .gitignore │ ├── dataBinding │ │ ├── src │ │ │ ├── styles.css │ │ │ ├── app │ │ │ │ ├── app.component.css │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ └── app.module.ts │ │ │ ├── main.ts │ │ │ └── index.html │ │ ├── public │ │ │ └── favicon.ico │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ └── launch.json │ │ ├── .editorconfig │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── .gitignore │ ├── directives1 │ │ ├── src │ │ │ ├── styles.css │ │ │ ├── main.ts │ │ │ ├── app │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── app.component.ts │ │ │ │ └── app.component.css │ │ │ └── index.html │ │ ├── public │ │ │ └── favicon.ico │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ └── launch.json │ │ ├── .editorconfig │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── .gitignore │ └── profile │ │ ├── public │ │ └── favicon.ico │ │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ └── tasks.json │ │ ├── src │ │ ├── styles.css │ │ ├── app │ │ │ ├── app.component.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ └── app.module.ts │ │ ├── main.ts │ │ └── index.html │ │ ├── .editorconfig │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── .gitignore └── Projects │ ├── pokedex │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.module.ts │ │ │ └── app.component.ts │ │ ├── styles.css │ │ ├── main.ts │ │ └── index.html │ ├── public │ │ └── favicon.ico │ ├── .vscode │ │ ├── extensions.json │ │ └── launch.json │ ├── .editorconfig │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── .gitignore │ ├── movie1 │ ├── src │ │ ├── styles.css │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── main.ts │ │ └── index.html │ ├── public │ │ └── favicon.ico │ ├── .vscode │ │ ├── extensions.json │ │ └── launch.json │ ├── .editorconfig │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── .gitignore │ ├── fakeStore │ ├── src │ │ ├── styles.css │ │ ├── app │ │ │ ├── power.pipe.spec.ts │ │ │ ├── square.pipe.spec.ts │ │ │ ├── square.pipe.ts │ │ │ ├── power.pipe.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.module.ts │ │ │ ├── app.component.css │ │ │ └── app.component.html │ │ ├── main.ts │ │ └── index.html │ ├── public │ │ └── favicon.ico │ ├── .vscode │ │ ├── extensions.json │ │ └── launch.json │ ├── .editorconfig │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── .gitignore │ ├── randomQuote │ ├── src │ │ ├── styles.css │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── main.ts │ │ └── index.html │ ├── public │ │ └── favicon.ico │ ├── .vscode │ │ ├── extensions.json │ │ └── launch.json │ ├── .editorconfig │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── .gitignore │ └── movieList │ ├── public │ └── favicon.ico │ ├── src │ ├── styles.css │ ├── main.ts │ ├── app │ │ ├── app.component.html │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ └── app.module.ts │ └── index.html │ ├── .vscode │ ├── extensions.json │ └── launch.json │ ├── .editorconfig │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── .gitignore ├── telegramLink.txt ├── TS ├── typescript.pdf └── First │ ├── index.html │ └── index.js ├── CRUD ├── architecture.png ├── frontend │ ├── src │ │ ├── styles.css │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app-routing.module.ts │ │ │ ├── api.service.spec.ts │ │ │ ├── app.module.ts │ │ │ ├── api.service.ts │ │ │ └── app.component.html │ │ ├── main.ts │ │ └── index.html │ ├── public │ │ └── favicon.ico │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ └── tasks.json │ ├── .editorconfig │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── .gitignore └── backend │ └── db.json ├── driveLink.txt ├── freeAPIList.txt └── prevLinks.txt /Main/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Main/src/app/about/about.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Main/src/app/cart/cart.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Main/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Main/src/app/login/login.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/notes/components-communication.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Main/src/app/contact/contact.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Main/src/app/footer/footer.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Main/src/app/header/header.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Main/src/app/product/product.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Main/src/app/signup/signup.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/code/ang18/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/code/lifeCycle/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/code/rxJSDemo/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/code/twoWay/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Main/src/app/dashboard/dashboard.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Main/src/app/not-found/not-found.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /telegramLink.txt: -------------------------------------------------------------------------------- 1 | https://t.me/+ltSQQ2Qo-A43ZDc1 -------------------------------------------------------------------------------- /Angular/Projects/pokedex/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/code/ang18/src/app/child/child.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/code/child2parent/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/code/httpClientdemo/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/code/routing/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/code/servicesDemo/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/code/nestedComponents/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/code/routing/src/app/about/about.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/code/routing/src/app/contact/contact.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/code/routing/src/app/login/login.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/code/routing/src/app/project/project.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/code/child2parent/src/app/books/books.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/code/routing/src/app/dashboard/dashboard.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/code/routing/src/app/not-found/not-found.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/code/routing/src/app/projects/projects.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Main/src/app/about/about.component.html: -------------------------------------------------------------------------------- 1 |
about works!
2 | -------------------------------------------------------------------------------- /Main/src/app/cart/cart.component.html: -------------------------------------------------------------------------------- 1 |cart works!
2 | -------------------------------------------------------------------------------- /Main/src/app/home/home.component.html: -------------------------------------------------------------------------------- 1 |home works!
2 | -------------------------------------------------------------------------------- /Angular/code/child2parent/src/app/books-child/books-child.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Main/src/app/contact/contact.component.html: -------------------------------------------------------------------------------- 1 |contact works!
2 | -------------------------------------------------------------------------------- /Main/src/app/product/product.component.html: -------------------------------------------------------------------------------- 1 |product works!
2 | -------------------------------------------------------------------------------- /Angular/code/ang18/src/app/child/child.component.html: -------------------------------------------------------------------------------- 1 |child works!
2 | -------------------------------------------------------------------------------- /Angular/code/routing/src/app/home/home.component.html: -------------------------------------------------------------------------------- 1 |home works!
2 | -------------------------------------------------------------------------------- /Main/src/app/not-found/not-found.component.html: -------------------------------------------------------------------------------- 1 |not-found works!
2 | -------------------------------------------------------------------------------- /Angular/code/routing/src/app/about/about.component.html: -------------------------------------------------------------------------------- 1 |about works!
2 | -------------------------------------------------------------------------------- /Angular/code/routing/src/app/login/login.component.html: -------------------------------------------------------------------------------- 1 |login works!
2 | -------------------------------------------------------------------------------- /Angular/code/routing/src/app/contact/contact.component.html: -------------------------------------------------------------------------------- 1 |contact works!
2 | -------------------------------------------------------------------------------- /Angular/code/routing/src/app/project/project.component.html: -------------------------------------------------------------------------------- 1 |project works!
2 | -------------------------------------------------------------------------------- /Angular/code/routing/src/app/projects/projects.component.html: -------------------------------------------------------------------------------- 1 |projects works!
2 | -------------------------------------------------------------------------------- /Angular/notes/routing.txt: -------------------------------------------------------------------------------- 1 | Angular have in built route module system by '@angular/router' -------------------------------------------------------------------------------- /Angular/code/routing/src/app/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- 1 |dashboard works!
2 | -------------------------------------------------------------------------------- /TS/typescript.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/TS/typescript.pdf -------------------------------------------------------------------------------- /CRUD/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/CRUD/architecture.png -------------------------------------------------------------------------------- /driveLink.txt: -------------------------------------------------------------------------------- 1 | https://drive.google.com/drive/folders/1-55MYASxB2vOi8W3r0pSWLmF1XiEcc0J?usp=sharing -------------------------------------------------------------------------------- /Angular/code/httpClientdemo/src/app/app.component.html: -------------------------------------------------------------------------------- 1 |{{j.punchline}}
-------------------------------------------------------------------------------- /Main/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/Main/public/favicon.ico -------------------------------------------------------------------------------- /Angular/code/routing/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | #app{ 2 | display: flex; 3 | flex-direction: column; 4 | } -------------------------------------------------------------------------------- /CRUD/frontend/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Angular/code/ang18/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Angular/code/twoWay/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Angular/Projects/movie1/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Angular/Projects/pokedex/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Angular/code/dataBinding/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Angular/code/directives1/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Angular/code/routing/src/app/footer/footer.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/code/routing/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Angular/code/rxJSDemo/src/app/app.component.html: -------------------------------------------------------------------------------- 1 |{{msg|async|json}}
3 |{{obs|async}}
-------------------------------------------------------------------------------- /Angular/code/rxJSDemo/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /CRUD/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/CRUD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /Main/src/app/app.component.html: -------------------------------------------------------------------------------- 1 |dashboard works!
2 | -------------------------------------------------------------------------------- /Angular/Projects/fakeStore/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Angular/Projects/movie1/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | .show{ 2 | display: block; 3 | } 4 | .hide{ 5 | display: none; 6 | } -------------------------------------------------------------------------------- /Angular/Projects/randomQuote/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Angular/code/child2parent/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Angular/code/httpClientdemo/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Angular/code/nestedComponents/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Angular/code/servicesDemo/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Angular/Projects/randomQuote/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | blockquote::before{ 2 | content: '\201B'; 3 | font-size: 24px; 4 | } -------------------------------------------------------------------------------- /Angular/code/ang18/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/Angular/code/ang18/public/favicon.ico -------------------------------------------------------------------------------- /Angular/code/profile/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/Angular/code/profile/public/favicon.ico -------------------------------------------------------------------------------- /Angular/code/routing/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/Angular/code/routing/public/favicon.ico -------------------------------------------------------------------------------- /Angular/code/twoWay/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/Angular/code/twoWay/public/favicon.ico -------------------------------------------------------------------------------- /Angular/code/lifeCycle/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/Angular/code/lifeCycle/public/favicon.ico -------------------------------------------------------------------------------- /Angular/code/rxJSDemo/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/Angular/code/rxJSDemo/public/favicon.ico -------------------------------------------------------------------------------- /Angular/Projects/movie1/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/Angular/Projects/movie1/public/favicon.ico -------------------------------------------------------------------------------- /Angular/Projects/pokedex/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/Angular/Projects/pokedex/public/favicon.ico -------------------------------------------------------------------------------- /Angular/code/ang18/src/app/app.routes.ts: -------------------------------------------------------------------------------- 1 | import { Routes } from '@angular/router'; 2 | 3 | export const routes: Routes = [ 4 | 5 | ]; 6 | -------------------------------------------------------------------------------- /Angular/code/child2parent/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/Angular/code/child2parent/public/favicon.ico -------------------------------------------------------------------------------- /Angular/code/dataBinding/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/Angular/code/dataBinding/public/favicon.ico -------------------------------------------------------------------------------- /Angular/code/directives1/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/Angular/code/directives1/public/favicon.ico -------------------------------------------------------------------------------- /Angular/code/nestedComponents/src/app/movies/movies.component.css: -------------------------------------------------------------------------------- 1 | .movies{ 2 | display: flex; 3 | justify-content: space-between; 4 | } -------------------------------------------------------------------------------- /Angular/code/servicesDemo/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/Angular/code/servicesDemo/public/favicon.ico -------------------------------------------------------------------------------- /Angular/notes/Angular 16 communication.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/Angular/notes/Angular 16 communication.pptx -------------------------------------------------------------------------------- /Angular/Projects/fakeStore/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/Angular/Projects/fakeStore/public/favicon.ico -------------------------------------------------------------------------------- /Angular/Projects/movieList/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/Angular/Projects/movieList/public/favicon.ico -------------------------------------------------------------------------------- /Angular/code/httpClientdemo/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/Angular/code/httpClientdemo/public/favicon.ico -------------------------------------------------------------------------------- /CRUD/backend/db.json: -------------------------------------------------------------------------------- 1 | { 2 | "movies": [ 3 | { 4 | "id": "4b0e", 5 | "Title": "kgf", 6 | "Year": "2018" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Main/src/app/footer/footer.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/Projects/randomQuote/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/Angular/Projects/randomQuote/public/favicon.ico -------------------------------------------------------------------------------- /Angular/code/ang18/src/app/app.component.html: -------------------------------------------------------------------------------- 1 | 2 | @defer { 3 |{{count}}
3 | -------------------------------------------------------------------------------- /Angular/code/nestedComponents/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prasad-bigdp/730ang/HEAD/Angular/code/nestedComponents/public/favicon.ico -------------------------------------------------------------------------------- /Angular/code/servicesDemo/src/app/app.component.html: -------------------------------------------------------------------------------- 1 |I'm books child Component
2 |{{count}}
3 | -------------------------------------------------------------------------------- /Angular/code/routing/src/app/footer/footer.component.css: -------------------------------------------------------------------------------- 1 | footer{ 2 | text-align: center; 3 | color: white; 4 | background-color: black; 5 | padding: 10px; 6 | } -------------------------------------------------------------------------------- /Main/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846 3 | "recommendations": ["angular.ng-template"] 4 | } 5 | -------------------------------------------------------------------------------- /CRUD/frontend/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846 3 | "recommendations": ["angular.ng-template"] 4 | } 5 | -------------------------------------------------------------------------------- /Angular/code/ang18/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846 3 | "recommendations": ["angular.ng-template"] 4 | } 5 | -------------------------------------------------------------------------------- /Angular/code/child2parent/src/app/app.component.html: -------------------------------------------------------------------------------- 1 |MY Site
3 |Count:{{c}}
4 | 5 |4 |7 |{{myQuote.content}}
5 | {{myQuote.author}} 6 |
Price:₹{{pro.price}}
5 | 6 |
--------------------------------------------------------------------------------
/Angular/code/routing/src/app/x/x.module.ts:
--------------------------------------------------------------------------------
1 | import { NgModule } from '@angular/core';
2 | import { CommonModule } from '@angular/common';
3 |
4 |
5 |
6 | @NgModule({
7 | declarations: [],
8 | imports: [
9 | CommonModule
10 | ]
11 | })
12 | export class XModule { }
13 |
--------------------------------------------------------------------------------
/Main/src/app/footer/footer.component.ts:
--------------------------------------------------------------------------------
1 | import { Component } from '@angular/core';
2 |
3 | @Component({
4 | selector: 'app-footer',
5 | templateUrl: './footer.component.html',
6 | styleUrl: './footer.component.css'
7 | })
8 | export class FooterComponent {
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/Main/src/app/header/header.component.ts:
--------------------------------------------------------------------------------
1 | import { Component } from '@angular/core';
2 |
3 | @Component({
4 | selector: 'app-header',
5 | templateUrl: './header.component.html',
6 | styleUrl: './header.component.css'
7 | })
8 | export class HeaderComponent {
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/Main/src/app/contact/contact.component.ts:
--------------------------------------------------------------------------------
1 | import { Component } from '@angular/core';
2 |
3 | @Component({
4 | selector: 'app-contact',
5 | templateUrl: './contact.component.html',
6 | styleUrl: './contact.component.css'
7 | })
8 | export class ContactComponent {
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/Main/src/app/product/product.component.ts:
--------------------------------------------------------------------------------
1 | import { Component } from '@angular/core';
2 |
3 | @Component({
4 | selector: 'app-product',
5 | templateUrl: './product.component.html',
6 | styleUrl: './product.component.css'
7 | })
8 | export class ProductComponent {
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/Main/src/main.ts:
--------------------------------------------------------------------------------
1 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
2 |
3 | import { AppModule } from './app/app.module';
4 |
5 | platformBrowserDynamic().bootstrapModule(AppModule, {
6 | ngZoneEventCoalescing: true
7 | })
8 | .catch(err => console.error(err));
9 |
--------------------------------------------------------------------------------
/Angular/code/routing/src/app/about/about.component.ts:
--------------------------------------------------------------------------------
1 | import { Component } from '@angular/core';
2 |
3 | @Component({
4 | selector: 'app-about',
5 | templateUrl: './about.component.html',
6 | styleUrl: './about.component.css'
7 | })
8 | export class AboutComponent {
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/Angular/code/routing/src/app/login/login.component.ts:
--------------------------------------------------------------------------------
1 | import { Component } from '@angular/core';
2 |
3 | @Component({
4 | selector: 'app-login',
5 | templateUrl: './login.component.html',
6 | styleUrl: './login.component.css'
7 | })
8 | export class LoginComponent {
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/Angular/code/ang18/src/main.ts:
--------------------------------------------------------------------------------
1 | import { bootstrapApplication } from '@angular/platform-browser';
2 | import { appConfig } from './app/app.config';
3 | import { AppComponent } from './app/app.component';
4 |
5 | bootstrapApplication(AppComponent, appConfig)
6 | .catch((err) => console.error(err));
7 |
--------------------------------------------------------------------------------
/Angular/code/profile/src/app/app.component.ts:
--------------------------------------------------------------------------------
1 | import { Component } from '@angular/core';
2 |
3 | @Component({
4 | selector: 'app-root',
5 | templateUrl: './app.component.html',
6 | styleUrl: './app.component.css'
7 | })
8 | export class AppComponent {
9 | title = 'profile';
10 | }
11 |
--------------------------------------------------------------------------------
/Angular/code/routing/src/app/app.component.ts:
--------------------------------------------------------------------------------
1 | import { Component } from '@angular/core';
2 |
3 | @Component({
4 | selector: 'app-root',
5 | templateUrl: './app.component.html',
6 | styleUrl: './app.component.css'
7 | })
8 | export class AppComponent {
9 | title = 'routing';
10 | }
11 |
--------------------------------------------------------------------------------
/Angular/code/routing/src/app/footer/footer.component.ts:
--------------------------------------------------------------------------------
1 | import { Component } from '@angular/core';
2 |
3 | @Component({
4 | selector: 'app-footer',
5 | templateUrl: './footer.component.html',
6 | styleUrl: './footer.component.css'
7 | })
8 | export class FooterComponent {
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/Angular/code/routing/src/app/header/header.component.ts:
--------------------------------------------------------------------------------
1 | import { Component } from '@angular/core';
2 |
3 | @Component({
4 | selector: 'app-header',
5 | templateUrl: './header.component.html',
6 | styleUrl: './header.component.css'
7 | })
8 | export class HeaderComponent {
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/CRUD/frontend/src/main.ts:
--------------------------------------------------------------------------------
1 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
2 |
3 | import { AppModule } from './app/app.module';
4 |
5 | platformBrowserDynamic().bootstrapModule(AppModule, {
6 | ngZoneEventCoalescing: true
7 | })
8 | .catch(err => console.error(err));
9 |
--------------------------------------------------------------------------------
/Main/src/app/not-found/not-found.component.ts:
--------------------------------------------------------------------------------
1 | import { Component } from '@angular/core';
2 |
3 | @Component({
4 | selector: 'app-not-found',
5 | templateUrl: './not-found.component.html',
6 | styleUrl: './not-found.component.css'
7 | })
8 | export class NotFoundComponent {
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/Angular/code/profile/src/main.ts:
--------------------------------------------------------------------------------
1 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
2 |
3 | import { AppModule } from './app/app.module';
4 |
5 | platformBrowserDynamic().bootstrapModule(AppModule, {
6 | ngZoneEventCoalescing: true
7 | })
8 | .catch(err => console.error(err));
9 |
--------------------------------------------------------------------------------
/Angular/code/routing/src/app/contact/contact.component.ts:
--------------------------------------------------------------------------------
1 | import { Component } from '@angular/core';
2 |
3 | @Component({
4 | selector: 'app-contact',
5 | templateUrl: './contact.component.html',
6 | styleUrl: './contact.component.css'
7 | })
8 | export class ContactComponent {
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/Angular/code/routing/src/app/project/project.component.ts:
--------------------------------------------------------------------------------
1 | import { Component } from '@angular/core';
2 |
3 | @Component({
4 | selector: 'app-project',
5 | templateUrl: './project.component.html',
6 | styleUrl: './project.component.css'
7 | })
8 | export class ProjectComponent {
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/Angular/code/routing/src/main.ts:
--------------------------------------------------------------------------------
1 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
2 |
3 | import { AppModule } from './app/app.module';
4 |
5 | platformBrowserDynamic().bootstrapModule(AppModule, {
6 | ngZoneEventCoalescing: true
7 | })
8 | .catch(err => console.error(err));
9 |
--------------------------------------------------------------------------------
/Angular/code/rxJSDemo/src/main.ts:
--------------------------------------------------------------------------------
1 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
2 |
3 | import { AppModule } from './app/app.module';
4 |
5 | platformBrowserDynamic().bootstrapModule(AppModule, {
6 | ngZoneEventCoalescing: true
7 | })
8 | .catch(err => console.error(err));
9 |
--------------------------------------------------------------------------------
/Angular/code/twoWay/src/main.ts:
--------------------------------------------------------------------------------
1 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
2 |
3 | import { AppModule } from './app/app.module';
4 |
5 | platformBrowserDynamic().bootstrapModule(AppModule, {
6 | ngZoneEventCoalescing: true
7 | })
8 | .catch(err => console.error(err));
9 |
--------------------------------------------------------------------------------
/TS/First/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | {{p.rating | starRating}}
7 | 8 |I'm books Parent Component
2 |{{bujji.c1}}
3 | 4 | 5 |The cost of apple is {{price}}
4 | 5 | 6 | 7 |Email:a@a.com
5 | 10 |Movies: {{m.move.name}},
9 |Height: {{pokemonDetails.height}}
10 |Weight:{{pokemonDetails.weight}}
11 |Year:{{m.Year}}
11 | 12 | 13 |or 8 |
9 | 10 | 11 |If You are not registered, click Here
13 |The square of {{b}} is {{b|square}}
3 |The power of {{b}} with 3 is {{b|power:3}}
4 | 5 |Congratulations, use code "PRASAD" to get 6 | {{a | percent:'1.0-2'}} discount excluding tax {{tax|number:'2.2-2'|percent:'2.2-2'}}
7 | 8 |{{dt | date:"dd/MM/YY HH:mm:SS"}}
14 |Price: {{p.price | currency:"INR"}}
16 | 17 |