├── Socket ├── logs │ └── error.log ├── README.md ├── .gitignore ├── tslint.json └── nodemon.json ├── NodeJs ├── Serenade │ ├── try-2 │ │ ├── README.md │ │ ├── .env │ │ ├── support.sh │ │ ├── .test.sh │ │ ├── views │ │ │ ├── layout.hbs │ │ │ └── auth │ │ │ │ ├── signin.hbs │ │ │ │ └── signup.hbs │ │ └── models.js │ ├── try-1 │ │ ├── views │ │ │ ├── 400.ejs │ │ │ ├── 404.ejs │ │ │ ├── 500.ejs │ │ │ └── layout.ejs │ │ ├── test │ │ │ ├── models │ │ │ │ ├── Cars.test.js │ │ │ │ ├── Accessories.test.js │ │ │ │ ├── Segment.test.js │ │ │ │ ├── Varient.test.js │ │ │ │ └── Manufacturer.test.js │ │ │ └── mocha.opts │ │ ├── .sailsrc │ │ ├── backend.png │ │ ├── full-1.png │ │ ├── full-2.png │ │ ├── required.png │ │ ├── config │ │ │ └── locales │ │ │ │ ├── en.json │ │ │ │ ├── de.json │ │ │ │ ├── es.json │ │ │ │ └── fr.json │ │ └── api │ │ │ └── models │ │ │ └── Segment.js │ └── promise │ │ ├── promise.js │ │ └── test.sh ├── MP Full Stack Devloper │ ├── APITest │ │ └── dummy.js │ ├── coveragefile.sh │ ├── API │ │ └── validToken.js │ ├── delete.sh │ ├── config.js │ ├── test.sh │ ├── middleware.js │ └── models │ │ ├── diseases.js │ │ └── user.js ├── MP_Node_Angular │ ├── angular │ │ ├── src │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ ├── login.png │ │ │ │ └── user.jpg │ │ │ ├── app │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── models │ │ │ │ │ ├── credentials.model.ts │ │ │ │ │ ├── users.ts │ │ │ │ │ ├── appointment.ts │ │ │ │ │ ├── loginResponse.ts │ │ │ │ │ └── patient.ts │ │ │ │ └── app.component.ts │ │ │ ├── environments │ │ │ │ └── environment.prod.ts │ │ │ ├── favicon.ico │ │ │ ├── styles.css │ │ │ ├── typings.d.ts │ │ │ └── tsconfig.app.json │ │ └── proxy.conf.json │ ├── nodejs │ │ ├── APITest │ │ │ └── dummy.js │ │ ├── coveragefile.sh │ │ ├── API │ │ │ └── validToken.js │ │ ├── delete.sh │ │ ├── config.js │ │ ├── test.sh │ │ ├── middleware.js │ │ └── models │ │ │ ├── diseases.js │ │ │ └── user.js │ ├── run.sh │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 2.png │ ├── 3.png │ ├── 4..png │ ├── 5..png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── test.sh │ ├── install.sh │ └── check.sh ├── Node Js Essentials │ ├── addition.js │ ├── timer2.js │ ├── mcq.pdf │ ├── timer1.js │ ├── README.md │ ├── sum-of-squares │ │ └── App.js │ ├── timer3.js │ ├── sum-of-multiples │ │ └── App.js │ ├── callback.js │ ├── events-working-with-files │ │ └── App.js │ ├── events-simple-http-module │ │ └── app.js │ ├── largest-prime-factor │ │ └── app.js │ ├── fibonacci-series │ │ └── fibonacci.js │ ├── pythagorean-triplets │ │ └── App.js │ └── events-http-module │ │ ├── sample.html │ │ └── app.js ├── Mini-Project │ └── node_modules │ │ ├── minimist │ │ ├── example │ │ │ └── parse.js │ │ ├── .travis.yml │ │ └── test │ │ │ ├── whitespace.js │ │ │ └── parse_modified.js │ │ └── .bin │ │ └── csv-parser.cmd └── Javascript Essentials │ ├── dom-create-drop-down-country-field │ └── index.js │ └── dom-user-registration │ └── index.js ├── Angular ├── Routing │ └── src │ │ ├── assets │ │ └── .gitkeep │ │ ├── environments │ │ └── environment.prod.ts │ │ ├── favicon.ico │ │ ├── styles.css │ │ ├── app │ │ ├── components │ │ │ ├── city │ │ │ │ ├── city.component.css │ │ │ │ └── city.component.html │ │ │ └── contacts │ │ │ │ ├── contacts.component.css │ │ │ │ └── contacts.component.html │ │ ├── models │ │ │ └── contacts.ts │ │ └── app.component.ts │ │ ├── tsconfig.app.json │ │ ├── testing │ │ └── global-jasmine.ts │ │ ├── tsconfig.spec.json │ │ └── index.html ├── library │ ├── src │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── 23358.png │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── models │ │ │ │ └── member.ts │ │ │ ├── app.component.ts │ │ │ ├── app.component.spec.ts │ │ │ └── components │ │ │ │ └── navbar │ │ │ │ └── navbar.component.ts │ │ ├── environments │ │ │ └── environment.prod.ts │ │ ├── favicon.ico │ │ ├── typings.d.ts │ │ └── tsconfig.app.json │ └── proxy.conf.json ├── oriana │ ├── src │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── app │ │ │ └── app.component.css │ │ ├── environments │ │ │ └── environment.prod.ts │ │ ├── favicon.ico │ │ └── tsconfig.app.json │ └── .editorconfig ├── invoice-manager │ ├── src │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── profiles.ts │ │ │ ├── billItem.ts │ │ │ ├── invoiceInfo.ts │ │ │ ├── companyName.ts │ │ │ ├── app.component.css │ │ │ └── app.component.ts │ │ ├── environments │ │ │ └── environment.prod.ts │ │ ├── tsconfig.app.json │ │ └── tsconfig.spec.json │ ├── README.md │ ├── e2e │ │ ├── src │ │ │ ├── app.po.ts │ │ │ └── app.e2e-spec.ts │ │ └── tsconfig.e2e.json │ └── .editorconfig └── angular2-building_blocks │ ├── activity-tracker │ └── app.component.css │ ├── property-binding │ ├── app.component.html │ └── app.component.ts │ ├── 2-Interpolation-app.component.ts │ ├── 1-MyFirstApp-app.component.ts │ ├── event-binding │ └── app.component.html │ └── two-way-data-binding │ └── app.component.html ├── Java Architecture Program ├── jms │ ├── .tester │ │ ├── score │ │ ├── src │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── application.properties │ │ ├── chromedriver │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ └── bin │ │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ ├── maven-wrapper.properties │ │ │ │ └── MavenWrapperDownloader.class │ │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── fresco │ │ │ │ └── apigateway │ │ │ │ ├── model │ │ │ │ ├── User.class │ │ │ │ └── UserPrincipal.class │ │ │ │ ├── repo │ │ │ │ └── UserRepository.class │ │ │ │ ├── ApiGatewayApplication.class │ │ │ │ ├── config │ │ │ │ └── AppSecurityConfig.class │ │ │ │ ├── controller │ │ │ │ ├── ApiController.class │ │ │ │ └── LoginController.class │ │ │ │ └── service │ │ │ │ ├── RegisterService.class │ │ │ │ └── MyUserDetailsService.class │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── fresco │ │ │ └── gateway │ │ │ └── ApiGateway │ │ │ └── ApiGatewayApplicationTests.class │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── bin │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ ├── maven-wrapper.properties │ │ │ │ └── MavenWrapperDownloader.class │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── fresco │ │ │ │ └── apigateway │ │ │ │ ├── model │ │ │ │ ├── User.class │ │ │ │ └── UserPrincipal.class │ │ │ │ ├── repo │ │ │ │ └── UserRepository.class │ │ │ │ ├── ApiGatewayApplication.class │ │ │ │ ├── service │ │ │ │ ├── RegisterService.class │ │ │ │ └── MyUserDetailsService.class │ │ │ │ ├── config │ │ │ │ └── AppSecurityConfig.class │ │ │ │ └── controller │ │ │ │ ├── ApiController.class │ │ │ │ └── LoginController.class │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── fresco │ │ │ └── gateway │ │ │ └── ApiGateway │ │ │ └── ApiGatewayApplicationTests.class │ └── src │ │ └── main │ │ └── resources │ │ └── static │ │ └── js │ │ └── repocode.js ├── db-management │ ├── grep │ ├── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.eclipse.wst.common.project.facet.core.xml │ ├── run.sh │ └── src │ │ └── main │ │ └── webapp │ │ └── Header.jsp ├── jsp │ ├── score │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── bin │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ ├── maven-wrapper.properties │ │ │ │ └── MavenWrapperDownloader.class │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── fresco │ │ │ │ └── apigateway │ │ │ │ ├── model │ │ │ │ ├── User.class │ │ │ │ └── UserPrincipal.class │ │ │ │ ├── repo │ │ │ │ └── UserRepository.class │ │ │ │ ├── ApiGatewayApplication.class │ │ │ │ ├── service │ │ │ │ ├── RegisterService.class │ │ │ │ └── MyUserDetailsService.class │ │ │ │ ├── config │ │ │ │ └── AppSecurityConfig.class │ │ │ │ └── controller │ │ │ │ ├── ApiController.class │ │ │ │ └── LoginController.class │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── fresco │ │ │ └── gateway │ │ │ └── ApiGateway │ │ │ └── ApiGatewayApplicationTests.class │ └── src │ │ └── main │ │ └── resources │ │ └── application.properties ├── api │ ├── uploads │ │ ├── 2-1code │ │ │ ├── mytext.txt │ │ │ └── sample.zip │ │ ├── mytext.txt │ │ ├── 1-1code │ │ │ ├── mytext.txt │ │ │ └── sample.zip │ │ └── sample.zip │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── bin │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ ├── maven-wrapper.properties │ │ │ │ └── MavenWrapperDownloader.class │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── fresco │ │ │ │ └── apigateway │ │ │ │ ├── model │ │ │ │ ├── User.class │ │ │ │ └── UserPrincipal.class │ │ │ │ ├── repo │ │ │ │ └── UserRepository.class │ │ │ │ ├── ApiGatewayApplication.class │ │ │ │ ├── service │ │ │ │ ├── RegisterService.class │ │ │ │ └── MyUserDetailsService.class │ │ │ │ ├── config │ │ │ │ └── AppSecurityConfig.class │ │ │ │ └── controller │ │ │ │ ├── ApiController.class │ │ │ │ └── LoginController.class │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── fresco │ │ │ └── gateway │ │ │ └── ApiGateway │ │ │ └── ApiGatewayApplicationTests.class │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── fresco │ │ │ └── codelab │ │ │ └── service │ │ │ ├── RegisterService.java │ │ │ └── DashboardService.java │ │ └── resources │ │ └── static │ │ └── js │ │ └── repocode.js ├── security │ ├── .score.sh │ └── ApiGateway │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.properties │ │ │ └── maven-wrapper.jar │ │ └── src │ │ └── main │ │ └── resources │ │ └── application.properties ├── file-handler │ ├── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.eclipse.wst.common.project.facet.core.xml │ └── run.sh ├── file-explorer │ ├── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ └── org.eclipse.wst.jsdt.ui.superType.container │ ├── WebContent │ │ └── META-INF │ │ │ └── MANIFEST.MF │ └── run.sh ├── logging │ └── CodeLab-Logging │ │ ├── uploads │ │ ├── 2-2code │ │ │ └── 2 │ │ │ │ └── outputfolder_2 │ │ │ │ ├── 3.txt │ │ │ │ ├── 7.txt │ │ │ │ ├── 4.txt │ │ │ │ ├── 8.txt │ │ │ │ ├── 5.txt │ │ │ │ ├── 6.txt │ │ │ │ ├── 9.txt │ │ │ │ ├── 10.txt │ │ │ │ └── 11.txt │ │ ├── 4-1code │ │ │ └── 2 │ │ │ │ └── outputfolder_2 │ │ │ │ ├── 3.txt │ │ │ │ ├── 7.txt │ │ │ │ ├── 4.txt │ │ │ │ ├── 8.txt │ │ │ │ ├── 5.txt │ │ │ │ ├── formatter.py │ │ │ │ ├── 6.txt │ │ │ │ ├── 9.txt │ │ │ │ ├── 10.txt │ │ │ │ └── 11.txt │ │ └── 2-1code │ │ │ └── 1 │ │ │ └── output_files_1 │ │ │ ├── 7.txt │ │ │ ├── 8.txt │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 4.txt │ │ │ ├── 3.txt │ │ │ ├── 6.txt │ │ │ ├── 10.txt │ │ │ └── 9.txt │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.properties │ │ │ └── maven-wrapper.jar │ │ ├── bin │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.properties │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── MavenWrapperDownloader.class │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── fresco │ │ │ │ └── apigateway │ │ │ │ ├── model │ │ │ │ ├── User.class │ │ │ │ └── UserPrincipal.class │ │ │ │ ├── repo │ │ │ │ └── UserRepository.class │ │ │ │ ├── ApiGatewayApplication.class │ │ │ │ ├── service │ │ │ │ ├── RegisterService.class │ │ │ │ └── MyUserDetailsService.class │ │ │ │ ├── config │ │ │ │ └── AppSecurityConfig.class │ │ │ │ └── controller │ │ │ │ ├── ApiController.class │ │ │ │ └── LoginController.class │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── fresco │ │ │ └── gateway │ │ │ └── ApiGateway │ │ │ └── ApiGatewayApplicationTests.class │ │ └── src │ │ └── main │ │ └── resources │ │ └── static │ │ └── js │ │ └── repocode.js ├── logging_fp │ └── untitled │ │ ├── .idea │ │ ├── .gitignore │ │ ├── description.html │ │ ├── project-template.xml │ │ ├── encodings.xml │ │ ├── vcs.xml │ │ └── modules.xml │ │ ├── out │ │ └── production │ │ │ └── untitled │ │ │ └── io │ │ │ └── csrohit │ │ │ └── Main.class │ │ └── src │ │ └── io │ │ └── csrohit │ │ └── Main.java └── db-design │ └── .mvn │ └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── wings1 └── T4 - Library Management │ ├── .attach_pid7305 │ ├── question.png │ └── src │ └── test │ └── java │ └── com │ └── example │ └── project │ └── LibraryManagementSystemApplicationTests.java ├── .gitignore ├── Digitate Unit Elective └── angular │ ├── testing │ ├── src │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── 23358.png │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── models │ │ │ │ └── member.ts │ │ │ └── app.component.ts │ │ ├── environments │ │ │ └── environment.prod.ts │ │ ├── favicon.ico │ │ ├── typings.d.ts │ │ └── tsconfig.app.json │ └── proxy.conf.json │ └── mini-project-angular │ ├── src │ ├── assets │ │ ├── .gitkeep │ │ ├── user.jpg │ │ └── login.png │ ├── app │ │ ├── app.component.css │ │ ├── services │ │ │ └── auth-guard.service.spec.ts │ │ ├── app.component.html │ │ ├── models │ │ │ ├── users.model.ts │ │ │ └── credentials.model.ts │ │ └── app.component.ts │ ├── environments │ │ └── environment.prod.ts │ ├── favicon.ico │ ├── typings.d.ts │ ├── tsconfig.app.json │ └── styles.css │ ├── .vs │ ├── ProjectSettings.json │ ├── slnx.sqlite │ └── mini-project-angular │ │ └── v16 │ │ └── .suo │ ├── .vscode │ └── settings.json │ ├── proxy.conf.json │ └── .editorconfig ├── Microservices ├── Construction │ └── Django- Web Framework │ │ ├── details │ │ ├── exercise3 │ │ │ └── __init__.py │ │ ├── webpoll │ │ │ ├── __init__.py │ │ │ ├── migrations │ │ │ │ └── __init__.py │ │ │ ├── apps.py │ │ │ ├── admin.py │ │ │ ├── templates │ │ │ │ └── webpoll │ │ │ │ │ └── question_detail.html │ │ │ └── urls.py │ │ └── .pydevproject │ │ ├── voting │ │ ├── exercise4 │ │ │ └── __init__.py │ │ ├── webpoll │ │ │ ├── __init__.py │ │ │ ├── migrations │ │ │ │ └── __init__.py │ │ │ ├── apps.py │ │ │ ├── admin.py │ │ │ └── templates │ │ │ │ └── webpoll │ │ │ │ └── result.html │ │ └── .pydevproject │ │ ├── basic-webpage │ │ ├── webpoll │ │ │ ├── __init__.py │ │ │ ├── migrations │ │ │ │ └── __init__.py │ │ │ ├── apps.py │ │ │ ├── views.py │ │ │ ├── urls.py │ │ │ ├── admin.py │ │ │ └── tests.py │ │ ├── exercise1 │ │ │ └── __init__.py │ │ └── .pydevproject │ │ ├── test-models │ │ ├── exercise6 │ │ │ └── __init__.py │ │ ├── webpoll │ │ │ ├── __init__.py │ │ │ ├── migrations │ │ │ │ └── __init__.py │ │ │ ├── apps.py │ │ │ └── admin.py │ │ └── .pydevproject │ │ ├── test-views │ │ ├── exercise7 │ │ │ └── __init__.py │ │ ├── webpoll │ │ │ ├── __init__.py │ │ │ ├── migrations │ │ │ │ └── __init__.py │ │ │ ├── apps.py │ │ │ └── admin.py │ │ └── .pydevproject │ │ └── getting-started │ │ ├── exercise2 │ │ └── __init__.py │ │ └── webpoll │ │ ├── __init__.py │ │ ├── migrations │ │ └── __init__.py │ │ ├── apps.py │ │ ├── admin.py │ │ └── urls.py ├── Spring Boot Framework │ └── application-properties │ │ └── application.properties └── Spring Cantabile │ ├── cantabile-rest[Spring-project-files] │ └── .mvn │ │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── full-stack-api │ ├── readme.md │ └── HospitalRepository.java │ └── cantabile-rest │ └── .idea │ └── vcs.xml ├── Java Full Stack Development with Angular specialization ├── angular │ ├── src │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── login.png │ │ │ └── user.jpg │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── services │ │ │ │ └── auth-guard.service.spec.ts │ │ │ ├── app.component.html │ │ │ ├── models │ │ │ │ ├── users.model.ts │ │ │ │ └── credentials.model.ts │ │ │ └── app.component.ts │ │ ├── environments │ │ │ └── environment.prod.ts │ │ ├── favicon.ico │ │ ├── proxy.conf.json │ │ └── styles.css │ ├── .vscode │ │ └── settings.json │ ├── .install.sh │ ├── e2e │ │ └── tsconfig.json │ └── tsconfig.app.json ├── hibernate │ ├── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── misc.xml │ │ └── modules.xml │ └── README.md ├── MP Struts 2 │ ├── .settings │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ ├── org.eclipse.wst.validation.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.eclipse.core.resources.prefs │ ├── src │ │ └── main │ │ │ ├── webapp │ │ │ ├── index.jsp │ │ │ └── welcome.jsp │ │ │ └── java │ │ │ └── com │ │ │ └── struts │ │ │ └── dao │ │ │ └── LoginDAO.java │ └── imgs │ │ ├── Booksjsp.png │ │ ├── loginjsp.png │ │ ├── updatejsp.png │ │ └── AddBookjsp.png ├── MP Java Springboot Angular Full Stack Application │ ├── Angular │ │ ├── src │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ ├── login.png │ │ │ │ └── user.jpg │ │ │ ├── app │ │ │ │ ├── app.component.css │ │ │ │ ├── models │ │ │ │ │ ├── disease.ts │ │ │ │ │ ├── loginResponse.ts │ │ │ │ │ └── credentials.model.ts │ │ │ │ └── app.component.html │ │ │ ├── environments │ │ │ │ └── environment.prod.ts │ │ │ ├── favicon.ico │ │ │ └── proxy.conf.json │ │ ├── .score.sh │ │ ├── .install.sh │ │ ├── e2e │ │ │ └── tsconfig.json │ │ └── tsconfig.app.json │ ├── test.sh │ ├── run.sh │ ├── imgs │ │ ├── vap2.png │ │ ├── form 1.png │ │ ├── form2.png │ │ ├── form3.png │ │ ├── form4.png │ │ ├── header.png │ │ ├── reqapp.png │ │ ├── scdapp.png │ │ ├── book app.png │ │ ├── profile 2.png │ │ ├── profile.png │ │ ├── sognup1.png │ │ ├── login err 1.png │ │ ├── login err 3.png │ │ ├── login err 4.png │ │ ├── viewallpat.png │ │ ├── edit profile.png │ │ └── no rec found.png │ ├── .idea │ │ └── vcs.xml │ ├── HealthCareService │ │ └── .mvn │ │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ └── score.sh ├── jms │ └── application.properties └── mysql │ └── solution.sql ├── Spring └── Spring Saga │ ├── SpringSagaJMS │ ├── src │ │ └── main │ │ │ └── resources │ │ │ └── application.properties │ └── .mvn │ │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── question.png │ ├── OrderService │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── fresco │ │ │ │ └── saga │ │ │ │ ├── services │ │ │ │ ├── OrderService.java │ │ │ │ └── JmsListenerService.java │ │ │ │ ├── models │ │ │ │ └── OrderStatus.java │ │ │ │ └── repo │ │ │ │ └── OrderRepository.java │ │ │ └── resources │ │ │ └── application.properties │ └── .mvn │ │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ └── PaymentService │ ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── fresco │ │ │ └── saga │ │ │ ├── services │ │ │ ├── PaymentService.java │ │ │ └── JmsListenerService.java │ │ │ └── models │ │ │ └── PaymentStatus.java │ │ └── resources │ │ └── application.properties │ └── .mvn │ └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── Modern Web Development ├── MV Framework │ └── news-application │ │ ├── src │ │ ├── app │ │ │ ├── components │ │ │ │ ├── news │ │ │ │ │ ├── news.component.css │ │ │ │ │ ├── news.component.html │ │ │ │ │ └── news-item │ │ │ │ │ │ └── news-item.component.css │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ └── navbar.component.html │ │ │ │ ├── header │ │ │ │ │ ├── header.component.css │ │ │ │ │ └── header.component.html │ │ │ │ └── sections │ │ │ │ │ └── sections.component.html │ │ │ ├── store │ │ │ │ └── reducers │ │ │ │ │ └── selector.ts │ │ │ ├── app.component.css │ │ │ └── app.component.html │ │ ├── environments │ │ │ └── environment.prod.ts │ │ └── assets │ │ │ └── images │ │ │ └── logo.png │ │ ├── images │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── 4.png │ │ ├── bs-config.json │ │ └── bs-config.cli.json ├── AngularJs1.x Directives │ ├── sort-search │ │ ├── .gtest.sh │ │ └── app │ │ │ ├── favicon.ico │ │ │ └── img │ │ │ ├── cycle.jpg │ │ │ ├── shirt.jpg │ │ │ ├── shoes.jpg │ │ │ ├── greyCart.png │ │ │ ├── orangeCart.png │ │ │ ├── dummy_product.jpg │ │ │ ├── empty-shopping-cart.png │ │ │ ├── empty-shopping-cart.png.zip │ │ │ └── enabled-shopping-cart.png │ ├── form-validation │ │ ├── .gtest.sh │ │ └── app │ │ │ ├── favicon.ico │ │ │ └── img │ │ │ ├── cycle.jpg │ │ │ ├── shirt.jpg │ │ │ ├── shoes.jpg │ │ │ ├── greyCart.png │ │ │ ├── orangeCart.png │ │ │ ├── dummy_product.jpg │ │ │ ├── empty-shopping-cart.png │ │ │ ├── enabled-shopping-cart.png │ │ │ └── empty-shopping-cart.png.zip │ ├── display-product-images │ │ ├── .gtest.sh │ │ └── app │ │ │ ├── favicon.ico │ │ │ └── img │ │ │ ├── cycle.jpg │ │ │ ├── shirt.jpg │ │ │ ├── shoes.jpg │ │ │ ├── greyCart.png │ │ │ ├── orangeCart.png │ │ │ ├── dummy_product.jpg │ │ │ ├── empty-shopping-cart.png │ │ │ ├── enabled-shopping-cart.png │ │ │ └── empty-shopping-cart.png.zip │ ├── odd-even │ │ └── app │ │ │ ├── favicon.ico │ │ │ └── index.js │ ├── add-to-cart │ │ └── app │ │ │ ├── favicon.ico │ │ │ └── img │ │ │ ├── cycle.jpg │ │ │ ├── shirt.jpg │ │ │ ├── shoes.jpg │ │ │ ├── greyCart.png │ │ │ ├── orangeCart.png │ │ │ └── dummy_product.jpg │ ├── display-all-products │ │ └── app │ │ │ ├── favicon.ico │ │ │ └── img │ │ │ ├── cycle.jpg │ │ │ ├── shirt.jpg │ │ │ ├── shoes.jpg │ │ │ ├── greyCart.png │ │ │ ├── orangeCart.png │ │ │ └── dummy_product.jpg │ └── first_name-last_name │ │ └── app │ │ ├── favicon.ico │ │ └── index.js ├── Build Systems │ └── workflow-automation-gulp.pdf └── HTML5 │ ├── Footer.txt │ └── Header.txt ├── Data Science ├── CNN │ └── 1.png ├── Data Scientist's Toolbox │ ├── Python Pandas │ │ ├── Data Aggregation │ │ │ ├── requirements.txt │ │ │ ├── .score.sh.gpg │ │ │ └── .score1.sh │ │ ├── Data Merging 1 │ │ │ ├── requirements.txt │ │ │ ├── .score.sh.gpg │ │ │ └── .score1.sh │ │ ├── Data Merging 2 │ │ │ ├── requirements.txt │ │ │ ├── .score.sh.gpg │ │ │ ├── .score1.sh │ │ │ └── .testscript.py │ │ ├── Data Structures │ │ │ ├── requirements.txt │ │ │ ├── output.txt │ │ │ ├── .score.sh.gpg │ │ │ └── .score1.sh │ │ ├── Indexing Dataframes │ │ │ ├── requirements.txt │ │ │ ├── .score.sh.gpg │ │ │ ├── .score1.sh │ │ │ ├── .testscript.py │ │ │ └── output.txt │ │ ├── Working with CSV files │ │ │ ├── requirements.txt │ │ │ ├── classA.csv │ │ │ ├── .score.sh.gpg │ │ │ ├── .score1.sh │ │ │ ├── .testscript.py │ │ │ └── classB.csv │ │ └── Accessing Pandas Data Structures │ │ │ ├── requirements.txt │ │ │ ├── classA.csv │ │ │ ├── .score1.sh │ │ │ ├── .score.sh.gpg │ │ │ └── classB.csv │ └── Numpy │ │ ├── array-manipulation3.py │ │ ├── array-manipulation1.py │ │ └── array-manipulation2.py ├── Image Classification │ └── image-classification.pdf ├── Data Visualisation │ ├── Exploring D3 │ │ ├── tree │ │ │ └── app │ │ │ │ ├── favicon.ico │ │ │ │ └── index.html │ │ └── Pie Charts │ │ │ └── app │ │ │ ├── favicon.ico │ │ │ ├── api │ │ │ └── name.json │ │ │ └── index.html │ └── Must Know D3 │ │ ├── Axes │ │ └── app │ │ │ ├── favicon.ico │ │ │ └── index.html │ │ ├── Paths │ │ └── app │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ └── api │ │ │ └── name.json │ │ ├── Static Charts │ │ └── app │ │ │ ├── favicon.ico │ │ │ └── index.js │ │ └── Tasks in D3 │ │ └── app │ │ ├── favicon.ico │ │ └── index.js ├── Structured Data Classification │ └── structured-data-classification.pdf └── Unstructured Data Classification │ └── unstruxtured-data-classification.pdf ├── MP Java Complete Beginner ├── abstract-class │ └── project-files │ │ ├── in.txt │ │ ├── .idea │ │ ├── .gitignore │ │ ├── description.html │ │ ├── project-template.xml │ │ ├── encodings.xml │ │ ├── vcs.xml │ │ └── modules.xml │ │ └── out │ │ └── production │ │ └── project-files │ │ └── io │ │ └── csrohit │ │ ├── Aided.class │ │ ├── Main.class │ │ ├── Student.class │ │ └── SelfFinance.class └── Arraylist │ └── project-files │ └── .idea │ ├── .gitignore │ ├── description.html │ ├── project-template.xml │ ├── encodings.xml │ ├── vcs.xml │ └── modules.xml ├── Digital Foundation └── story-telling.xlsx ├── README.md └── Java Developer Curriculum └── jdbc-mini-project ├── db.sql └── Q2.sql /Socket/logs/error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NodeJs/Serenade/try-2/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/Routing/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/library/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/oriana/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NodeJs/Serenade/try-1/views/400.ejs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NodeJs/Serenade/try-1/views/404.ejs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NodeJs/Serenade/try-1/views/500.ejs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NodeJs/Serenade/try-1/views/layout.ejs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Socket/README.md: -------------------------------------------------------------------------------- 1 | # socket-fresco 2 | -------------------------------------------------------------------------------- /Angular/invoice-manager/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/library/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/oriana/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java Architecture Program/jms/.tester/score: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java Architecture Program/db-management/grep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NodeJs/MP Full Stack Devloper/APITest/dummy.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NodeJs/Serenade/try-1/test/models/Cars.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NodeJs/Serenade/try-2/.env: -------------------------------------------------------------------------------- 1 | NODE_ENV='development' -------------------------------------------------------------------------------- /wings1/T4 - Library Management/.attach_pid7305: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Angular/package-lock.json 2 | */data/* 3 | -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NodeJs/Serenade/try-1/test/models/Accessories.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NodeJs/Serenade/try-1/test/models/Segment.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NodeJs/Serenade/try-1/test/models/Varient.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Socket/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .vscode -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/testing/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java Architecture Program/jsp/score: -------------------------------------------------------------------------------- 1 | sample.txtoAHXfhR8g7 -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/angular/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NodeJs/Serenade/try-1/test/models/Manufacturer.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/nodejs/APITest/dummy.js: -------------------------------------------------------------------------------- 1 | /*dummy file*/ -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/testing/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java Architecture Program/api/uploads/2-1code/mytext.txt: -------------------------------------------------------------------------------- 1 | changed text -------------------------------------------------------------------------------- /Java Architecture Program/api/uploads/mytext.txt: -------------------------------------------------------------------------------- 1 | content of text file -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/mini-project-angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java Architecture Program/security/.score.sh: -------------------------------------------------------------------------------- 1 | python3 .tester.py 2 | 3 | -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/mini-project-angular/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java Architecture Program/api/uploads/1-1code/mytext.txt: -------------------------------------------------------------------------------- 1 | content of text file -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/details/exercise3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/details/webpoll/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/voting/exercise4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/voting/webpoll/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java Architecture Program/jms/.tester/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/hibernate/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/basic-webpage/webpoll/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/test-models/exercise6/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/test-models/webpoll/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/test-views/exercise7/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/test-views/webpoll/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/basic-webpage/exercise1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/details/webpoll/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/getting-started/exercise2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/getting-started/webpoll/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/voting/webpoll/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java Architecture Program/file-handler/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/angular/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/basic-webpage/webpoll/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/test-models/webpoll/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/test-views/webpoll/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/angular/src/app/app.component.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NodeJs/Serenade/try-1/.sailsrc: -------------------------------------------------------------------------------- 1 | { 2 | "generators": { 3 | "modules": {} 4 | } 5 | } -------------------------------------------------------------------------------- /Spring/Spring Saga/SpringSagaJMS/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8085 -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/mini-project-angular/src/app/services/auth-guard.service.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java Architecture Program/db-management/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Java Architecture Program/file-explorer/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/2-2code/2/outputfolder_2/3.txt: -------------------------------------------------------------------------------- 1 | 8618 2 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/2-2code/2/outputfolder_2/7.txt: -------------------------------------------------------------------------------- 1 | 38 2 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/4-1code/2/outputfolder_2/3.txt: -------------------------------------------------------------------------------- 1 | 8618 2 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/4-1code/2/outputfolder_2/7.txt: -------------------------------------------------------------------------------- 1 | 38 2 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/getting-started/webpoll/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modern Web Development/MV Framework/news-application/src/app/components/news/news.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/invoice-manager/src/app/app.component.html: -------------------------------------------------------------------------------- 1 |

INVOICE

2 | 3 | -------------------------------------------------------------------------------- /Angular/library/src/app/app.component.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Data Science/CNN/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Data Science/CNN/1.png -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/2-2code/2/outputfolder_2/4.txt: -------------------------------------------------------------------------------- 1 | China 51 2 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/2-2code/2/outputfolder_2/8.txt: -------------------------------------------------------------------------------- 1 | 2012 6 2 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/4-1code/2/outputfolder_2/4.txt: -------------------------------------------------------------------------------- 1 | China 51 2 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/4-1code/2/outputfolder_2/8.txt: -------------------------------------------------------------------------------- 1 | 2012 6 2 | -------------------------------------------------------------------------------- /Modern Web Development/MV Framework/news-application/src/app/components/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NodeJs/MP Full Stack Devloper/coveragefile.sh: -------------------------------------------------------------------------------- 1 | npm test 2 | npm run-script coverage 3 | node score.js -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/nodejs/coveragefile.sh: -------------------------------------------------------------------------------- 1 | npm test 2 | npm run-script coverage 3 | node score.js -------------------------------------------------------------------------------- /NodeJs/Node Js Essentials/addition.js: -------------------------------------------------------------------------------- 1 | console.log(parseInt(process.argv[2])+parseInt(process.argv[3])); -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/2-1code/1/output_files_1/7.txt: -------------------------------------------------------------------------------- 1 | United States 2 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/2-1code/1/output_files_1/8.txt: -------------------------------------------------------------------------------- 1 | changed text 2 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/2-2code/2/outputfolder_2/5.txt: -------------------------------------------------------------------------------- 1 | United States 2 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/4-1code/2/outputfolder_2/5.txt: -------------------------------------------------------------------------------- 1 | United States 2 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/4-1code/2/outputfolder_2/formatter.py: -------------------------------------------------------------------------------- 1 | sssds 2 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/angular/src/app/services/auth-guard.service.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microservices/Spring Boot Framework/application-properties/application.properties: -------------------------------------------------------------------------------- 1 | fresco-course = Spring Boot -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/run.sh: -------------------------------------------------------------------------------- 1 | cd nodejs/ 2 | node server.js & 3 | cd ../ 4 | cd angular/ 5 | npm start 6 | -------------------------------------------------------------------------------- /Angular/invoice-manager/src/app/profiles.ts: -------------------------------------------------------------------------------- 1 | export class profile{ 2 | text: string; 3 | value: string; 4 | } -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/2-2code/2/outputfolder_2/6.txt: -------------------------------------------------------------------------------- 1 | United States 1312 2 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/4-1code/2/outputfolder_2/6.txt: -------------------------------------------------------------------------------- 1 | United States 1312 2 | -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/MP_Node_Angular/1.png -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/MP_Node_Angular/10.png -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/MP_Node_Angular/11.png -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/MP_Node_Angular/12.png -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/MP_Node_Angular/13.png -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/MP_Node_Angular/2.png -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/MP_Node_Angular/3.png -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/4..png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/MP_Node_Angular/4..png -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/5..png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/MP_Node_Angular/5..png -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/MP_Node_Angular/6.png -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/MP_Node_Angular/7.png -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/MP_Node_Angular/8.png -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/MP_Node_Angular/9.png -------------------------------------------------------------------------------- /Angular/Routing/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Angular/Routing/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Angular/Routing/src/favicon.ico -------------------------------------------------------------------------------- /Angular/Routing/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Angular/library/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Angular/library/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Angular/library/src/favicon.ico -------------------------------------------------------------------------------- /Angular/oriana/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Angular/oriana/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Angular/oriana/src/favicon.ico -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/mini-project-angular/src/app/app.component.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/2-1code/1/output_files_1/1.txt: -------------------------------------------------------------------------------- 1 | { "Total Medals" : 121 } 2 | -------------------------------------------------------------------------------- /NodeJs/Node Js Essentials/timer2.js: -------------------------------------------------------------------------------- 1 | function print(){ 2 | console.log("TCS"); 3 | } 4 | setTimeout(print, 2000); -------------------------------------------------------------------------------- /Spring/Spring Saga/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Spring/Spring Saga/question.png -------------------------------------------------------------------------------- /Angular/invoice-manager/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/mini-project-angular/.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /Java Architecture Program/file-explorer/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/2-1code/1/output_files_1/2.txt: -------------------------------------------------------------------------------- 1 | { "teen_athelets" : 505 } 2 | 3 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/2-1code/1/output_files_1/4.txt: -------------------------------------------------------------------------------- 1 | "Athlete" : "Peter Thomsen" 2 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/2-2code/2/outputfolder_2/9.txt: -------------------------------------------------------------------------------- 1 | United States 2008 317 2 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/4-1code/2/outputfolder_2/9.txt: -------------------------------------------------------------------------------- 1 | United States 2008 317 2 | -------------------------------------------------------------------------------- /Java Architecture Program/logging_fp/untitled/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Struts 2/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /MP Java Complete Beginner/abstract-class/project-files/in.txt: -------------------------------------------------------------------------------- 1 | 100 5,100 5,100 5|0,100,5 2 | 100 5,100 5,53 5,76 3|0,100,5 -------------------------------------------------------------------------------- /NodeJs/MP Full Stack Devloper/API/validToken.js: -------------------------------------------------------------------------------- 1 | module.exports=function(req, res){ 2 | res.json({success:true}); 3 | } -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/nodejs/API/validToken.js: -------------------------------------------------------------------------------- 1 | module.exports=function(req, res){ 2 | res.json({success:true}); 3 | } -------------------------------------------------------------------------------- /NodeJs/Node Js Essentials/mcq.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/Node Js Essentials/mcq.pdf -------------------------------------------------------------------------------- /NodeJs/Node Js Essentials/timer1.js: -------------------------------------------------------------------------------- 1 | function print(){ 2 | console.log("TCS"); 3 | } 4 | 5 | setInterval(print, 5000); -------------------------------------------------------------------------------- /NodeJs/Serenade/try-1/backend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/Serenade/try-1/backend.png -------------------------------------------------------------------------------- /NodeJs/Serenade/try-1/full-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/Serenade/try-1/full-1.png -------------------------------------------------------------------------------- /NodeJs/Serenade/try-1/full-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/Serenade/try-1/full-2.png -------------------------------------------------------------------------------- /NodeJs/Serenade/try-1/required.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/Serenade/try-1/required.png -------------------------------------------------------------------------------- /Angular/library/src/assets/23358.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Angular/library/src/assets/23358.png -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/testing/src/app/app.component.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/angular/src/app/app.component.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MP Java Complete Beginner/Arraylist/project-files/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /NodeJs/MP Full Stack Devloper/delete.sh: -------------------------------------------------------------------------------- 1 | sudo service mongod start 2 | mongo --eval 'db.users.remove({})' PatientManagement 3 | -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/nodejs/delete.sh: -------------------------------------------------------------------------------- 1 | sudo service mongod start 2 | mongo --eval 'db.users.remove({})' PatientManagement 3 | -------------------------------------------------------------------------------- /NodeJs/Node Js Essentials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/Node Js Essentials/README.md -------------------------------------------------------------------------------- /NodeJs/Serenade/try-1/config/locales/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "Welcome": "Welcome", 3 | "A brand new app.": "A brand new app." 4 | } 5 | -------------------------------------------------------------------------------- /Digital Foundation/story-telling.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Digital Foundation/story-telling.xlsx -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/Angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MP Java Complete Beginner/abstract-class/project-files/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/test.sh: -------------------------------------------------------------------------------- 1 | cd angular/ 2 | npm test 3 | cd ../nodejs/ 4 | bash test.sh 5 | npm run lint 6 | npm run test 7 | 8 | -------------------------------------------------------------------------------- /NodeJs/Serenade/try-1/config/locales/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Welcome": "Willkommen", 3 | "A brand new app.": "Eine neue App." 4 | } 5 | -------------------------------------------------------------------------------- /Angular/angular2-building_blocks/activity-tracker/app.component.css: -------------------------------------------------------------------------------- 1 | .checked{ 2 | color: red; 3 | text-decoration: line-through; 4 | } -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Data Aggregation/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.16.5 2 | pandas==0.23.4 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Data Merging 1/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.16.5 2 | pandas==0.23.4 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Data Merging 2/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.16.5 2 | pandas==0.23.4 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Data Structures/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.16.5 2 | pandas==0.23.4 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/mini-project-angular/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "typescript.tsdk": "node_modules\\typescript\\lib" 3 | } -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/testing/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Java Architecture Program/db-management/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Java Architecture Program/file-handler/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /NodeJs/Mini-Project/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.log(argv); 3 | -------------------------------------------------------------------------------- /NodeJs/Serenade/try-1/config/locales/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "Welcome": "Bienvenido", 3 | "A brand new app.": "Una nueva aplicación." 4 | } 5 | -------------------------------------------------------------------------------- /NodeJs/Serenade/try-2/support.sh: -------------------------------------------------------------------------------- 1 | npm run-script coverage > /dev/null 2>&1 & 2 | sleep 2 3 | sudo kill -9 $! 4 | npm run-script coverage -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Indexing Dataframes/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.16.5 2 | pandas==0.23.4 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Working with CSV files/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.16.5 2 | pandas==0.23.4 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Java Architecture Program/db-management/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Java Architecture Program/file-explorer/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Java Architecture Program/file-handler/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/Angular/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/Angular/src/app/models/disease.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NodeJs/MP Full Stack Devloper/config.js: -------------------------------------------------------------------------------- 1 | module.exports={ 2 | dburl: 'mongodb://127.0.0.1:27017', 3 | secret: 'shhhthisissecret' 4 | } 5 | -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/nodejs/config.js: -------------------------------------------------------------------------------- 1 | module.exports={ 2 | dburl: 'mongodb://127.0.0.1:27017', 3 | secret: 'shhhthisissecret' 4 | } 5 | -------------------------------------------------------------------------------- /wings1/T4 - Library Management/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/wings1/T4 - Library Management/question.png -------------------------------------------------------------------------------- /Angular/Routing/src/app/components/city/city.component.css: -------------------------------------------------------------------------------- 1 | .list { 2 | margin-left: 15px; 3 | } 4 | 5 | .list b { 6 | margin: 5px 0px; 7 | } -------------------------------------------------------------------------------- /Angular/invoice-manager/src/app/billItem.ts: -------------------------------------------------------------------------------- 1 | export class bill{ 2 | item: string; 3 | task: string; 4 | hours: number; 5 | rate: number; 6 | } -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/angular/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/MP_Node_Angular/angular/src/favicon.ico -------------------------------------------------------------------------------- /NodeJs/Serenade/try-1/config/locales/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "Welcome": "Bienvenue", 3 | "A brand new app.": "Une toute nouvelle application." 4 | } 5 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Accessing Pandas Data Structures/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.16.5 2 | pandas==0.23.4 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/mini-project-angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Java Architecture Program/api/uploads/sample.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/api/uploads/sample.zip -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/angular/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "typescript.tsdk": "node_modules\\typescript\\lib" 3 | } -------------------------------------------------------------------------------- /Modern Web Development/MV Framework/news-application/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Angular/Routing/src/app/components/contacts/contacts.component.css: -------------------------------------------------------------------------------- 1 | .list { 2 | margin-left: 15px; 3 | } 4 | 5 | .list b { 6 | margin: 5px 0px; 7 | } -------------------------------------------------------------------------------- /Angular/angular2-building_blocks/property-binding/app.component.html: -------------------------------------------------------------------------------- 1 | 2 | {{message}} -------------------------------------------------------------------------------- /Angular/invoice-manager/src/app/invoiceInfo.ts: -------------------------------------------------------------------------------- 1 | export class invoice{ 2 | number: number; 3 | date: Date; 4 | dueDate: Date; 5 | currency: string; 6 | } -------------------------------------------------------------------------------- /Angular/library/src/typings.d.ts: -------------------------------------------------------------------------------- 1 | /* SystemJS module definition */ 2 | declare var module: NodeModule; 3 | interface NodeModule { 4 | id: string; 5 | } 6 | -------------------------------------------------------------------------------- /Java Architecture Program/jms/.tester/chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/.tester/chromedriver -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/angular/src/assets/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/MP_Node_Angular/angular/src/assets/login.png -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/angular/src/assets/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/NodeJs/MP_Node_Angular/angular/src/assets/user.jpg -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/angular/src/styles.css: -------------------------------------------------------------------------------- 1 | html,body,.container{ 2 | width: 100%; 3 | height: 100%; 4 | margin: 0; 5 | padding: 0; 6 | } -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/install.sh: -------------------------------------------------------------------------------- 1 | cd angular/ 2 | npm install 3 | cd ../nodejs/ 4 | npm install 5 | bash dbinstall.sh 6 | echo "all installations done" 7 | -------------------------------------------------------------------------------- /NodeJs/Serenade/try-1/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --require chai 2 | --reporter spec 3 | --recursive 4 | --ui bdd 5 | --globals sails 6 | --timeout 5s 7 | --slow 2000 8 | -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/testing/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Digitate Unit Elective/angular/testing/src/favicon.ico -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Angular/invoice-manager/README.md: -------------------------------------------------------------------------------- 1 | # angular7-invoicer 2 | 3 | This is a simple dashboard implementation using Angular 7 for a invoicer built for internal evaluation. -------------------------------------------------------------------------------- /Java Architecture Program/api/uploads/1-1code/sample.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/api/uploads/1-1code/sample.zip -------------------------------------------------------------------------------- /Java Architecture Program/api/uploads/2-1code/sample.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/api/uploads/2-1code/sample.zip -------------------------------------------------------------------------------- /Java Architecture Program/logging_fp/untitled/.idea/description.html: -------------------------------------------------------------------------------- 1 | Simple Java application that includes a class with main() method -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Struts 2/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Struts 2/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Hello World!

4 | 5 | 6 | -------------------------------------------------------------------------------- /NodeJs/Serenade/try-2/.test.sh: -------------------------------------------------------------------------------- 1 | npm run-script coverage > /dev/null 2>&1 & 2 | sleep 2 3 | sudo kill -9 $! 4 | npm run-script coverage 5 | node score.js 6 | cat unit.xml -------------------------------------------------------------------------------- /Data Science/Image Classification/image-classification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Data Science/Image Classification/image-classification.pdf -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/testing/src/assets/23358.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Digitate Unit Elective/angular/testing/src/assets/23358.png -------------------------------------------------------------------------------- /Java Architecture Program/logging_fp/untitled/.idea/project-template.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Struts 2/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /MP Java Complete Beginner/Arraylist/project-files/.idea/description.html: -------------------------------------------------------------------------------- 1 | Simple Java application that includes a class with main() method -------------------------------------------------------------------------------- /MP Java Complete Beginner/Arraylist/project-files/.idea/project-template.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/sort-search/.gtest.sh: -------------------------------------------------------------------------------- 1 | timeout 15s grunt concurrent; 2 | 3 | if [ $? -ne 124 ] ; then 4 | grunt protractor 5 | fi 6 | -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/angular/src/typings.d.ts: -------------------------------------------------------------------------------- 1 | /* SystemJS module definition */ 2 | declare var module: NodeModule; 3 | interface NodeModule { 4 | id: string; 5 | } 6 | -------------------------------------------------------------------------------- /Spring/Spring Saga/OrderService/src/main/java/com/fresco/saga/services/OrderService.java: -------------------------------------------------------------------------------- 1 | package com.fresco.saga.services; 2 | 3 | public class OrderService { 4 | } 5 | -------------------------------------------------------------------------------- /Java Architecture Program/api/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/api/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Java Architecture Program/db-management/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Java Architecture Program/file-handler/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Java Architecture Program/jms/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Java Architecture Program/jsp/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jsp/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/2-2code/2/outputfolder_2/10.txt: -------------------------------------------------------------------------------- 1 | India 2004 1 2 | India 2000 1 3 | India 2008 3 4 | India 2012 6 5 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/4-1code/2/outputfolder_2/10.txt: -------------------------------------------------------------------------------- 1 | India 2004 1 2 | India 2000 1 3 | India 2008 3 4 | India 2012 6 5 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/Angular/src/app/app.component.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MP Java Complete Beginner/abstract-class/project-files/.idea/description.html: -------------------------------------------------------------------------------- 1 | Simple Java application that includes a class with main() method -------------------------------------------------------------------------------- /MP Java Complete Beginner/abstract-class/project-files/.idea/project-template.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/form-validation/.gtest.sh: -------------------------------------------------------------------------------- 1 | timeout 15s grunt concurrent; 2 | 3 | if [ $? -ne 124 ] ; then 4 | grunt protractor 5 | fi 6 | -------------------------------------------------------------------------------- /Spring/Spring Saga/PaymentService/src/main/java/com/fresco/saga/services/PaymentService.java: -------------------------------------------------------------------------------- 1 | package com.fresco.saga.services; 2 | 3 | public class PaymentService { 4 | } 5 | -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/testing/src/typings.d.ts: -------------------------------------------------------------------------------- 1 | /* SystemJS module definition */ 2 | declare var module: NodeModule; 3 | interface NodeModule { 4 | id: string; 5 | } 6 | -------------------------------------------------------------------------------- /Java Architecture Program/api/bin/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/api/bin/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Java Architecture Program/jms/bin/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/bin/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Java Architecture Program/jsp/bin/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jsp/bin/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/details/webpoll/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class WebpollConfig(AppConfig): 5 | name = 'webpoll' 6 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/voting/webpoll/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class WebpollConfig(AppConfig): 5 | name = 'webpoll' 6 | -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/display-product-images/.gtest.sh: -------------------------------------------------------------------------------- 1 | timeout 15s grunt concurrent; 2 | 3 | if [ $? -ne 124 ] ; then 4 | grunt protractor 5 | fi 6 | -------------------------------------------------------------------------------- /Spring/Spring Saga/OrderService/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Spring/Spring Saga/OrderService/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Spring/Spring Saga/OrderService/src/main/java/com/fresco/saga/services/JmsListenerService.java: -------------------------------------------------------------------------------- 1 | package com.fresco.saga.services; 2 | 3 | public class JmsListenerService { 4 | } 5 | -------------------------------------------------------------------------------- /Spring/Spring Saga/PaymentService/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Spring/Spring Saga/PaymentService/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Spring/Spring Saga/SpringSagaJMS/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Spring/Spring Saga/SpringSagaJMS/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Angular/invoice-manager/src/app/companyName.ts: -------------------------------------------------------------------------------- 1 | export class company{ 2 | name: string; 3 | address: string; 4 | email: string; 5 | contact: number; 6 | privileged: boolean; 7 | } -------------------------------------------------------------------------------- /Data Science/Data Visualisation/Exploring D3/tree/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Data Science/Data Visualisation/Exploring D3/tree/app/favicon.ico -------------------------------------------------------------------------------- /Data Science/Data Visualisation/Must Know D3/Axes/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Data Science/Data Visualisation/Must Know D3/Axes/app/favicon.ico -------------------------------------------------------------------------------- /Data Science/Data Visualisation/Must Know D3/Paths/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Data Science/Data Visualisation/Must Know D3/Paths/app/favicon.ico -------------------------------------------------------------------------------- /Java Architecture Program/api/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /Java Architecture Program/db-design/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/db-design/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Java Architecture Program/jms/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /Java Architecture Program/jsp/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/2-1code/1/output_files_1/3.txt: -------------------------------------------------------------------------------- 1 | { "_id" : "Mikhail Ignatyev" } 2 | { "_id" : "Laura Smulders" } 3 | { "_id" : "Philip Hindes" } 4 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/Angular/.score.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | FS_SCORE=100 3 | echo "FS_SCORE:$FS_SCORE%" 4 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/basic-webpage/webpoll/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class WebpollConfig(AppConfig): 5 | name = 'webpoll' 6 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/test-models/webpoll/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class WebpollConfig(AppConfig): 5 | name = 'webpoll' 6 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/test-views/webpoll/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class WebpollConfig(AppConfig): 5 | name = 'webpoll' 6 | -------------------------------------------------------------------------------- /Modern Web Development/Build Systems/workflow-automation-gulp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/Build Systems/workflow-automation-gulp.pdf -------------------------------------------------------------------------------- /Modern Web Development/MV Framework/news-application/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/MV Framework/news-application/images/1.png -------------------------------------------------------------------------------- /Modern Web Development/MV Framework/news-application/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/MV Framework/news-application/images/2.png -------------------------------------------------------------------------------- /Modern Web Development/MV Framework/news-application/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/MV Framework/news-application/images/3.png -------------------------------------------------------------------------------- /Modern Web Development/MV Framework/news-application/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/MV Framework/news-application/images/4.png -------------------------------------------------------------------------------- /Spring/Spring Saga/PaymentService/src/main/java/com/fresco/saga/services/JmsListenerService.java: -------------------------------------------------------------------------------- 1 | package com.fresco.saga.services; 2 | 3 | public class JmsListenerService { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/mini-project-angular/.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Digitate Unit Elective/angular/mini-project-angular/.vs/slnx.sqlite -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/mini-project-angular/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Digitate Unit Elective/angular/mini-project-angular/src/favicon.ico -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/mini-project-angular/src/typings.d.ts: -------------------------------------------------------------------------------- 1 | /* SystemJS module definition */ 2 | declare var module: NodeModule; 3 | interface NodeModule { 4 | id: string; 5 | } 6 | -------------------------------------------------------------------------------- /Java Architecture Program/api/bin/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /Java Architecture Program/jms/.tester/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/.tester/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Java Architecture Program/jms/bin/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /Java Architecture Program/jsp/bin/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/getting-started/webpoll/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class WebpollConfig(AppConfig): 5 | name = 'webpoll' 6 | -------------------------------------------------------------------------------- /NodeJs/MP Full Stack Devloper/test.sh: -------------------------------------------------------------------------------- 1 | bash delete.sh 2 | cp API/* "APITest" 3 | cd APITest 4 | for file in *;do sed -i '/req.body=JSON.parse(Object.keys(req.body)\[0\]);/d' "$file";done 5 | -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/nodejs/test.sh: -------------------------------------------------------------------------------- 1 | bash delete.sh 2 | cp API/* "APITest" 3 | cd APITest 4 | for file in *;do sed -i '/req.body=JSON.parse(Object.keys(req.body)\[0\]);/d' "$file";done 5 | -------------------------------------------------------------------------------- /Angular/Routing/src/app/components/city/city.component.html: -------------------------------------------------------------------------------- 1 |
2 | City List 3 |

4 | {{contact.city}} 5 |

6 |
7 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Data Structures/output.txt: -------------------------------------------------------------------------------- 1 | (5,) 2 | float64 3 | (5, 2) 4 | 172.37417741633146 5 | Index(['Student_height', 'Student_weight'], dtype='object') 6 | -------------------------------------------------------------------------------- /Data Science/Data Visualisation/Exploring D3/Pie Charts/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Data Science/Data Visualisation/Exploring D3/Pie Charts/app/favicon.ico -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/mini-project-angular/src/assets/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Digitate Unit Elective/angular/mini-project-angular/src/assets/user.jpg -------------------------------------------------------------------------------- /Java Architecture Program/jms/.tester/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/odd-even/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/odd-even/app/favicon.ico -------------------------------------------------------------------------------- /Angular/library/proxy.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "/api": { 3 | "target": "http://localhost:8001", 4 | "secure": false, 5 | "pathRewrite": { 6 | "^/api": "" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Data Science/Data Visualisation/Must Know D3/Static Charts/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Data Science/Data Visualisation/Must Know D3/Static Charts/app/favicon.ico -------------------------------------------------------------------------------- /Data Science/Data Visualisation/Must Know D3/Tasks in D3/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Data Science/Data Visualisation/Must Know D3/Tasks in D3/app/favicon.ico -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/mini-project-angular/src/assets/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Digitate Unit Elective/angular/mini-project-angular/src/assets/login.png -------------------------------------------------------------------------------- /Java Architecture Program/jms/.tester/bin/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/.tester/bin/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Java Architecture Program/jms/.tester/bin/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /Java Architecture Program/security/ApiGateway/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd HealthCareService 3 | mvn test 4 | cd ../ 5 | cd Angular 6 | npm test -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/add-to-cart/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/add-to-cart/app/favicon.ico -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/sort-search/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/sort-search/app/favicon.ico -------------------------------------------------------------------------------- /Modern Web Development/MV Framework/news-application/bs-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "server": { 3 | "baseDir": "src", 4 | "routes": { 5 | "/node_modules": "node_modules" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /NodeJs/Mini-Project/node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | - "0.12" 6 | - "iojs" 7 | before_install: 8 | - npm install -g npm@~1.4.6 9 | -------------------------------------------------------------------------------- /Angular/Routing/src/app/components/contacts/contacts.component.html: -------------------------------------------------------------------------------- 1 |
2 | Contact List 3 |

4 | {{contact.name}} 5 |

6 |
7 | -------------------------------------------------------------------------------- /Java Architecture Program/api/bin/.mvn/wrapper/MavenWrapperDownloader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/api/bin/.mvn/wrapper/MavenWrapperDownloader.class -------------------------------------------------------------------------------- /Java Architecture Program/jms/bin/.mvn/wrapper/MavenWrapperDownloader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/bin/.mvn/wrapper/MavenWrapperDownloader.class -------------------------------------------------------------------------------- /Java Architecture Program/jsp/bin/.mvn/wrapper/MavenWrapperDownloader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jsp/bin/.mvn/wrapper/MavenWrapperDownloader.class -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /Java Architecture Program/security/ApiGateway/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/security/ApiGateway/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Struts 2/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/add-to-cart/app/img/cycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/add-to-cart/app/img/cycle.jpg -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/add-to-cart/app/img/shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/add-to-cart/app/img/shirt.jpg -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/add-to-cart/app/img/shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/add-to-cart/app/img/shoes.jpg -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/sort-search/app/img/cycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/sort-search/app/img/cycle.jpg -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/sort-search/app/img/shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/sort-search/app/img/shirt.jpg -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/sort-search/app/img/shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/sort-search/app/img/shoes.jpg -------------------------------------------------------------------------------- /NodeJs/Node Js Essentials/sum-of-squares/App.js: -------------------------------------------------------------------------------- 1 | let sum = 0, sum_sq = 0; 2 | 3 | for (let i = 1; i <= 100; i++){ 4 | sum += i; 5 | sum_sq += i*i; 6 | } 7 | 8 | console.log(Math.abs(sum_sq - sum*sum)) -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # fresco-Java 2 | 3 | ## I have saved this code my future reference and is not meant for any copying. 4 | 5 | Others are requested to take reference only and not copy/paste directly 6 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Working with CSV files/classA.csv: -------------------------------------------------------------------------------- 1 | ,Student_height,Student_weight 2 | s1,176.2,85.1 3 | s2,158.4,90.2 4 | s3,167.6,76.8 5 | s4,156.2,80.4 6 | s5,161.4,78.9 7 | -------------------------------------------------------------------------------- /Data Science/Structured Data Classification/structured-data-classification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Data Science/Structured Data Classification/structured-data-classification.pdf -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/bin/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/2-1code/1/output_files_1/6.txt: -------------------------------------------------------------------------------- 1 | { "Athlete" : "Jess Schipper", "Age" : 21, "GoldMedals" : 1, "SilverMedals" : 0, "BronzeMedals" : 2, "TotalMedals" : 3 } 2 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/Angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/angular/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/angular/src/favicon.ico -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/add-to-cart/app/img/greyCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/add-to-cart/app/img/greyCart.png -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/form-validation/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/form-validation/app/favicon.ico -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/sort-search/app/img/greyCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/sort-search/app/img/greyCart.png -------------------------------------------------------------------------------- /Modern Web Development/MV Framework/news-application/src/app/components/header/header.component.css: -------------------------------------------------------------------------------- 1 | .h-divider{ 2 | height:4px; 3 | width:100%; 4 | border-top:2px solid rgb(117, 117, 117); 5 | } 6 | -------------------------------------------------------------------------------- /Modern Web Development/MV Framework/news-application/src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/MV Framework/news-application/src/assets/images/logo.png -------------------------------------------------------------------------------- /NodeJs/Node Js Essentials/timer3.js: -------------------------------------------------------------------------------- 1 | function print(){ 2 | console.log("TCS"); 3 | } 4 | function stop(){ 5 | clearInterval(t) 6 | } 7 | 8 | const t = setInterval(print, 2000); 9 | setTimeout(stop, 10000); -------------------------------------------------------------------------------- /NodeJs/Serenade/try-2/views/layout.hbs: -------------------------------------------------------------------------------- 1 | {{#if user}} 2 | Signed in as {{user}}. Sign Out 3 | {{else}} 4 | Sign In 5 | Sign Up 6 | {{/if}} 7 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Data Merging 1/.score.sh.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Data Science/Data Scientist's Toolbox/Python Pandas/Data Merging 1/.score.sh.gpg -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Data Merging 2/.score.sh.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Data Science/Data Scientist's Toolbox/Python Pandas/Data Merging 2/.score.sh.gpg -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Data Structures/.score.sh.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Data Science/Data Scientist's Toolbox/Python Pandas/Data Structures/.score.sh.gpg -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/logging/CodeLab-Logging/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/add-to-cart/app/img/orangeCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/add-to-cart/app/img/orangeCart.png -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/form-validation/app/img/cycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/form-validation/app/img/cycle.jpg -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/form-validation/app/img/shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/form-validation/app/img/shirt.jpg -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/form-validation/app/img/shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/form-validation/app/img/shoes.jpg -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/sort-search/app/img/orangeCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/sort-search/app/img/orangeCart.png -------------------------------------------------------------------------------- /Spring/Spring Saga/PaymentService/src/main/java/com/fresco/saga/models/PaymentStatus.java: -------------------------------------------------------------------------------- 1 | package com.fresco.saga.models; 2 | 3 | public enum PaymentStatus { 4 | PAYMENT_PENDING, PAYMENT_SUCCESSFUL, REFUND; 5 | } 6 | -------------------------------------------------------------------------------- /Angular/Routing/src/app/models/contacts.ts: -------------------------------------------------------------------------------- 1 | export interface Contacts { 2 | contactsList: Contact[]; 3 | } 4 | 5 | export interface Contact { 6 | id: number; 7 | name: string; 8 | city: string; 9 | } 10 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Accessing Pandas Data Structures/classA.csv: -------------------------------------------------------------------------------- 1 | ,Student_height,Student_weight 2 | s1,176.2,85.1 3 | s2,158.4,90.2 4 | s3,167.6,76.8 5 | s4,156.2,80.4 6 | s5,161.4,78.9 7 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Data Aggregation/.score.sh.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Data Science/Data Scientist's Toolbox/Python Pandas/Data Aggregation/.score.sh.gpg -------------------------------------------------------------------------------- /Data Science/Unstructured Data Classification/unstruxtured-data-classification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Data Science/Unstructured Data Classification/unstruxtured-data-classification.pdf -------------------------------------------------------------------------------- /Java Architecture Program/jms/.tester/bin/.mvn/wrapper/MavenWrapperDownloader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/.tester/bin/.mvn/wrapper/MavenWrapperDownloader.class -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/bin/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/logging/CodeLab-Logging/bin/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/run.sh: -------------------------------------------------------------------------------- 1 | cd HealthCareService; 2 | mvn spring-boot:run; 3 | dotnet run; 4 | cd ../ 5 | cd Angular 6 | npm start 7 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/angular/src/assets/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/angular/src/assets/login.png -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/angular/src/assets/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/angular/src/assets/user.jpg -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/jms/application.properties: -------------------------------------------------------------------------------- 1 | spring.activemq.in-memory=false 2 | spring.activemq.pool.enabled=true 3 | activemq.brocker-url=tcp://localhost:61616 4 | server.port=8000 -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/add-to-cart/app/img/dummy_product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/add-to-cart/app/img/dummy_product.jpg -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/display-all-products/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/display-all-products/app/favicon.ico -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/first_name-last_name/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/first_name-last_name/app/favicon.ico -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/form-validation/app/img/greyCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/form-validation/app/img/greyCart.png -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/sort-search/app/img/dummy_product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/sort-search/app/img/dummy_product.jpg -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Data Merging 1/.score1.sh: -------------------------------------------------------------------------------- 1 | if [ -s out.txt ] 2 | then 3 | b=$(grep -E '^[[:digit:]]+$' out.txt) 4 | echo "FS_SCORE:$b%" 5 | else 6 | echo "FS_SCORE:0%" 7 | fi 8 | 9 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Data Merging 2/.score1.sh: -------------------------------------------------------------------------------- 1 | if [ -s out.txt ] 2 | then 3 | b=$(grep -E '^[[:digit:]]+$' out.txt) 4 | echo "FS_SCORE:$b%" 5 | else 6 | echo "FS_SCORE:0%" 7 | fi 8 | 9 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Indexing Dataframes/.score.sh.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Data Science/Data Scientist's Toolbox/Python Pandas/Indexing Dataframes/.score.sh.gpg -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/mini-project-angular/.vs/mini-project-angular/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Digitate Unit Elective/angular/mini-project-angular/.vs/mini-project-angular/v16/.suo -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/testing/proxy.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "/api": { 3 | "target": "http://localhost:8001", 4 | "secure": false, 5 | "pathRewrite": { 6 | "^/api": "" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Java Architecture Program/api/bin/src/main/java/com/fresco/apigateway/model/User.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/api/bin/src/main/java/com/fresco/apigateway/model/User.class -------------------------------------------------------------------------------- /Java Architecture Program/jms/bin/src/main/java/com/fresco/apigateway/model/User.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/bin/src/main/java/com/fresco/apigateway/model/User.class -------------------------------------------------------------------------------- /Java Architecture Program/jsp/bin/src/main/java/com/fresco/apigateway/model/User.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jsp/bin/src/main/java/com/fresco/apigateway/model/User.class -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Struts 2/imgs/Booksjsp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Struts 2/imgs/Booksjsp.png -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Struts 2/imgs/loginjsp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Struts 2/imgs/loginjsp.png -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Struts 2/imgs/updatejsp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Struts 2/imgs/updatejsp.png -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/display-all-products/app/img/cycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/display-all-products/app/img/cycle.jpg -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/display-all-products/app/img/shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/display-all-products/app/img/shirt.jpg -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/display-all-products/app/img/shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/display-all-products/app/img/shoes.jpg -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/display-product-images/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/display-product-images/app/favicon.ico -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/form-validation/app/img/orangeCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/form-validation/app/img/orangeCart.png -------------------------------------------------------------------------------- /Modern Web Development/MV Framework/news-application/src/app/components/header/header.component.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | -------------------------------------------------------------------------------- /NodeJs/Node Js Essentials/sum-of-multiples/App.js: -------------------------------------------------------------------------------- 1 | var sum = 0; 2 | var number = 1000; 3 | for (var i = 0; i < number; i++) { 4 | if (i % 3 == 0 || i % 5 == 0) { 5 | sum += i; 6 | } 7 | } 8 | 9 | console.log(sum); -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Data Aggregation/.score1.sh: -------------------------------------------------------------------------------- 1 | if [ -s out.txt ] 2 | then 3 | b=$(grep -E '^[[:digit:]]+$' out.txt) 4 | echo "FS_SCORE:$b%" 5 | else 6 | echo "FS_SCORE:0%" 7 | fi 8 | 9 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Data Structures/.score1.sh: -------------------------------------------------------------------------------- 1 | if [ -s out.txt ] 2 | then 3 | b=$(grep -E '^[[:digit:]]+$' out.txt) 4 | echo "FS_SCORE:$b%" 5 | else 6 | echo "FS_SCORE:0%" 7 | fi 8 | 9 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Indexing Dataframes/.score1.sh: -------------------------------------------------------------------------------- 1 | if [ -s out.txt ] 2 | then 3 | b=$(grep -E '^[[:digit:]]+$' out.txt) 4 | echo "FS_SCORE:$b%" 5 | else 6 | echo "FS_SCORE:0%" 7 | fi 8 | 9 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Working with CSV files/.score.sh.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Data Science/Data Scientist's Toolbox/Python Pandas/Working with CSV files/.score.sh.gpg -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Struts 2/imgs/AddBookjsp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Struts 2/imgs/AddBookjsp.png -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/display-all-products/app/img/greyCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/display-all-products/app/img/greyCart.png -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/display-product-images/app/img/cycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/display-product-images/app/img/cycle.jpg -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/display-product-images/app/img/shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/display-product-images/app/img/shirt.jpg -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/display-product-images/app/img/shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/display-product-images/app/img/shoes.jpg -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/form-validation/app/img/dummy_product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/form-validation/app/img/dummy_product.jpg -------------------------------------------------------------------------------- /Modern Web Development/MV Framework/news-application/src/app/store/reducers/selector.ts: -------------------------------------------------------------------------------- 1 | import {createSelector } from 'reselect'; 2 | import { getNewsList, getFilter } from './news.reducer'; 3 | 4 | export const getNews = ''; 5 | -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/angular/proxy.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "/api": { 3 | "target": "http://localhost:9000", 4 | "secure": false, 5 | "pathRewrite": { 6 | "^/api": "" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Working with CSV files/.score1.sh: -------------------------------------------------------------------------------- 1 | if [ -s out.txt ] 2 | then 3 | b=$(grep -E '^[[:digit:]]+$' out.txt) 4 | echo "FS_SCORE:$b%" 5 | else 6 | echo "FS_SCORE:0%" 7 | fi 8 | 9 | -------------------------------------------------------------------------------- /Java Architecture Program/logging_fp/untitled/out/production/untitled/io/csrohit/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/logging_fp/untitled/out/production/untitled/io/csrohit/Main.class -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/angular/.install.sh: -------------------------------------------------------------------------------- 1 | 2 | sudo apt-get remove node -y; 3 | curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -; 4 | sudo apt-get install -y nodejs; 5 | npm install 6 | -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/display-all-products/app/img/orangeCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/display-all-products/app/img/orangeCart.png -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/display-product-images/app/img/greyCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/display-product-images/app/img/greyCart.png -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/sort-search/app/img/empty-shopping-cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/sort-search/app/img/empty-shopping-cart.png -------------------------------------------------------------------------------- /Angular/library/src/app/models/member.ts: -------------------------------------------------------------------------------- 1 | export class Member { 2 | id: number; 3 | name: string; 4 | gender: string; 5 | dob: string; 6 | email: string; 7 | science: string; 8 | fiction: string; 9 | journals: string; 10 | } -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/mini-project-angular/proxy.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "/api": { 3 | "target": "http://localhost:8080", 4 | "secure": false, 5 | "pathRewrite": { 6 | "^/api": "" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Java Architecture Program/jms/.tester/bin/src/main/java/com/fresco/apigateway/model/User.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/.tester/bin/src/main/java/com/fresco/apigateway/model/User.class -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/basic-webpage/webpoll/views.py: -------------------------------------------------------------------------------- 1 | from django.http import HttpResponse 2 | 3 | def home(request): 4 | #Write code implementation here 5 | return HttpResponse("Welcome to webpoll home!") -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/display-all-products/app/img/dummy_product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/display-all-products/app/img/dummy_product.jpg -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/display-product-images/app/img/orangeCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/display-product-images/app/img/orangeCart.png -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/form-validation/app/img/empty-shopping-cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/form-validation/app/img/empty-shopping-cart.png -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/sort-search/app/img/empty-shopping-cart.png.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/sort-search/app/img/empty-shopping-cart.png.zip -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/sort-search/app/img/enabled-shopping-cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/sort-search/app/img/enabled-shopping-cart.png -------------------------------------------------------------------------------- /NodeJs/Node Js Essentials/callback.js: -------------------------------------------------------------------------------- 1 | let sum=0; 2 | for(let i=3; i<=1000; i++){ 3 | if(i%3==0){ 4 | sum += i 5 | } 6 | if(i%5==0){ 7 | sum+=i 8 | } 9 | } 10 | setTimeout(()=>console.log(sum), 1000); -------------------------------------------------------------------------------- /NodeJs/Node Js Essentials/events-working-with-files/App.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs') 2 | 3 | fs.readFile('To_Read.txt', 'utf8' , (err, data) => { 4 | if (err) { 5 | console.error(err) 6 | return 7 | } 8 | console.log(data) 9 | }) -------------------------------------------------------------------------------- /Angular/invoice-manager/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | app-invoice { 2 | width:80%; 3 | display: block; 4 | border-top: 2px solid grey; 5 | margin-left: 10px; 6 | } 7 | 8 | 9 | h1 { 10 | width: 80%; 11 | margin-left: 10px; 12 | } -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Accessing Pandas Data Structures/.score1.sh: -------------------------------------------------------------------------------- 1 | if [ -s out.txt ] 2 | then 3 | b=$(grep -E '^[[:digit:]]+$' out.txt) 4 | echo "FS_SCORE:$b%" 5 | else 6 | echo "FS_SCORE:0%" 7 | fi 8 | 9 | -------------------------------------------------------------------------------- /Java Architecture Program/api/bin/src/main/java/com/fresco/apigateway/model/UserPrincipal.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/api/bin/src/main/java/com/fresco/apigateway/model/UserPrincipal.class -------------------------------------------------------------------------------- /Java Architecture Program/api/bin/src/main/java/com/fresco/apigateway/repo/UserRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/api/bin/src/main/java/com/fresco/apigateway/repo/UserRepository.class -------------------------------------------------------------------------------- /Java Architecture Program/api/src/main/java/com/fresco/codelab/service/RegisterService.java: -------------------------------------------------------------------------------- 1 | package com.fresco.codelab.service; 2 | 3 | import org.springframework.stereotype.Service; 4 | @Service 5 | public class RegisterService { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /Java Architecture Program/jms/bin/src/main/java/com/fresco/apigateway/model/UserPrincipal.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/bin/src/main/java/com/fresco/apigateway/model/UserPrincipal.class -------------------------------------------------------------------------------- /Java Architecture Program/jms/bin/src/main/java/com/fresco/apigateway/repo/UserRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/bin/src/main/java/com/fresco/apigateway/repo/UserRepository.class -------------------------------------------------------------------------------- /Java Architecture Program/jsp/bin/src/main/java/com/fresco/apigateway/model/UserPrincipal.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jsp/bin/src/main/java/com/fresco/apigateway/model/UserPrincipal.class -------------------------------------------------------------------------------- /Java Architecture Program/jsp/bin/src/main/java/com/fresco/apigateway/repo/UserRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jsp/bin/src/main/java/com/fresco/apigateway/repo/UserRepository.class -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/bin/.mvn/wrapper/MavenWrapperDownloader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/logging/CodeLab-Logging/bin/.mvn/wrapper/MavenWrapperDownloader.class -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/2-2code/2/outputfolder_2/11.txt: -------------------------------------------------------------------------------- 1 | Michael Phelps 23 8 2 | Michael Phelps 19 8 3 | Natalie Coughlin 25 6 4 | Aleksey Nemov 24 6 5 | Michael Phelps 27 6 6 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/4-1code/2/outputfolder_2/11.txt: -------------------------------------------------------------------------------- 1 | Michael Phelps 23 8 2 | Michael Phelps 19 8 3 | Natalie Coughlin 25 6 4 | Aleksey Nemov 24 6 5 | Michael Phelps 27 6 6 | -------------------------------------------------------------------------------- /Java Architecture Program/logging_fp/untitled/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /MP Java Complete Beginner/Arraylist/project-files/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/basic-webpage/webpoll/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import url 2 | from . import views 3 | 4 | urlpatterns=[ 5 | # URL pattern to home page 6 | url('', views.home, name="home"), 7 | ] -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/display-product-images/app/img/dummy_product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/display-product-images/app/img/dummy_product.jpg -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/form-validation/app/img/enabled-shopping-cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/form-validation/app/img/enabled-shopping-cart.png -------------------------------------------------------------------------------- /Modern Web Development/MV Framework/news-application/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | /* h1 { 2 | color: #369; 3 | font-family: Arial, Helvetica, sans-serif; 4 | font-size: 250%; 5 | } */ 6 | 7 | 8 | .container { 9 | width: 75%; 10 | } -------------------------------------------------------------------------------- /Spring/Spring Saga/OrderService/src/main/java/com/fresco/saga/models/OrderStatus.java: -------------------------------------------------------------------------------- 1 | package com.fresco.saga.models; 2 | 3 | public enum OrderStatus { 4 | PAYMENT_PENDING, ORDER_SUCCESSFULLY_PLACED, ORDER_DELIVERED, ORDER_CANCELLED; 5 | } 6 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Accessing Pandas Data Structures/.score.sh.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Data Science/Data Scientist's Toolbox/Python Pandas/Accessing Pandas Data Structures/.score.sh.gpg -------------------------------------------------------------------------------- /Java Architecture Program/api/bin/src/main/java/com/fresco/apigateway/ApiGatewayApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/api/bin/src/main/java/com/fresco/apigateway/ApiGatewayApplication.class -------------------------------------------------------------------------------- /Java Architecture Program/api/bin/src/main/java/com/fresco/apigateway/service/RegisterService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/api/bin/src/main/java/com/fresco/apigateway/service/RegisterService.class -------------------------------------------------------------------------------- /Java Architecture Program/api/src/main/java/com/fresco/codelab/service/DashboardService.java: -------------------------------------------------------------------------------- 1 | package com.fresco.codelab.service; 2 | 3 | import org.springframework.stereotype.Service; 4 | 5 | @Service 6 | public class DashboardService { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /Java Architecture Program/jms/bin/src/main/java/com/fresco/apigateway/ApiGatewayApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/bin/src/main/java/com/fresco/apigateway/ApiGatewayApplication.class -------------------------------------------------------------------------------- /Java Architecture Program/jms/bin/src/main/java/com/fresco/apigateway/service/RegisterService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/bin/src/main/java/com/fresco/apigateway/service/RegisterService.class -------------------------------------------------------------------------------- /Java Architecture Program/jsp/bin/src/main/java/com/fresco/apigateway/ApiGatewayApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jsp/bin/src/main/java/com/fresco/apigateway/ApiGatewayApplication.class -------------------------------------------------------------------------------- /Java Architecture Program/jsp/bin/src/main/java/com/fresco/apigateway/service/RegisterService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jsp/bin/src/main/java/com/fresco/apigateway/service/RegisterService.class -------------------------------------------------------------------------------- /Java Architecture Program/logging_fp/untitled/src/io/csrohit/Main.java: -------------------------------------------------------------------------------- 1 | package io.csrohit; 2 | 3 | public class Main { 4 | 5 | public static void main(String[] args) { 6 | System.out.println(Integer.parseInt("./")); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /MP Java Complete Beginner/abstract-class/project-files/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Microservices/Spring Cantabile/cantabile-rest[Spring-project-files]/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Microservices/Spring Cantabile/cantabile-rest[Spring-project-files]/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/form-validation/app/img/empty-shopping-cart.png.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/form-validation/app/img/empty-shopping-cart.png.zip -------------------------------------------------------------------------------- /Modern Web Development/MV Framework/news-application/src/app/components/news/news.component.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 7 | 8 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Data Merging 2/.testscript.py: -------------------------------------------------------------------------------- 1 | import os 2 | if(os.path.exists("output.txt")): 3 | print("You have passed preliminary validations") 4 | else: 5 | print("You have not passed preliminary validations") 6 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Indexing Dataframes/.testscript.py: -------------------------------------------------------------------------------- 1 | import os 2 | if(os.path.exists("output.txt")): 3 | print("You have passed preliminary validations") 4 | else: 5 | print("You have not passed preliminary validations") -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/mini-project-angular/src/app/models/users.model.ts: -------------------------------------------------------------------------------- 1 | export class Users { 2 | userId: number; 3 | username: string; 4 | mobile: string; 5 | email: string; 6 | location: string; 7 | 8 | } 9 | 10 | -------------------------------------------------------------------------------- /Java Architecture Program/api/bin/src/main/java/com/fresco/apigateway/config/AppSecurityConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/api/bin/src/main/java/com/fresco/apigateway/config/AppSecurityConfig.class -------------------------------------------------------------------------------- /Java Architecture Program/api/bin/src/main/java/com/fresco/apigateway/controller/ApiController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/api/bin/src/main/java/com/fresco/apigateway/controller/ApiController.class -------------------------------------------------------------------------------- /Java Architecture Program/file-handler/run.sh: -------------------------------------------------------------------------------- 1 | cd FrescoFileHandler;$(sudo nohup mvn tomcat7:run &>/dev/null &);echo "starting server";while [ $(wget "localhost:8000" > grep -o -i "refused" | wc -l) -eq 1 ]; do sleep 2; done; echo "server started at port 8000" -------------------------------------------------------------------------------- /Java Architecture Program/jms/bin/src/main/java/com/fresco/apigateway/config/AppSecurityConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/bin/src/main/java/com/fresco/apigateway/config/AppSecurityConfig.class -------------------------------------------------------------------------------- /Java Architecture Program/jms/bin/src/main/java/com/fresco/apigateway/controller/ApiController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/bin/src/main/java/com/fresco/apigateway/controller/ApiController.class -------------------------------------------------------------------------------- /Java Architecture Program/jsp/bin/src/main/java/com/fresco/apigateway/config/AppSecurityConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jsp/bin/src/main/java/com/fresco/apigateway/config/AppSecurityConfig.class -------------------------------------------------------------------------------- /Java Architecture Program/jsp/bin/src/main/java/com/fresco/apigateway/controller/ApiController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jsp/bin/src/main/java/com/fresco/apigateway/controller/ApiController.class -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/details/webpoll/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | from .models import question,choice 5 | 6 | admin.site.register(question) 7 | admin.site.register(choice) -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/voting/webpoll/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | from .models import question,choice 5 | 6 | admin.site.register(question) 7 | admin.site.register(choice) 8 | -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/display-product-images/app/img/empty-shopping-cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/display-product-images/app/img/empty-shopping-cart.png -------------------------------------------------------------------------------- /Angular/Routing/src/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/app", 5 | "types": [] 6 | }, 7 | "exclude": [ 8 | "test.ts", 9 | "**/*.spec.ts" 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/testing/src/app/models/member.ts: -------------------------------------------------------------------------------- 1 | export class Member { 2 | id: number; 3 | name: string; 4 | gender: string; 5 | dob: string; 6 | email: string; 7 | science: string; 8 | fiction: string; 9 | journals: string; 10 | } -------------------------------------------------------------------------------- /Java Architecture Program/api/bin/src/main/java/com/fresco/apigateway/controller/LoginController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/api/bin/src/main/java/com/fresco/apigateway/controller/LoginController.class -------------------------------------------------------------------------------- /Java Architecture Program/api/bin/src/main/java/com/fresco/apigateway/service/MyUserDetailsService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/api/bin/src/main/java/com/fresco/apigateway/service/MyUserDetailsService.class -------------------------------------------------------------------------------- /Java Architecture Program/jms/.tester/bin/src/main/java/com/fresco/apigateway/model/UserPrincipal.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/.tester/bin/src/main/java/com/fresco/apigateway/model/UserPrincipal.class -------------------------------------------------------------------------------- /Java Architecture Program/jms/.tester/bin/src/main/java/com/fresco/apigateway/repo/UserRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/.tester/bin/src/main/java/com/fresco/apigateway/repo/UserRepository.class -------------------------------------------------------------------------------- /Java Architecture Program/jms/bin/src/main/java/com/fresco/apigateway/controller/LoginController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/bin/src/main/java/com/fresco/apigateway/controller/LoginController.class -------------------------------------------------------------------------------- /Java Architecture Program/jms/bin/src/main/java/com/fresco/apigateway/service/MyUserDetailsService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/bin/src/main/java/com/fresco/apigateway/service/MyUserDetailsService.class -------------------------------------------------------------------------------- /Java Architecture Program/jsp/bin/src/main/java/com/fresco/apigateway/controller/LoginController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jsp/bin/src/main/java/com/fresco/apigateway/controller/LoginController.class -------------------------------------------------------------------------------- /Java Architecture Program/jsp/bin/src/main/java/com/fresco/apigateway/service/MyUserDetailsService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jsp/bin/src/main/java/com/fresco/apigateway/service/MyUserDetailsService.class -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/basic-webpage/webpoll/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | from .models import question,choice 5 | 6 | admin.site.register(question) 7 | admin.site.register(choice) -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/getting-started/webpoll/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | from .models import question,choice 5 | 6 | admin.site.register(question) 7 | admin.site.register(choice) -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/test-models/webpoll/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | from .models import question,choice 5 | 6 | admin.site.register(question) 7 | admin.site.register(choice) 8 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/test-views/webpoll/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | from .models import question,choice 5 | 6 | admin.site.register(question) 7 | admin.site.register(choice) 8 | -------------------------------------------------------------------------------- /Microservices/Spring Cantabile/full-stack-api/readme.md: -------------------------------------------------------------------------------- 1 | # Important notes 2 | 3 | # Just make sure that you also added the code of the below files present in building-rest-client file 4 | 5 | 1 AuthenticationEntryPoint.java 6 | 2 SpringSecurityConfig.java 7 | -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/display-product-images/app/img/enabled-shopping-cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/display-product-images/app/img/enabled-shopping-cart.png -------------------------------------------------------------------------------- /NodeJs/Serenade/try-2/views/auth/signin.hbs: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 |
6 | -------------------------------------------------------------------------------- /Angular/invoice-manager/src/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/app", 5 | "types": [] 6 | }, 7 | "exclude": [ 8 | "test.ts", 9 | "**/*.spec.ts" 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Indexing Dataframes/output.txt: -------------------------------------------------------------------------------- 1 | 2017-09-03 00:00:00 2 | DatetimeIndex(['2017-09-14', '2017-09-09'], dtype='datetime64[ns]', freq=None) 3 | [ True True] 4 | [['classA', 'classB'], ['s1', 's2', 's3', 's4', 's5']] 5 | -------------------------------------------------------------------------------- /Java Architecture Program/jms/.tester/bin/src/main/java/com/fresco/apigateway/ApiGatewayApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/.tester/bin/src/main/java/com/fresco/apigateway/ApiGatewayApplication.class -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/bin/src/main/java/com/fresco/apigateway/model/User.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/logging/CodeLab-Logging/bin/src/main/java/com/fresco/apigateway/model/User.class -------------------------------------------------------------------------------- /Java Architecture Program/logging_fp/untitled/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/angular/src/app/models/users.model.ts: -------------------------------------------------------------------------------- 1 | export class Users { 2 | userId: number; 3 | username: string; 4 | mobile: string; 5 | email: string; 6 | location: string; 7 | 8 | } 9 | 10 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/angular/src/proxy.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "/api": { 3 | "target": "http://localhost:8001", 4 | "secure": false, 5 | "pathRewrite": { 6 | "^/api": "" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /MP Java Complete Beginner/abstract-class/project-files/out/production/project-files/io/csrohit/Aided.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/MP Java Complete Beginner/abstract-class/project-files/out/production/project-files/io/csrohit/Aided.class -------------------------------------------------------------------------------- /MP Java Complete Beginner/abstract-class/project-files/out/production/project-files/io/csrohit/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/MP Java Complete Beginner/abstract-class/project-files/out/production/project-files/io/csrohit/Main.class -------------------------------------------------------------------------------- /Microservices/Spring Cantabile/cantabile-rest/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/display-product-images/app/img/empty-shopping-cart.png.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Modern Web Development/AngularJs1.x Directives/display-product-images/app/img/empty-shopping-cart.png.zip -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Working with CSV files/.testscript.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | if(os.path.exists("output.txt")): 4 | print("You have passed preliminary validations") 5 | else: 6 | print("You have not passed preliminary validations") 7 | -------------------------------------------------------------------------------- /Java Architecture Program/db-management/run.sh: -------------------------------------------------------------------------------- 1 | cd FrescoDBConnection;$(sudo nohup mvn tomcat7:run &>/dev/null &);echo "starting server";while [ $(wget "localhost:8000" > grep -o -i "refused" | wc -l) -eq 1 ];do sleep 2;done;rm index.html;echo "server started at port 8000" -------------------------------------------------------------------------------- /Java Architecture Program/file-explorer/run.sh: -------------------------------------------------------------------------------- 1 | cd FrescoFileExplorer;$(sudo nohup mvn tomcat7:run &>/dev/null &);echo "starting server";while [ $(wget "localhost:8000" > grep -o -i "refused" | wc -l) -eq 1 ];do sleep 2;done;rm index.html;echo "server started at port 8000" -------------------------------------------------------------------------------- /Java Architecture Program/jms/.tester/bin/src/main/java/com/fresco/apigateway/config/AppSecurityConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/.tester/bin/src/main/java/com/fresco/apigateway/config/AppSecurityConfig.class -------------------------------------------------------------------------------- /Java Architecture Program/jms/.tester/bin/src/main/java/com/fresco/apigateway/controller/ApiController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/.tester/bin/src/main/java/com/fresco/apigateway/controller/ApiController.class -------------------------------------------------------------------------------- /Java Architecture Program/jms/.tester/bin/src/main/java/com/fresco/apigateway/service/RegisterService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/.tester/bin/src/main/java/com/fresco/apigateway/service/RegisterService.class -------------------------------------------------------------------------------- /Java Architecture Program/jsp/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8000 2 | spring.mvc.view.prefix: /WEB-INF/jsp/ 3 | spring.mvc.view.suffix: .jsp 4 | 5 | spring.servlet.multipart.max-file-size=5MB 6 | spring.servlet.multipart.max-request-size=5MB 7 | -------------------------------------------------------------------------------- /MP Java Complete Beginner/Arraylist/project-files/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /MP Java Complete Beginner/abstract-class/project-files/out/production/project-files/io/csrohit/Student.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/MP Java Complete Beginner/abstract-class/project-files/out/production/project-files/io/csrohit/Student.class -------------------------------------------------------------------------------- /Modern Web Development/MV Framework/news-application/bs-config.cli.json: -------------------------------------------------------------------------------- 1 | { 2 | "open": false, 3 | "logLevel": "silent", 4 | "port": 8080, 5 | "server": { 6 | "baseDir": "dist", 7 | "middleware": { 8 | "0": null 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /NodeJs/Node Js Essentials/events-simple-http-module/app.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | const http = require('http'); 4 | 5 | 6 | const server = http.createServer((req, res)=>{ 7 | 8 | res.write('Hello World'); 9 | res.end(); 10 | }) 11 | 12 | }); 13 | server.listen(8000); -------------------------------------------------------------------------------- /Java Architecture Program/api/bin/src/test/java/com/fresco/gateway/ApiGateway/ApiGatewayApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/api/bin/src/test/java/com/fresco/gateway/ApiGateway/ApiGatewayApplicationTests.class -------------------------------------------------------------------------------- /Java Architecture Program/jms/.tester/bin/src/main/java/com/fresco/apigateway/controller/LoginController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/.tester/bin/src/main/java/com/fresco/apigateway/controller/LoginController.class -------------------------------------------------------------------------------- /Java Architecture Program/jms/bin/src/test/java/com/fresco/gateway/ApiGateway/ApiGatewayApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/bin/src/test/java/com/fresco/gateway/ApiGateway/ApiGatewayApplicationTests.class -------------------------------------------------------------------------------- /Java Architecture Program/jsp/bin/src/test/java/com/fresco/gateway/ApiGateway/ApiGatewayApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jsp/bin/src/test/java/com/fresco/gateway/ApiGateway/ApiGatewayApplicationTests.class -------------------------------------------------------------------------------- /MP Java Complete Beginner/abstract-class/project-files/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Java Architecture Program/jms/.tester/bin/src/main/java/com/fresco/apigateway/service/MyUserDetailsService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/.tester/bin/src/main/java/com/fresco/apigateway/service/MyUserDetailsService.class -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Struts 2/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding//src/test/java=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /MP Java Complete Beginner/abstract-class/project-files/out/production/project-files/io/csrohit/SelfFinance.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/MP Java Complete Beginner/abstract-class/project-files/out/production/project-files/io/csrohit/SelfFinance.class -------------------------------------------------------------------------------- /NodeJs/Mini-Project/node_modules/minimist/test/whitespace.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('whitespace should be whitespace' , function (t) { 5 | t.plan(1); 6 | var x = parse([ '-x', '\t' ]).x; 7 | t.equal(x, '\t'); 8 | }); 9 | -------------------------------------------------------------------------------- /NodeJs/Node Js Essentials/largest-prime-factor/app.js: -------------------------------------------------------------------------------- 1 | var divisor = 2; 2 | var number = 600851475143; 3 | while(number > 1){ 4 | if(number % divisor === 0){ 5 | number /= divisor; 6 | } else { 7 | divisor++; 8 | } 9 | } 10 | console.log(divisor); -------------------------------------------------------------------------------- /Angular/angular2-building_blocks/2-Interpolation-app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-root', 5 | template: `

{{message}}

` 6 | }) 7 | export class AppComponent { 8 | message = 'hey there'; 9 | } 10 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/bin/src/main/java/com/fresco/apigateway/model/UserPrincipal.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/logging/CodeLab-Logging/bin/src/main/java/com/fresco/apigateway/model/UserPrincipal.class -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/bin/src/main/java/com/fresco/apigateway/repo/UserRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/logging/CodeLab-Logging/bin/src/main/java/com/fresco/apigateway/repo/UserRepository.class -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/Angular/.install.sh: -------------------------------------------------------------------------------- 1 | 2 | sudo apt-get remove node -y; 3 | curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -; 4 | sudo apt-get install -y nodejs; 5 | npm install 6 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/hibernate/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Socket/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultSeverity": "error", 3 | "extends": [ 4 | "tslint:recommended" 5 | ], 6 | "jsRules": {}, 7 | "rules": { 8 | "no-var-requires":false, 9 | "semicolon":true 10 | }, 11 | "rulesDirectory": [] 12 | } -------------------------------------------------------------------------------- /Angular/oriana/src/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/app", 5 | "module": "es2015", 6 | "types": [] 7 | }, 8 | "exclude": [ 9 | "src/test.ts", 10 | "**/*.spec.ts" 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /Data Science/Data Visualisation/Must Know D3/Paths/app/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Learning D3 Js 4 | 5 | 6 |
7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Java Architecture Program/db-management/src/main/webapp/Header.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=UTF-8" 2 | pageEncoding="UTF-8"%> 3 | 4 | 5 | index.jsp 6 | RepoRequest.jsp 7 | -------------------------------------------------------------------------------- /Java Architecture Program/jms/.tester/bin/src/test/java/com/fresco/gateway/ApiGateway/ApiGatewayApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/jms/.tester/bin/src/test/java/com/fresco/gateway/ApiGateway/ApiGatewayApplicationTests.class -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/bin/src/main/java/com/fresco/apigateway/ApiGatewayApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/logging/CodeLab-Logging/bin/src/main/java/com/fresco/apigateway/ApiGatewayApplication.class -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/bin/src/main/java/com/fresco/apigateway/service/RegisterService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/logging/CodeLab-Logging/bin/src/main/java/com/fresco/apigateway/service/RegisterService.class -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/vap2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/vap2.png -------------------------------------------------------------------------------- /NodeJs/Serenade/promise/promise.js: -------------------------------------------------------------------------------- 1 | var Promise = require("bluebird"); 2 | var fs = Promise.promisifyAll(require("fs")); 3 | 4 | fs.readFileAsync("users.json", "utf8").then(function(contents) { 5 | console.log(contents); 6 | }).catch(function(e) { 7 | console.error(e.stack); 8 | }); -------------------------------------------------------------------------------- /NodeJs/Serenade/promise/test.sh: -------------------------------------------------------------------------------- 1 | if [[ $(grep -io -e "promisifyAll" -e "then" -e "bluebird" promise.js | wc -l) -gt 1 && $(curl -v --silent localhost:3000/users --stderr - | grep -io -e "Valek" -e "Bea" -e "Frediani" | wc -l) -gt 1 ]]; then echo "FS_SCORE:100%"; else echo "FS_SCORE:0%"; fi 2 | -------------------------------------------------------------------------------- /Angular/library/src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-root', 5 | templateUrl: './app.component.html', 6 | styleUrls: ['./app.component.css'] 7 | }) 8 | export class AppComponent { 9 | title = 'app'; 10 | } 11 | -------------------------------------------------------------------------------- /Data Science/Data Visualisation/Must Know D3/Tasks in D3/app/index.js: -------------------------------------------------------------------------------- 1 | function d3update() { 2 | // add your code here 3 | 4 | d3.selectAll("li:nth-child(3n)") 5 | .classed("big", true) 6 | .style("color", "blue") 7 | .html("Hello World") 8 | }; 9 | 10 | d3update(); 11 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/bin/src/main/java/com/fresco/apigateway/config/AppSecurityConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/logging/CodeLab-Logging/bin/src/main/java/com/fresco/apigateway/config/AppSecurityConfig.class -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/bin/src/main/java/com/fresco/apigateway/controller/ApiController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/logging/CodeLab-Logging/bin/src/main/java/com/fresco/apigateway/controller/ApiController.class -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/form 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/form 1.png -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/form2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/form2.png -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/form3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/form3.png -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/form4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/form4.png -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/header.png -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/reqapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/reqapp.png -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/scdapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/scdapp.png -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/voting/webpoll/templates/webpoll/result.html: -------------------------------------------------------------------------------- 1 |

{{ poll.question }}

2 | 3 | -------------------------------------------------------------------------------- /Spring/Spring Saga/OrderService/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip 2 | wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar 3 | -------------------------------------------------------------------------------- /Spring/Spring Saga/PaymentService/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip 2 | wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar 3 | -------------------------------------------------------------------------------- /Spring/Spring Saga/SpringSagaJMS/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip 2 | wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar 3 | -------------------------------------------------------------------------------- /Angular/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 | styleUrls: ['./app.component.css'] 7 | }) 8 | export class AppComponent { 9 | constructor() {} 10 | } 11 | -------------------------------------------------------------------------------- /Angular/invoice-manager/e2e/src/app.po.ts: -------------------------------------------------------------------------------- 1 | import { browser, by, element } from 'protractor'; 2 | 3 | export class AppPage { 4 | navigateTo() { 5 | return browser.get('/'); 6 | } 7 | 8 | getTitleText() { 9 | return element(by.css('app-root h1')).getText(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Java Architecture Program/db-design/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.1/apache-maven-3.8.1-bin.zip 2 | wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar 3 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/bin/src/main/java/com/fresco/apigateway/controller/LoginController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/logging/CodeLab-Logging/bin/src/main/java/com/fresco/apigateway/controller/LoginController.class -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/bin/src/main/java/com/fresco/apigateway/service/MyUserDetailsService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/logging/CodeLab-Logging/bin/src/main/java/com/fresco/apigateway/service/MyUserDetailsService.class -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/2-1code/1/output_files_1/10.txt: -------------------------------------------------------------------------------- 1 | { "_id" : "Athletics", "count" : 687 } 2 | { "_id" : "Rowing", "count" : 567 } 3 | { "_id" : "Swimming", "count" : 487 } 4 | { "_id" : "Football", "count" : 407 } 5 | { "_id" : "Hockey", "count" : 388 } 6 | 7 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/uploads/2-1code/1/output_files_1/9.txt: -------------------------------------------------------------------------------- 1 | { "_id" : "United States", "count" : 145 } 2 | { "_id" : "Australia", "count" : 92 } 3 | { "_id" : "Netherlands", "count" : 32 } 4 | { "_id" : "Japan", "count" : 30 } 5 | { "_id" : "China", "count" : 29 } 6 | 7 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/book app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/book app.png -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/profile 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/profile 2.png -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/profile.png -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/sognup1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/sognup1.png -------------------------------------------------------------------------------- /Modern Web Development/MV Framework/news-application/src/app/app.component.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
5 | 6 | 7 | 8 |
9 |
-------------------------------------------------------------------------------- /NodeJs/Javascript Essentials/dom-create-drop-down-country-field/index.js: -------------------------------------------------------------------------------- 1 | function runList(){ 2 | var x = document.getElementById("list"); 3 | var option = document.createElement("option"); 4 | option.text = document.getElementById('txtbox').value; 5 | x.add(option); 6 | } 7 | 8 | 9 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/login err 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/login err 1.png -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/login err 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/login err 3.png -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/login err 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/login err 4.png -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/viewallpat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/viewallpat.png -------------------------------------------------------------------------------- /Data Science/Data Visualisation/Exploring D3/tree/app/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Learning D3 Js 4 | 5 | 6 |

Trees

7 |
8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Java Architecture Program/api/src/main/resources/static/js/repocode.js: -------------------------------------------------------------------------------- 1 | function openEditor(element){ 2 | element.parentElement.getElementsByClassName('code-editor')[0].style.display = "block"; 3 | } 4 | 5 | function closeEditor(element){ 6 | element.parentElement.parentElement.style.display = "none"; 7 | } -------------------------------------------------------------------------------- /Java Architecture Program/jms/src/main/resources/static/js/repocode.js: -------------------------------------------------------------------------------- 1 | function openEditor(element){ 2 | element.parentElement.getElementsByClassName('code-editor')[0].style.display = "block"; 3 | } 4 | 5 | function closeEditor(element){ 6 | element.parentElement.parentElement.style.display = "none"; 7 | } -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/Angular/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/Angular/src/favicon.ico -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/edit profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/edit profile.png -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/no rec found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/imgs/no rec found.png -------------------------------------------------------------------------------- /Socket/nodemon.json: -------------------------------------------------------------------------------- 1 | { 2 | "restartable": "rs", 3 | "ignore": [".git", "node_modules/**/node_modules"], 4 | "verbose": true, 5 | "watch": ["src/"], 6 | "env": { 7 | "NODE_ENV": "development" 8 | }, 9 | "ext": "js,json,ts", 10 | "exec": "ts-node ./src/app.ts" 11 | } -------------------------------------------------------------------------------- /Angular/library/src/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/app", 5 | "baseUrl": "./", 6 | "module": "es2015", 7 | "types": [] 8 | }, 9 | "exclude": [ 10 | "test.ts", 11 | "**/*.spec.ts" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/bin/src/test/java/com/fresco/gateway/ApiGateway/ApiGatewayApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Architecture Program/logging/CodeLab-Logging/bin/src/test/java/com/fresco/gateway/ApiGateway/ApiGatewayApplicationTests.class -------------------------------------------------------------------------------- /Java Developer Curriculum/jdbc-mini-project/db.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE subject; 2 | DROP TABLE student; 3 | CREATE TABLE subject(id int PRIMARY KEY AUTO_INCREMENT, name varchar(25)); 4 | CREATE TABLE student(id int PRIMARY KEY AUTO_INCREMENT, student_name varchar(20), score float, subject_id int references subject(id)); 5 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/Angular/src/proxy.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "/api": { 3 | "target": "http://localhost:5000", 4 | "secure": false, 5 | "pathRewrite": { 6 | "^/api": "" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/hibernate/README.md: -------------------------------------------------------------------------------- 1 | # Important note 2 | 3 | 1. Replace the **hibernate.cfg.xml** file with this one. 4 | 2. run the following set of commands in the integrated terminal 5 | - `cd DemoHib/src/main` 6 | - `mkdir resources` 7 | - `mv java/hibernate* resources/` -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/first_name-last_name/app/index.js: -------------------------------------------------------------------------------- 1 | //write your code here 2 | 3 | 4 | var app = angular.module('myApp', []); 5 | app.controller('myCtrl', function($scope) { 6 | $scope.first_name="Rohit"; 7 | $scope.last_name= "Nimkar" 8 | 9 | }); 10 | -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/angular/src/app/models/credentials.model.ts: -------------------------------------------------------------------------------- 1 | export class Credentials { 2 | userId: number; 3 | username: string; 4 | password: string; 5 | isLoggedIn: boolean; 6 | 7 | constructor(values: Object = {}) { 8 | Object.assign(this, values); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/nodejs/middleware.js: -------------------------------------------------------------------------------- 1 | let jwt = require('jsonwebtoken'); 2 | const config = require('./config.js'); 3 | 4 | let checkToken = (req, res, next) => { 5 | 6 | /*write your middleware code here*/ 7 | 8 | }; 9 | 10 | 11 | module.exports = { 12 | checkToken: checkToken 13 | } -------------------------------------------------------------------------------- /Angular/invoice-manager/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/app", 5 | "module": "commonjs", 6 | "target": "es5", 7 | "types": [ 8 | "jasmine", 9 | "jasminewd2", 10 | "node" 11 | ] 12 | } 13 | } -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Working with CSV files/classB.csv: -------------------------------------------------------------------------------- 1 | Student_height,Student_weight 2 | 126.25586317363256,54.00281432334363 3 | 178.56701008318754,79.11216483993003 4 | 198.8258950640911,88.83642963076373 5 | 163.68909908696526,71.97076756174332 6 | 194.53301967378079,86.77584944341478 7 | -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/testing/src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-root', 5 | templateUrl: './app.component.html', 6 | styleUrls: ['./app.component.css'] 7 | }) 8 | export class AppComponent { 9 | title = 'app'; 10 | } 11 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/Angular/src/assets/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/Angular/src/assets/login.png -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/Angular/src/assets/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/Angular/src/assets/user.jpg -------------------------------------------------------------------------------- /NodeJs/MP Full Stack Devloper/middleware.js: -------------------------------------------------------------------------------- 1 | let jwt = require('jsonwebtoken'); 2 | const config = require('./config.js'); 3 | 4 | let checkToken = (req, res, next) => { 5 | 6 | /*write your middleware code here*/ 7 | next(); 8 | }; 9 | 10 | 11 | module.exports = { 12 | checkToken: checkToken 13 | } -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/angular/src/app/models/users.ts: -------------------------------------------------------------------------------- 1 | export class Users { 2 | uname: string; 3 | pwd: string; 4 | mobile: number; 5 | email: string; 6 | location: string; 7 | 8 | constructor( values: Object = {}){ 9 | Object.assign(this, values); 10 | } 11 | } 12 | 13 | -------------------------------------------------------------------------------- /NodeJs/Node Js Essentials/fibonacci-series/fibonacci.js: -------------------------------------------------------------------------------- 1 | 2 | let n1 = 0, n2 = 1, nextTerm; 3 | let s = 0; 4 | 5 | 6 | for (let i = 1; n1 <= 4000000; i++) { 7 | if(n1 % 2 == 0){ 8 | s += n1 9 | } 10 | nextTerm = n1 + n2; 11 | n1 = n2; 12 | n2 = nextTerm; 13 | } 14 | 15 | console.log(s); -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/basic-webpage/webpoll/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | from django.urls import reverse 3 | 4 | class HomeTests(TestCase): 5 | def test_home(self): 6 | response=self.client.get(reverse('home')) 7 | self.assertEqual(response.status_code, 200) 8 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Python Pandas/Accessing Pandas Data Structures/classB.csv: -------------------------------------------------------------------------------- 1 | Student_height,Student_weight 2 | 126.25586317363256,54.00281432334363 3 | 178.56701008318754,79.11216483993003 4 | 198.8258950640911,88.83642963076373 5 | 163.68909908696526,71.97076756174332 6 | 194.53301967378079,86.77584944341478 7 | -------------------------------------------------------------------------------- /Java Architecture Program/logging/CodeLab-Logging/src/main/resources/static/js/repocode.js: -------------------------------------------------------------------------------- 1 | function openEditor(element){ 2 | element.parentElement.getElementsByClassName('code-editor')[0].style.display = "block"; 3 | } 4 | 5 | function closeEditor(element){ 6 | element.parentElement.parentElement.style.display = "none"; 7 | } -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/details/webpoll/templates/webpoll/question_detail.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

{{ question.questionname }}

4 | 5 |
6 | 7 | {% for choice in question.choice_set.all %} 8 | {% endfor %} 9 | 10 |
11 | 12 | -------------------------------------------------------------------------------- /Microservices/Spring Cantabile/cantabile-rest[Spring-project-files]/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.1/apache-maven-3.8.1-bin.zip 2 | wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar 3 | -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/angular/src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | 4 | @Component({ 5 | selector: 'app-root', 6 | templateUrl: './app.component.html', 7 | styleUrls: ['./app.component.css'] 8 | }) 9 | export class AppComponent { 10 | title = 'app'; 11 | 12 | } 13 | 14 | -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/angular/src/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/app", 5 | "baseUrl": "./", 6 | "module": "es2015", 7 | "types": [] 8 | }, 9 | "exclude": [ 10 | "test.ts", 11 | "**/*.spec.ts" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /Data Science/Data Visualisation/Must Know D3/Axes/app/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Learning D3 Js 4 | 5 | 6 |

Creating static Bar Chart

7 |
8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/testing/src/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/app", 5 | "baseUrl": "./", 6 | "module": "es2015", 7 | "types": [] 8 | }, 9 | "exclude": [ 10 | "test.ts", 11 | "**/*.spec.ts" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/details/webpoll/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import url,include 2 | from . import views 3 | 4 | app_name='webpoll' 5 | urlpatterns=[ 6 | url(r'^$', views.HomeView.as_view(), name='home'), 7 | url(r'^(?P[0-9]+)/$',views.QuestionDetailView.as_view(),name='detail'), 8 | ] -------------------------------------------------------------------------------- /NodeJs/Javascript Essentials/dom-user-registration/index.js: -------------------------------------------------------------------------------- 1 | function myFunction() { 2 | // Type your code here. 3 | alert(document.getElementById('myname').value+","+ 4 | document.getElementById('myphone').value+","+ 5 | document.getElementById('mycontry').value+","+ 6 | document.getElementById('mymail').value) 7 | } 8 | 9 | -------------------------------------------------------------------------------- /Angular/oriana/.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | max_line_length = off 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /Data Science/Data Visualisation/Must Know D3/Static Charts/app/index.js: -------------------------------------------------------------------------------- 1 | function d3update() { 2 | // add your code here 3 | const numArray = [10,20,30,40,50]; 4 | 5 | d3.selectAll(".list_items li") 6 | .data(numArray) 7 | .style('font-size', d => { 8 | return d + 'px'; 9 | }) 10 | 11 | }; 12 | d3update(); 13 | -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/mini-project-angular/src/app/models/credentials.model.ts: -------------------------------------------------------------------------------- 1 | export class Credentials { 2 | userId: number; 3 | username: string; 4 | password: string; 5 | isLoggedIn: boolean; 6 | 7 | constructor(values: Object = {}) { 8 | Object.assign(this, values); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Modern Web Development/MV Framework/news-application/src/app/components/news/news-item/news-item.component.css: -------------------------------------------------------------------------------- 1 | .fit-image { 2 | max-width: 100%; 3 | margin-bottom: 15px; 4 | } 5 | 6 | @media (min-width: 800px) { 7 | .modal-dialog { 8 | max-width: 800px; 9 | margin: 1.75rem auto; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /NodeJs/Node Js Essentials/pythagorean-triplets/App.js: -------------------------------------------------------------------------------- 1 | function findProd() { 2 | for (let i = 1; i <= 1000; i++) { 3 | for (let j = 1; j <= 1000; j++) { 4 | const k = 1000 - i - j; 5 | if (i * i + j * j == k * k) { 6 | return i * j * k; 7 | } 8 | } 9 | } 10 | } 11 | 12 | console.log(findProd()) -------------------------------------------------------------------------------- /Spring/Spring Saga/OrderService/src/main/java/com/fresco/saga/repo/OrderRepository.java: -------------------------------------------------------------------------------- 1 | package com.fresco.saga.repo; 2 | 3 | import org.springframework.data.jpa.repository.JpaRepository; 4 | 5 | import com.fresco.saga.models.Orders; 6 | 7 | public interface OrderRepository extends JpaRepository{ 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/mini-project-angular/src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-root', 5 | templateUrl: './app.component.html', 6 | styleUrls: ['./app.component.css'] 7 | }) 8 | export class AppComponent { 9 | title = 'app'; 10 | 11 | } 12 | 13 | -------------------------------------------------------------------------------- /Java Architecture Program/logging_fp/untitled/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Java Developer Curriculum/jdbc-mini-project/Q2.sql: -------------------------------------------------------------------------------- 1 | select country.name, car_model.name, sum(sales.quantity*car_model.price) as total_sales from sales join country on country.id = sales.country_id join car_model on car_model.id = sales.model_id where sales.sales_date like "%2020" group by country.name, car_model.name order by total_sales asc; 2 | -------------------------------------------------------------------------------- /NodeJs/Mini-Project/node_modules/minimist/test/parse_modified.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('parse with modifier functions' , function (t) { 5 | t.plan(1); 6 | 7 | var argv = parse([ '-b', '123' ], { boolean: 'b' }); 8 | t.deepEqual(argv, { b: true, _: [123] }); 9 | }); 10 | -------------------------------------------------------------------------------- /NodeJs/Serenade/try-2/views/auth/signup.hbs: -------------------------------------------------------------------------------- 1 |

Sign Up

2 | 3 |
4 | 5 | 6 | 7 | 8 |
9 | -------------------------------------------------------------------------------- /Angular/invoice-manager/.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see https://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | max_line_length = off 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/mini-project-angular/.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: https://EditorConfig.org 2 | 3 | # top-most EditorConfig file 4 | root = true 5 | 6 | [*] 7 | indent_style = space 8 | indent_size = 4 9 | end_of_line = crlf 10 | charset = utf-8 11 | trim_trailing_whitespace = true 12 | insert_final_newline = false -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/mini-project-angular/src/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/app", 5 | "baseUrl": "./", 6 | "module": "es2015", 7 | "types": [] 8 | }, 9 | "exclude": [ 10 | "test.ts", 11 | "**/*.spec.ts" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /Java Architecture Program/security/ApiGateway/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8000 2 | spring.application.name=apigateway 3 | 4 | spring.datasource.url=jdbc:mysql://localhost:3306/CodeLab 5 | spring.datasource.username=root 6 | spring.datasource.password=mysql 7 | spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver 8 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/angular/src/app/models/credentials.model.ts: -------------------------------------------------------------------------------- 1 | export class Credentials { 2 | userId: number; 3 | username: string; 4 | password: string; 5 | isLoggedIn: boolean; 6 | 7 | constructor(values: Object = {}) { 8 | Object.assign(this, values); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Microservices/Spring Cantabile/full-stack-api/HospitalRepository.java: -------------------------------------------------------------------------------- 1 | package com.example.project; 2 | 3 | import org.springframework.data.jpa.repository.JpaRepository; 4 | import org.springframework.stereotype.Repository; 5 | 6 | @Repository 7 | public interface HospitalRepository extends JpaRepository { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Modern Web Development/HTML5/Footer.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Destiny 6 | 7 | 8 | 9 |
10 |

Copyright @ TCS 2016

11 |
12 | 13 | -------------------------------------------------------------------------------- /Modern Web Development/HTML5/Header.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Destiny 6 | 7 | 8 | 9 |
10 |

Copyright @ TCS 2016

11 |
12 | 13 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/angular/src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-root', 5 | templateUrl: './app.component.html', 6 | styleUrls: ['./app.component.css'] 7 | }) 8 | export class AppComponent { 9 | title = 'app'; 10 | 11 | } 12 | 13 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/hibernate/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Modern Web Development/AngularJs1.x Directives/odd-even/app/index.js: -------------------------------------------------------------------------------- 1 | // Add your code here 2 | 3 | var app = angular.module('myApp', []); 4 | app.controller('myCtrl', function($scope) { 5 | $scope.number1=0; 6 | $scope.number2 = 0; 7 | $scope.odd_even = result => { 8 | return result % 2? 'odd': 'even'; 9 | } 10 | }); 11 | -------------------------------------------------------------------------------- /Digitate Unit Elective/angular/mini-project-angular/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | /* body { 3 | background-image: url("assets/images/white_leather.png"); 4 | } */ 5 | html,body,.container{ 6 | width: 100%; 7 | height: 100%; 8 | margin: 0; 9 | padding: 0; 10 | } -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/HealthCareService/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csrohit/fresco-play/HEAD/Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/HealthCareService/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/angular/e2e/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/e2e", 5 | "module": "commonjs", 6 | "target": "es5", 7 | "types": [ 8 | "jasmine", 9 | "jasminewd2", 10 | "node" 11 | ] 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/angular/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "./out-tsc/app", 5 | "types": [] 6 | }, 7 | "files": [ 8 | "src/main.ts", 9 | "src/polyfills.ts" 10 | ], 11 | "include": [ 12 | "src/**/*.d.ts" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /MP Java Complete Beginner/Arraylist/project-files/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/check.sh: -------------------------------------------------------------------------------- 1 | cd angular/ 2 | npm install > /dev/null 2>&1 3 | npm test > /dev/null 2>&1 4 | cat unit.xml 5 | cd ../nodejs/ 6 | npm install > /dev/null 2>&1 7 | bash dbinstall.sh > /dev/null 2>&1 8 | bash test.sh > //dev/null 2>&1 9 | npm run lint > /dev/null 2>&1 10 | npm run test > /dev/null 2>&1 11 | cat test-results.xml 12 | cd .. -------------------------------------------------------------------------------- /Java Architecture Program/db-management/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /MP Java Complete Beginner/abstract-class/project-files/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Modern Web Development/MV Framework/news-application/src/app/components/sections/sections.component.html: -------------------------------------------------------------------------------- 1 |
2 | 8 | 9 |
10 | 11 | -------------------------------------------------------------------------------- /NodeJs/Node Js Essentials/events-http-module/sample.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

Welcome ! what would oyu like to have

7 |
    8 |
  • Cofee
  • 9 |
  • Tea
  • 10 |
  • Milk
  • 11 |
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Angular/invoice-manager/src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | 4 | @Component({ 5 | 6 | selector: 'app-root', 7 | 8 | templateUrl: './app.component.html', 9 | 10 | styleUrls: ['./app.component.css'] 11 | 12 | }) 13 | 14 | 15 | export class AppComponent { 16 | 17 | title = 'Invoice'; 18 | 19 | } 20 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Struts 2/src/main/java/com/struts/dao/LoginDAO.java: -------------------------------------------------------------------------------- 1 | package com.struts.dao; 2 | 3 | import java.sql.Connection; 4 | import java.sql.ResultSet; 5 | import java.sql.Statement; 6 | 7 | import com.struts.DbUtil; 8 | import com.struts.pojo.Login; 9 | 10 | 11 | public class LoginDAO { 12 | 13 | } 14 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Struts 2/src/main/webapp/welcome.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=UTF-8" 2 | pageEncoding="UTF-8"%> 3 | 4 | 5 | 6 | 7 | Insert title here 8 | 9 | 10 | hello there 11 | 12 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/mysql/solution.sql: -------------------------------------------------------------------------------- 1 | select country.name, car_model.name, sum(sales.quantity*car_model.price) as total_sales from sales join country on country.id = sales.country_id join car_model on car_model.id = sales.model_id where sales.sales_date like "%2020" group by country.name, car_model.name order by total_sales asc; 2 | -------------------------------------------------------------------------------- /NodeJs/MP Full Stack Devloper/models/diseases.js: -------------------------------------------------------------------------------- 1 | var mongoose=require('mongoose'); 2 | 3 | var schema=mongoose.Schema; 4 | 5 | var ToySchema = new schema({ diseaseName: String }); 6 | 7 | const diseasesSchema=new schema({ 8 | _id: mongoose.Schema.Types.ObjectId, 9 | diseases:[String] 10 | }) 11 | 12 | module.exports=mongoose.model('diseases',diseasesSchema); -------------------------------------------------------------------------------- /NodeJs/MP Full Stack Devloper/models/user.js: -------------------------------------------------------------------------------- 1 | var mongoose=require('mongoose'); 2 | 3 | var schema=mongoose.Schema; 4 | 5 | const userSchema=new schema({ 6 | _id: mongoose.Schema.Types.ObjectId, 7 | userName: String, 8 | pwd: String, 9 | mobile:Number, 10 | email:String, 11 | location: String 12 | }) 13 | 14 | module.exports=mongoose.model('User',userSchema); -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/nodejs/models/diseases.js: -------------------------------------------------------------------------------- 1 | var mongoose=require('mongoose'); 2 | 3 | var schema=mongoose.Schema; 4 | 5 | var ToySchema = new schema({ diseaseName: String }); 6 | 7 | const diseasesSchema=new schema({ 8 | _id: mongoose.Schema.Types.ObjectId, 9 | diseases:[String] 10 | }) 11 | 12 | module.exports=mongoose.model('diseases',diseasesSchema); -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/nodejs/models/user.js: -------------------------------------------------------------------------------- 1 | var mongoose=require('mongoose'); 2 | 3 | var schema=mongoose.Schema; 4 | 5 | const userSchema=new schema({ 6 | _id: mongoose.Schema.Types.ObjectId, 7 | userName: String, 8 | pwd: String, 9 | mobile:Number, 10 | email:String, 11 | location: String 12 | }) 13 | 14 | module.exports=mongoose.model('User',userSchema); -------------------------------------------------------------------------------- /Angular/Routing/src/testing/global-jasmine.ts: -------------------------------------------------------------------------------- 1 | import jasmineRequire from 'jasmine-core/lib/jasmine-core/jasmine.js'; 2 | 3 | window['jasmineRequire'] = jasmineRequire; 4 | 5 | 6 | /* 7 | Copyright Google LLC. All Rights Reserved. 8 | Use of this source code is governed by an MIT-style license that 9 | can be found in the LICENSE file at http://angular.io/license 10 | */ -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/hibernate/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/getting-started/webpoll/urls.py: -------------------------------------------------------------------------------- 1 | #from django.urls import path 2 | from django.conf.urls import url,include 3 | from . import views 4 | 5 | app_name='webpoll' 6 | urlpatterns=[ 7 | url(r'^$', views.HomeView.as_view(), name='home'), 8 | url(r'^(?P[0-9]+)/$',views.QuestionDetailView.as_view(),name='detail'), 9 | ] -------------------------------------------------------------------------------- /Angular/Routing/src/tsconfig.spec.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/spec", 5 | "types": [ 6 | "jasmine", 7 | "node" 8 | ] 9 | }, 10 | "files": [ 11 | "test.ts", 12 | "polyfills.ts" 13 | ], 14 | "include": [ 15 | "**/*.spec.ts", 16 | "**/*.d.ts" 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /Angular/angular2-building_blocks/1-MyFirstApp-app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component} from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-mat-search', 5 | template: '.

Welcome to first angular app

', 6 | }) 7 | export class AppComponent implements OnInit { 8 | 9 | constructor( 10 | ) { } 11 | 12 | ngOnInit(): void { 13 | 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/Angular/src/app/models/loginResponse.ts: -------------------------------------------------------------------------------- 1 | export class LoginResponse { 2 | message: string; 3 | success: boolean; 4 | token: string; 5 | id: string; 6 | 7 | constructor( values: Object = {}){ 8 | Object.assign(this, values); 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/HealthCareService/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip 2 | wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar 3 | -------------------------------------------------------------------------------- /Spring/Spring Saga/OrderService/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8000 2 | 3 | spring.datasource.url=jdbc:h2:mem:testdb 4 | spring.datasource.driverClassName=org.h2.Driver 5 | spring.datasource.username=sa 6 | spring.datasource.password= 7 | spring.jpa.database-platform=org.hibernate.dialect.H2Dialect 8 | spring.h2.console.enabled=true 9 | spring.h2.console.path=/h2 -------------------------------------------------------------------------------- /Spring/Spring Saga/PaymentService/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8001 2 | spring.datasource.url=jdbc:h2:mem:testdb 3 | spring.datasource.driverClassName=org.h2.Driver 4 | spring.datasource.username=sa 5 | spring.datasource.password= 6 | spring.jpa.database-platform=org.hibernate.dialect.H2Dialect 7 | spring.h2.console.enabled=true 8 | spring.h2.console.path=/h2 -------------------------------------------------------------------------------- /Angular/angular2-building_blocks/event-binding/app.component.html: -------------------------------------------------------------------------------- 1 | Enter Your Name: 2 | 3 | 4 |
5 |

Message from Event Binding

6 |

7 | 8 | Welcome {{name}} 9 |

10 | -------------------------------------------------------------------------------- /Angular/invoice-manager/src/tsconfig.spec.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/spec", 5 | "types": [ 6 | "jasmine", 7 | "node" 8 | ] 9 | }, 10 | "files": [ 11 | "test.ts", 12 | "polyfills.ts" 13 | ], 14 | "include": [ 15 | "**/*.spec.ts", 16 | "**/*.d.ts" 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Numpy/array-manipulation3.py: -------------------------------------------------------------------------------- 1 | import ast 2 | import numpy as np 3 | 4 | # Enter your code here. Read input from STDIN. Print output to STDOUT 5 | def join_array(list1,list2): 6 | p = np.array(list1).reshape(2,2) 7 | q = np.array(list2).reshape(2,3) 8 | print(np.hstack([p,q])) 9 | 10 | 11 | 12 | if __name__ == "__main__": -------------------------------------------------------------------------------- /NodeJs/Serenade/try-2/models.js: -------------------------------------------------------------------------------- 1 | const { Sequelize, Model, DataTypes } = require('sequelize'); 2 | const sequelize = new Sequelize('sqlite::memory:'); 3 | 4 | class User extends Model {} 5 | User.init({ 6 | username: DataTypes.STRING, 7 | password: DataTypes.STRING, 8 | email: DataTypes.STRING 9 | }, { sequelize, modelName: 'user' }); 10 | 11 | module.exports.User = User; -------------------------------------------------------------------------------- /Angular/Routing/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Routing 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Numpy/array-manipulation1.py: -------------------------------------------------------------------------------- 1 | import numpy as np 2 | 3 | # Enter your code here. Read input from STDIN. Print output to STDOUT 4 | def array_split(i,r,c): 5 | #Write your code below 6 | x = np.arange(0,i, 1) 7 | y = x.reshape(r,c) 8 | a,b = np.hsplit(y,2) 9 | print(a) 10 | print(b) 11 | 12 | 13 | if __name__=="__main__": -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/angular/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | html,body,.container{ 3 | width: 100%; 4 | height: 100%; 5 | margin: 0; 6 | padding: 0; 7 | } 8 | html, body { height: 100%; } 9 | body { margin: 0; font-family: Roboto, "Helvetica Neue", sans-serif; } 10 | -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/angular/src/app/models/appointment.ts: -------------------------------------------------------------------------------- 1 | export class Appointment { 2 | status: string; 3 | patientId: number; 4 | fname: string; 5 | lname: string; 6 | disease: string; 7 | priority: string; 8 | tentativeDate: string; 9 | registeredTime: any; 10 | 11 | constructor(values: Object = {}) { 12 | Object.assign(this, values); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Angular/library/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- 1 | import { TestBed, async } from '@angular/core/testing'; 2 | import { AppComponent } from './app.component'; 3 | describe('AppComponent', () => { 4 | beforeEach(async(() => { 5 | TestBed.configureTestingModule({ 6 | declarations: [ 7 | AppComponent 8 | ], 9 | }).compileComponents(); 10 | })); 11 | 12 | }); 13 | -------------------------------------------------------------------------------- /Data Science/Data Visualisation/Must Know D3/Paths/app/api/name.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "johns", 4 | "age": 24 5 | }, 6 | { 7 | "name": "liyani", 8 | "age": 23 9 | }, 10 | { 11 | "name": "yadu", 12 | "age": 24 13 | }, 14 | { 15 | "name": "jaya", 16 | "age": 28 17 | }, 18 | { 19 | "name": "mac", 20 | "age": 31 21 | } 22 | ] 23 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/Angular/src/app/models/credentials.model.ts: -------------------------------------------------------------------------------- 1 | export class Credentials { 2 | userId: number; 3 | username: string; 4 | password: string; 5 | isLoggedIn: boolean; 6 | 7 | constructor(values: Object = {}) { 8 | Object.assign(this, values); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/details/.pydevproject: -------------------------------------------------------------------------------- 1 | 2 | 3 | Default 4 | python interpreter 5 | 6 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/test-views/.pydevproject: -------------------------------------------------------------------------------- 1 | 2 | 3 | Default 4 | python interpreter 5 | 6 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/voting/.pydevproject: -------------------------------------------------------------------------------- 1 | 2 | 3 | Default 4 | python interpreter 5 | 6 | -------------------------------------------------------------------------------- /Modern Web Development/MV Framework/news-application/src/app/components/navbar/navbar.component.html: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/angular/src/app/models/loginResponse.ts: -------------------------------------------------------------------------------- 1 | export class LoginResponse { 2 | email: string; 3 | location: string; 4 | message: string; 5 | mobile: number; 6 | success: boolean; 7 | token: string; 8 | uid: string; 9 | userName: string; 10 | 11 | constructor( values: Object = {}){ 12 | Object.assign(this, values); 13 | } 14 | } 15 | 16 | -------------------------------------------------------------------------------- /wings1/T4 - Library Management/src/test/java/com/example/project/LibraryManagementSystemApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.example.project; 2 | 3 | import org.junit.jupiter.api.Test; 4 | import org.springframework.boot.test.context.SpringBootTest; 5 | 6 | @SpringBootTest 7 | class LibraryManagementSystemApplicationTests { 8 | 9 | @Test 10 | void contextLoads() { 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /Angular/library/src/app/components/navbar/navbar.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-navbar', 5 | templateUrl: './navbar.component.html', 6 | styleUrls: ['./navbar.component.css'] 7 | }) 8 | export class NavbarComponent implements OnInit { 9 | 10 | constructor() { } 11 | 12 | ngOnInit() { 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /Data Science/Data Scientist's Toolbox/Numpy/array-manipulation2.py: -------------------------------------------------------------------------------- 1 | import ast 2 | import numpy as np 3 | # Enter your code here. Read input from STDIN. Print output to STDOUT 4 | def array_split(n,n_row,n_col): 5 | x = np.arange(0,n,1) 6 | z = x.reshape(n_row, n_col) 7 | a,b = np.vsplit(z,2) 8 | print(a) 9 | print(b) 10 | 11 | 12 | 13 | if __name__ == "__main__": -------------------------------------------------------------------------------- /Data Science/Data Visualisation/Exploring D3/Pie Charts/app/api/name.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "johns", 4 | "age": 24 5 | }, 6 | { 7 | "name": "liyani", 8 | "age": 23 9 | }, 10 | { 11 | "name": "yadu", 12 | "age": 24 13 | }, 14 | { 15 | "name": "jaya", 16 | "age": 28 17 | }, 18 | { 19 | "name": "mac", 20 | "age": 31 21 | } 22 | ] 23 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/score.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd HealthCareService 3 | mvn test 4 | cd ../ 5 | cd Angular 6 | sudo apt-get remove node -y; 7 | curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -; 8 | sudo apt-get install -y nodejs; 9 | npm install; 10 | ./node_modules/.bin/ng test --watch=false 11 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/basic-webpage/.pydevproject: -------------------------------------------------------------------------------- 1 | 2 | 3 | Default 4 | python interpreter 5 | 6 | -------------------------------------------------------------------------------- /Microservices/Construction/Django- Web Framework/test-models/.pydevproject: -------------------------------------------------------------------------------- 1 | 2 | 3 | Default 4 | python interpreter 5 | 6 | -------------------------------------------------------------------------------- /NodeJs/Mini-Project/node_modules/.bin/csv-parser.cmd: -------------------------------------------------------------------------------- 1 | @ECHO off 2 | SETLOCAL 3 | CALL :find_dp0 4 | 5 | IF EXIST "%dp0%\node.exe" ( 6 | SET "_prog=%dp0%\node.exe" 7 | ) ELSE ( 8 | SET "_prog=node" 9 | SET PATHEXT=%PATHEXT:;.JS;=;% 10 | ) 11 | 12 | "%_prog%" "%dp0%\..\csv-parser\bin\csv-parser" %* 13 | ENDLOCAL 14 | EXIT /b %errorlevel% 15 | :find_dp0 16 | SET dp0=%~dp0 17 | EXIT /b 18 | -------------------------------------------------------------------------------- /Angular/angular2-building_blocks/property-binding/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-root', 5 | templateUrl: './app.component.html' // refer app.component.html for adding message value using property binding 6 | }) 7 | export class AppComponent { 8 | message = "hey there"; 9 | //Define your message with hey there 10 | } 11 | -------------------------------------------------------------------------------- /Angular/angular2-building_blocks/two-way-data-binding/app.component.html: -------------------------------------------------------------------------------- 1 | Enter Your Name: 2 | 3 | 4 |
5 |

Message from Two way Binding

6 |

7 | 8 | Welcome {{name.first}} {{name.last}} 9 |

-------------------------------------------------------------------------------- /Data Science/Data Visualisation/Exploring D3/Pie Charts/app/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Learning D3 Js 4 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /Java Architecture Program/file-handler/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/Angular/e2e/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/e2e", 5 | "module": "commonjs", 6 | "target": "es5", 7 | "types": [ 8 | "jasmine", 9 | "jasminewd2", 10 | "node" 11 | ] 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Java Full Stack Development with Angular specialization/MP Java Springboot Angular Full Stack Application/Angular/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "./out-tsc/app", 5 | "types": [] 6 | }, 7 | "files": [ 8 | "src/main.ts", 9 | "src/polyfills.ts" 10 | ], 11 | "include": [ 12 | "src/**/*.d.ts" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /NodeJs/MP_Node_Angular/angular/src/app/models/patient.ts: -------------------------------------------------------------------------------- 1 | export class Patient { 2 | userId: string; 3 | fname: string; 4 | lname: string; 5 | gender: string; 6 | dob: string; 7 | mobile: number; 8 | email: string; 9 | desc?: string; 10 | // regTime: Date; 11 | 12 | constructor(values: Object = {}) { 13 | Object.assign(this, values); 14 | } 15 | } -------------------------------------------------------------------------------- /NodeJs/Node Js Essentials/events-http-module/app.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | const http = require('http'); 4 | const fs = require('fs') 5 | 6 | 7 | const server = http.createServer((req, res)=>{ 8 | 9 | fs.readFile('sample.html', 'utf8' , (err, data) => { 10 | if (err) { 11 | console.error(err) 12 | return 13 | } 14 | res.write(data); 15 | res.end(); 16 | }) 17 | 18 | }); 19 | server.listen(8000); -------------------------------------------------------------------------------- /NodeJs/Serenade/try-1/api/models/Segment.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | attributes: { 3 | id: { 4 | type: 'integer', 5 | autoIncrement: true, 6 | primaryKey: true 7 | }, 8 | name: { 9 | type: 'string', 10 | required: true, 11 | unique: true 12 | }, 13 | cars: { 14 | collection: 'Cars', 15 | via: 'segment' 16 | } 17 | } 18 | }; 19 | -------------------------------------------------------------------------------- /Angular/invoice-manager/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | import { AppPage } from './app.po'; 2 | 3 | describe('workspace-project App', () => { 4 | let page: AppPage; 5 | 6 | beforeEach(() => { 7 | page = new AppPage(); 8 | }); 9 | 10 | it('should display welcome message', () => { 11 | page.navigateTo(); 12 | expect(page.getTitleText()).toEqual('Welcome to Invoicer!'); 13 | }); 14 | }); 15 | --------------------------------------------------------------------------------