├── Application for Personal Health Monitoring using Smartphone’s Built-in Sensors ├── api │ ├── Procfile │ ├── __pycache__ │ │ └── app.cpython-310.pyc │ ├── app.py │ ├── requirements.txt │ └── spo2.ipynb ├── app │ ├── build.gradle │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── raamen │ │ │ └── sih │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── raamen │ │ │ │ └── sih │ │ │ │ ├── Accelerometer.java │ │ │ │ ├── BloodPressureActivity.java │ │ │ │ ├── CameraService.java │ │ │ │ ├── HeartBeatActivity.java │ │ │ │ ├── ImageProcessing.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── ResultActivity.java │ │ │ │ ├── TimerActivity.java │ │ │ │ └── VitalsActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── circular_progressbar.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── image10.png │ │ │ ├── image11.png │ │ │ ├── image7.png │ │ │ ├── image9.png │ │ │ ├── img_5.xml │ │ │ └── rectangle_1.xml │ │ │ ├── layout │ │ │ ├── activity_accelerometer.xml │ │ │ ├── activity_bloodpressure.xml │ │ │ ├── activity_heartbeat.xml │ │ │ ├── activity_main.xml │ │ │ ├── activity_result.xml │ │ │ ├── activity_timer.xml │ │ │ └── activity_vitals.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── raamen │ │ └── sih │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Deep Learning-based Crop Yield Prediction ├── crop-prediction │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.e2e.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── requirements.txt │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── dialog-result-example-dialog.html │ │ │ └── material.ts │ │ ├── assets │ │ │ └── img │ │ │ │ ├── graphs │ │ │ │ ├── features │ │ │ │ │ └── regression-Bihar-Jan.png │ │ │ │ └── incomplete-values │ │ │ │ │ ├── graph.jpeg │ │ │ │ │ └── incomplete-v1.png │ │ │ │ ├── homepage │ │ │ │ ├── AgroB.jpg │ │ │ │ ├── card-header-img.jpg │ │ │ │ ├── github-circle-white-transparent.svg │ │ │ │ ├── higgs-boson-god-particle.jpg │ │ │ │ ├── logo.png │ │ │ │ └── use-case-1.png │ │ │ │ └── neural-net-diagrams │ │ │ │ ├── mcp.jpg │ │ │ │ ├── neuron.jpg │ │ │ │ ├── nn.png │ │ │ │ └── nn_wts_bias.png │ │ ├── browserslist │ │ ├── database.sql │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── karma.conf.js │ │ ├── login.html │ │ ├── login.js │ │ ├── main.ts │ │ ├── package.json │ │ ├── polyfills.ts │ │ ├── scripts │ │ │ ├── Bihar │ │ │ │ ├── April.csv │ │ │ │ ├── Aug.csv │ │ │ │ ├── Dec.csv │ │ │ │ ├── Feb.csv │ │ │ │ ├── Jan.csv │ │ │ │ ├── July.csv │ │ │ │ ├── June.csv │ │ │ │ ├── March.csv │ │ │ │ ├── May.csv │ │ │ │ ├── Nov.csv │ │ │ │ ├── Oct.csv │ │ │ │ └── Sept.csv │ │ │ ├── crop.py │ │ │ ├── odisha.csv │ │ │ └── test_tensorflow.py │ │ ├── styles.css │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json ├── data - Punjab.csv ├── data - Uttar Pradesh.csv └── data - West Bengal.csv ├── Digital Grievance Redressal for a Cleaner, Smarter India.zip ├── Integrated Disaster Management.zip ├── Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost ├── README.md ├── application.py ├── flask_session │ ├── 085cb67b895615e3c5cbf2320943e645 │ ├── 1211ffd02b804b8081638d95f8ab185b │ ├── 2029240f6d1128be89ddc32729463129 │ └── 4b1eb8ebf7f31f0f405e14c8c2c5fef3 ├── injury1.csv ├── requirements.txt ├── static │ ├── css │ │ ├── bootstrap.min.css │ │ ├── cricket.css │ │ ├── selection.css │ │ ├── sportstyle.css │ │ ├── style.css │ │ └── training.css │ └── javascript │ │ ├── bootstrap.min.js │ │ ├── graph.js │ │ ├── jquery.js │ │ └── pie.js └── templates │ ├── index.html │ └── layout.html ├── Real-time Emergency Response System ├── README.md ├── backend │ ├── hasura-graphql-engine │ │ ├── Dockerfile │ │ ├── app.json │ │ └── heroku.yml │ └── schema │ │ └── schema.sql └── client │ ├── README.md │ ├── components │ ├── Body.js │ ├── Dropdown.js │ ├── Flowcharts │ │ ├── CompanyFlowchart.js │ │ ├── Flowchart.js │ │ └── GovtFlowchart.js │ ├── Footer.js │ ├── Header.js │ ├── Headers │ │ ├── AdminHeader.js │ │ ├── AdminSidebar.js │ │ ├── CompanyHeader.js │ │ ├── CompanySidebar.js │ │ ├── UserHeader.js │ │ └── UserSidebar.js │ ├── PopUpModals │ │ ├── PopUpModalConfirm.js │ │ ├── PopUpModalJobs.js │ │ └── PopUpModalScheme.js │ ├── Profiles │ │ ├── AdminProfile.js │ │ ├── CompanyProfile.js │ │ └── UserProfile.js │ ├── Sidebar.js │ ├── SlideShow.js │ └── Video.js │ ├── next.config.js │ ├── package.json │ ├── pages │ ├── 404.js │ ├── Gesture │ │ ├── checkSnapshot.js │ │ └── saveSnapshot.js │ ├── _app.js │ ├── _document.js │ ├── api │ │ ├── hello.js │ │ └── sendMessage.js │ ├── contact.js │ ├── createJob.js │ ├── createScheme.js │ ├── createdJob │ │ ├── [...id].js │ │ └── reachout-sih_herokuapp_com.code-search │ ├── createdJobs.js │ ├── createdScheme │ │ └── [...id].js │ ├── createdSchemes.js │ ├── enrolledJobs.js │ ├── enrolledSchemes.js │ ├── governmentLogin.js │ ├── index.js │ ├── jobs.js │ ├── login.js │ ├── maps.js │ ├── profile.js │ └── schemes.js │ ├── postcss.config.js │ ├── public │ ├── HomePageImg.jpeg │ ├── banner_1.jpg │ ├── banner_2.jpg │ ├── banner_3.jpg │ ├── banner_4.jpg │ ├── favicon.ico │ ├── homemarker.png │ ├── icon-192x192.png │ ├── icon-256x256.png │ ├── icon-384x384.png │ ├── icon-512x512.png │ ├── main.png │ ├── manifest.json │ └── vercel.svg │ ├── styles │ ├── Home.module.css │ └── globals.css │ ├── tailwind.config.js │ ├── utils │ ├── cursor │ │ ├── b2.cur │ │ ├── b2.png │ │ ├── bh2.cur │ │ ├── hb.png │ │ ├── hw21.png │ │ ├── w2.cur │ │ ├── w21.png │ │ └── wh2.cur │ ├── reachout-tooltip.min.js │ └── supabaseClient.js │ └── yarn.lock ├── Smart Merit ├── README.md ├── code │ ├── aes.php │ ├── data │ ├── dbconnection │ │ ├── connect.php │ │ ├── index.php │ │ └── test.php │ ├── index.php │ ├── school │ │ ├── about │ │ │ └── index.php │ │ ├── admin │ │ │ ├── index.php │ │ │ ├── logout.php │ │ │ └── manage │ │ │ │ ├── New1.png │ │ │ │ ├── data │ │ │ │ ├── dropout.php │ │ │ │ ├── final.csv │ │ │ │ ├── finance.php │ │ │ │ ├── gen.php │ │ │ │ ├── health.php │ │ │ │ ├── index.php │ │ │ │ ├── new.py │ │ │ │ ├── op │ │ │ │ ├── percent.php │ │ │ │ ├── sc │ │ │ │ ├── table.js │ │ │ │ ├── unknown.php │ │ │ │ ├── view.php │ │ │ │ └── z.py │ │ ├── contact │ │ │ └── index.php │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ ├── font-awesome.min.css │ │ │ ├── instruction.css │ │ │ ├── register.css │ │ │ ├── schoolAdmin.css │ │ │ ├── schoolAdminAdd.css │ │ │ └── styles.css │ │ ├── img │ │ │ ├── Logo.png │ │ │ ├── anm.jpg │ │ │ ├── devmkg.jpg │ │ │ ├── education.jpg │ │ │ ├── foreigner.jpg │ │ │ ├── gujarat.jpg │ │ │ ├── icon.ico │ │ │ ├── pata_hai.jpg │ │ │ ├── rb.jpg │ │ │ └── shreya.jpg │ │ ├── index.php │ │ ├── instruction │ │ │ └── index.php │ │ ├── js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery-3.3.1.slim.min.js │ │ │ └── popper.min.js │ │ ├── login │ │ │ ├── index.php │ │ │ ├── login.php │ │ │ ├── logout.php │ │ │ └── manage │ │ │ │ ├── add.php │ │ │ │ ├── data │ │ │ │ ├── drop.php │ │ │ │ ├── drop_insert.php │ │ │ │ ├── index.php │ │ │ │ ├── op │ │ │ │ └── z.py │ │ ├── register │ │ │ ├── create.php │ │ │ ├── index.php │ │ │ ├── register.php │ │ │ └── test.php │ │ └── update │ │ │ └── index.php │ ├── test.php │ └── test.py └── presentation │ └── Hackathon_ppt.pptx └── techno - Copy.zip /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/api/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/api/__pycache__/app.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/api/__pycache__/app.cpython-310.pyc -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/api/app.py -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/api/requirements.txt -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/api/spo2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/api/spo2.ipynb -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/build.gradle -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/google-services.json -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/proguard-rules.pro -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/androidTest/java/com/raamen/sih/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/androidTest/java/com/raamen/sih/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/java/com/raamen/sih/Accelerometer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/java/com/raamen/sih/Accelerometer.java -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/java/com/raamen/sih/BloodPressureActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/java/com/raamen/sih/BloodPressureActivity.java -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/java/com/raamen/sih/CameraService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/java/com/raamen/sih/CameraService.java -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/java/com/raamen/sih/HeartBeatActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/java/com/raamen/sih/HeartBeatActivity.java -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/java/com/raamen/sih/ImageProcessing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/java/com/raamen/sih/ImageProcessing.java -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/java/com/raamen/sih/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/java/com/raamen/sih/MainActivity.java -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/java/com/raamen/sih/ResultActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/java/com/raamen/sih/ResultActivity.java -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/java/com/raamen/sih/TimerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/java/com/raamen/sih/TimerActivity.java -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/java/com/raamen/sih/VitalsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/java/com/raamen/sih/VitalsActivity.java -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/drawable/circular_progressbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/drawable/circular_progressbar.xml -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/drawable/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/drawable/image10.png -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/drawable/image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/drawable/image11.png -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/drawable/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/drawable/image7.png -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/drawable/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/drawable/image9.png -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/drawable/img_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/drawable/img_5.xml -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/drawable/rectangle_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/drawable/rectangle_1.xml -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/layout/activity_accelerometer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/layout/activity_accelerometer.xml -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/layout/activity_bloodpressure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/layout/activity_bloodpressure.xml -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/layout/activity_heartbeat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/layout/activity_heartbeat.xml -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/layout/activity_result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/layout/activity_result.xml -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/layout/activity_timer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/layout/activity_timer.xml -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/layout/activity_vitals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/layout/activity_vitals.xml -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/test/java/com/raamen/sih/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/app/src/test/java/com/raamen/sih/ExampleUnitTest.java -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/build.gradle -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/gradle.properties -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/gradlew -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/gradlew.bat -------------------------------------------------------------------------------- /Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Application for Personal Health Monitoring using Smartphone’s Built-in Sensors/settings.gradle -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/README.md -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/angular.json -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/browserslist -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/e2e/protractor.conf.js -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/e2e/src/app.po.ts -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/karma.conf.js -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/package-lock.json -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/package.json -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/requirements.txt -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/app/app.component.css -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/app/app.component.html -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/app/app.component.ts -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/app/app.module.ts -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/app/dialog-result-example-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/app/dialog-result-example-dialog.html -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/app/material.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/app/material.ts -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/graphs/features/regression-Bihar-Jan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/graphs/features/regression-Bihar-Jan.png -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/graphs/incomplete-values/graph.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/graphs/incomplete-values/graph.jpeg -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/graphs/incomplete-values/incomplete-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/graphs/incomplete-values/incomplete-v1.png -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/homepage/AgroB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/homepage/AgroB.jpg -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/homepage/card-header-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/homepage/card-header-img.jpg -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/homepage/github-circle-white-transparent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/homepage/github-circle-white-transparent.svg -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/homepage/higgs-boson-god-particle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/homepage/higgs-boson-god-particle.jpg -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/homepage/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/homepage/logo.png -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/homepage/use-case-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/homepage/use-case-1.png -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/neural-net-diagrams/mcp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/neural-net-diagrams/mcp.jpg -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/neural-net-diagrams/neuron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/neural-net-diagrams/neuron.jpg -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/neural-net-diagrams/nn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/neural-net-diagrams/nn.png -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/neural-net-diagrams/nn_wts_bias.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/assets/img/neural-net-diagrams/nn_wts_bias.png -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/browserslist -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/database.sql -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/environments/environment.ts -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/favicon.ico -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/index.html -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/karma.conf.js -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/login.html -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/login.js -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/main.ts -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/package.json -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/polyfills.ts -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/April.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/April.csv -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/Aug.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/Aug.csv -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/Dec.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/Dec.csv -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/Feb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/Feb.csv -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/Jan.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/Jan.csv -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/July.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/July.csv -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/June.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/June.csv -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/March.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/March.csv -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/May.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/May.csv -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/Nov.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/Nov.csv -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/Oct.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/Oct.csv -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/Sept.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/Bihar/Sept.csv -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/crop.py -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/odisha.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/odisha.csv -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/test_tensorflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/scripts/test_tensorflow.py -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/styles.css -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/test.ts -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/tsconfig.app.json -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/tsconfig.spec.json -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/src/tslint.json -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/tsconfig.app.json -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/tsconfig.json -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/tsconfig.spec.json -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/crop-prediction/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/crop-prediction/tslint.json -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/data - Punjab.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/data - Punjab.csv -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/data - Uttar Pradesh.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/data - Uttar Pradesh.csv -------------------------------------------------------------------------------- /Deep Learning-based Crop Yield Prediction/data - West Bengal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Deep Learning-based Crop Yield Prediction/data - West Bengal.csv -------------------------------------------------------------------------------- /Digital Grievance Redressal for a Cleaner, Smarter India.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Digital Grievance Redressal for a Cleaner, Smarter India.zip -------------------------------------------------------------------------------- /Integrated Disaster Management.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Integrated Disaster Management.zip -------------------------------------------------------------------------------- /Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/README.md -------------------------------------------------------------------------------- /Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/application.py -------------------------------------------------------------------------------- /Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/flask_session/085cb67b895615e3c5cbf2320943e645: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/flask_session/085cb67b895615e3c5cbf2320943e645 -------------------------------------------------------------------------------- /Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/flask_session/1211ffd02b804b8081638d95f8ab185b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/flask_session/1211ffd02b804b8081638d95f8ab185b -------------------------------------------------------------------------------- /Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/flask_session/2029240f6d1128be89ddc32729463129: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/flask_session/2029240f6d1128be89ddc32729463129 -------------------------------------------------------------------------------- /Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/flask_session/4b1eb8ebf7f31f0f405e14c8c2c5fef3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/flask_session/4b1eb8ebf7f31f0f405e14c8c2c5fef3 -------------------------------------------------------------------------------- /Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/injury1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/injury1.csv -------------------------------------------------------------------------------- /Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/requirements.txt: -------------------------------------------------------------------------------- 1 | sklearn 2 | Flask 3 | matplotlib 4 | numpy 5 | -------------------------------------------------------------------------------- /Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/static/css/cricket.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/static/css/cricket.css -------------------------------------------------------------------------------- /Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/static/css/selection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/static/css/selection.css -------------------------------------------------------------------------------- /Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/static/css/sportstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/static/css/sportstyle.css -------------------------------------------------------------------------------- /Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/static/css/style.css -------------------------------------------------------------------------------- /Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/static/css/training.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/static/css/training.css -------------------------------------------------------------------------------- /Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/static/javascript/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/static/javascript/bootstrap.min.js -------------------------------------------------------------------------------- /Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/static/javascript/graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/static/javascript/graph.js -------------------------------------------------------------------------------- /Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/static/javascript/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/static/javascript/jquery.js -------------------------------------------------------------------------------- /Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/static/javascript/pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/static/javascript/pie.js -------------------------------------------------------------------------------- /Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/templates/index.html -------------------------------------------------------------------------------- /Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Predictive Modeling for Athlete Injury Recovery Time and Setback Risk using Random Forest and XGBoost/templates/layout.html -------------------------------------------------------------------------------- /Real-time Emergency Response System/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/README.md -------------------------------------------------------------------------------- /Real-time Emergency Response System/backend/hasura-graphql-engine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/backend/hasura-graphql-engine/Dockerfile -------------------------------------------------------------------------------- /Real-time Emergency Response System/backend/hasura-graphql-engine/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/backend/hasura-graphql-engine/app.json -------------------------------------------------------------------------------- /Real-time Emergency Response System/backend/hasura-graphql-engine/heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/backend/hasura-graphql-engine/heroku.yml -------------------------------------------------------------------------------- /Real-time Emergency Response System/backend/schema/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/backend/schema/schema.sql -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/README.md -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/Body.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/Dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/Dropdown.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/Flowcharts/CompanyFlowchart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/Flowcharts/CompanyFlowchart.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/Flowcharts/Flowchart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/Flowcharts/Flowchart.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/Flowcharts/GovtFlowchart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/Flowcharts/GovtFlowchart.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/Footer.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/Header.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/Headers/AdminHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/Headers/AdminHeader.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/Headers/AdminSidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/Headers/AdminSidebar.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/Headers/CompanyHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/Headers/CompanyHeader.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/Headers/CompanySidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/Headers/CompanySidebar.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/Headers/UserHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/Headers/UserHeader.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/Headers/UserSidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/Headers/UserSidebar.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/PopUpModals/PopUpModalConfirm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/PopUpModals/PopUpModalConfirm.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/PopUpModals/PopUpModalJobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/PopUpModals/PopUpModalJobs.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/PopUpModals/PopUpModalScheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/PopUpModals/PopUpModalScheme.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/Profiles/AdminProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/Profiles/AdminProfile.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/Profiles/CompanyProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/Profiles/CompanyProfile.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/Profiles/UserProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/Profiles/UserProfile.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/Sidebar.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/SlideShow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/SlideShow.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/components/Video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/components/Video.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/next.config.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/package.json -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/404.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/Gesture/checkSnapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/Gesture/checkSnapshot.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/Gesture/saveSnapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/Gesture/saveSnapshot.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/_app.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/_document.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/api/hello.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/api/sendMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/api/sendMessage.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/contact.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/createJob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/createJob.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/createScheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/createScheme.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/createdJob/[...id].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/createdJob/[...id].js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/createdJob/reachout-sih_herokuapp_com.code-search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/createdJob/reachout-sih_herokuapp_com.code-search -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/createdJobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/createdJobs.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/createdScheme/[...id].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/createdScheme/[...id].js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/createdSchemes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/createdSchemes.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/enrolledJobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/enrolledJobs.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/enrolledSchemes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/enrolledSchemes.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/governmentLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/governmentLogin.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/index.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/jobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/jobs.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/login.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/maps.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/profile.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/pages/schemes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/pages/schemes.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/postcss.config.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/public/HomePageImg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/public/HomePageImg.jpeg -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/public/banner_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/public/banner_1.jpg -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/public/banner_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/public/banner_2.jpg -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/public/banner_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/public/banner_3.jpg -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/public/banner_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/public/banner_4.jpg -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/public/favicon.ico -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/public/homemarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/public/homemarker.png -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/public/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/public/icon-192x192.png -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/public/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/public/icon-256x256.png -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/public/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/public/icon-384x384.png -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/public/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/public/icon-512x512.png -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/public/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/public/main.png -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/public/manifest.json -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/public/vercel.svg -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/styles/Home.module.css -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/styles/globals.css -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/tailwind.config.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/utils/cursor/b2.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/utils/cursor/b2.cur -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/utils/cursor/b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/utils/cursor/b2.png -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/utils/cursor/bh2.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/utils/cursor/bh2.cur -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/utils/cursor/hb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/utils/cursor/hb.png -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/utils/cursor/hw21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/utils/cursor/hw21.png -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/utils/cursor/w2.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/utils/cursor/w2.cur -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/utils/cursor/w21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/utils/cursor/w21.png -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/utils/cursor/wh2.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/utils/cursor/wh2.cur -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/utils/reachout-tooltip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/utils/reachout-tooltip.min.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/utils/supabaseClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/utils/supabaseClient.js -------------------------------------------------------------------------------- /Real-time Emergency Response System/client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Real-time Emergency Response System/client/yarn.lock -------------------------------------------------------------------------------- /Smart Merit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/README.md -------------------------------------------------------------------------------- /Smart Merit/code/aes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/aes.php -------------------------------------------------------------------------------- /Smart Merit/code/data: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | -------------------------------------------------------------------------------- /Smart Merit/code/dbconnection/connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/dbconnection/connect.php -------------------------------------------------------------------------------- /Smart Merit/code/dbconnection/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/dbconnection/index.php -------------------------------------------------------------------------------- /Smart Merit/code/dbconnection/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/dbconnection/test.php -------------------------------------------------------------------------------- /Smart Merit/code/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Smart Merit/code/school/about/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/about/index.php -------------------------------------------------------------------------------- /Smart Merit/code/school/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/admin/index.php -------------------------------------------------------------------------------- /Smart Merit/code/school/admin/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/admin/logout.php -------------------------------------------------------------------------------- /Smart Merit/code/school/admin/manage/New1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/admin/manage/New1.png -------------------------------------------------------------------------------- /Smart Merit/code/school/admin/manage/data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Smart Merit/code/school/admin/manage/dropout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/admin/manage/dropout.php -------------------------------------------------------------------------------- /Smart Merit/code/school/admin/manage/final.csv: -------------------------------------------------------------------------------- 1 | adhar,name,gender,scid 2 | 123456789011,no one,Others,2 3 | -------------------------------------------------------------------------------- /Smart Merit/code/school/admin/manage/finance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/admin/manage/finance.php -------------------------------------------------------------------------------- /Smart Merit/code/school/admin/manage/gen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/admin/manage/gen.php -------------------------------------------------------------------------------- /Smart Merit/code/school/admin/manage/health.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/admin/manage/health.php -------------------------------------------------------------------------------- /Smart Merit/code/school/admin/manage/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/admin/manage/index.php -------------------------------------------------------------------------------- /Smart Merit/code/school/admin/manage/new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/admin/manage/new.py -------------------------------------------------------------------------------- /Smart Merit/code/school/admin/manage/op: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Smart Merit/code/school/admin/manage/percent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/admin/manage/percent.php -------------------------------------------------------------------------------- /Smart Merit/code/school/admin/manage/sc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Smart Merit/code/school/admin/manage/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/admin/manage/table.js -------------------------------------------------------------------------------- /Smart Merit/code/school/admin/manage/unknown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/admin/manage/unknown.php -------------------------------------------------------------------------------- /Smart Merit/code/school/admin/manage/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/admin/manage/view.php -------------------------------------------------------------------------------- /Smart Merit/code/school/admin/manage/z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/admin/manage/z.py -------------------------------------------------------------------------------- /Smart Merit/code/school/contact/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/contact/index.php -------------------------------------------------------------------------------- /Smart Merit/code/school/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/css/bootstrap.min.css -------------------------------------------------------------------------------- /Smart Merit/code/school/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/css/font-awesome.min.css -------------------------------------------------------------------------------- /Smart Merit/code/school/css/instruction.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/css/instruction.css -------------------------------------------------------------------------------- /Smart Merit/code/school/css/register.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/css/register.css -------------------------------------------------------------------------------- /Smart Merit/code/school/css/schoolAdmin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/css/schoolAdmin.css -------------------------------------------------------------------------------- /Smart Merit/code/school/css/schoolAdminAdd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/css/schoolAdminAdd.css -------------------------------------------------------------------------------- /Smart Merit/code/school/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/css/styles.css -------------------------------------------------------------------------------- /Smart Merit/code/school/img/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/img/Logo.png -------------------------------------------------------------------------------- /Smart Merit/code/school/img/anm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/img/anm.jpg -------------------------------------------------------------------------------- /Smart Merit/code/school/img/devmkg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/img/devmkg.jpg -------------------------------------------------------------------------------- /Smart Merit/code/school/img/education.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/img/education.jpg -------------------------------------------------------------------------------- /Smart Merit/code/school/img/foreigner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/img/foreigner.jpg -------------------------------------------------------------------------------- /Smart Merit/code/school/img/gujarat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/img/gujarat.jpg -------------------------------------------------------------------------------- /Smart Merit/code/school/img/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/img/icon.ico -------------------------------------------------------------------------------- /Smart Merit/code/school/img/pata_hai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/img/pata_hai.jpg -------------------------------------------------------------------------------- /Smart Merit/code/school/img/rb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/img/rb.jpg -------------------------------------------------------------------------------- /Smart Merit/code/school/img/shreya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/img/shreya.jpg -------------------------------------------------------------------------------- /Smart Merit/code/school/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/index.php -------------------------------------------------------------------------------- /Smart Merit/code/school/instruction/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/instruction/index.php -------------------------------------------------------------------------------- /Smart Merit/code/school/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/js/bootstrap.min.js -------------------------------------------------------------------------------- /Smart Merit/code/school/js/jquery-3.3.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/js/jquery-3.3.1.slim.min.js -------------------------------------------------------------------------------- /Smart Merit/code/school/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/js/popper.min.js -------------------------------------------------------------------------------- /Smart Merit/code/school/login/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/login/index.php -------------------------------------------------------------------------------- /Smart Merit/code/school/login/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/login/login.php -------------------------------------------------------------------------------- /Smart Merit/code/school/login/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/login/logout.php -------------------------------------------------------------------------------- /Smart Merit/code/school/login/manage/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/login/manage/add.php -------------------------------------------------------------------------------- /Smart Merit/code/school/login/manage/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/login/manage/data -------------------------------------------------------------------------------- /Smart Merit/code/school/login/manage/drop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/login/manage/drop.php -------------------------------------------------------------------------------- /Smart Merit/code/school/login/manage/drop_insert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/login/manage/drop_insert.php -------------------------------------------------------------------------------- /Smart Merit/code/school/login/manage/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/login/manage/index.php -------------------------------------------------------------------------------- /Smart Merit/code/school/login/manage/op: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/login/manage/op -------------------------------------------------------------------------------- /Smart Merit/code/school/login/manage/z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/login/manage/z.py -------------------------------------------------------------------------------- /Smart Merit/code/school/register/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/register/create.php -------------------------------------------------------------------------------- /Smart Merit/code/school/register/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/register/index.php -------------------------------------------------------------------------------- /Smart Merit/code/school/register/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/register/register.php -------------------------------------------------------------------------------- /Smart Merit/code/school/register/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/register/test.php -------------------------------------------------------------------------------- /Smart Merit/code/school/update/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/school/update/index.php -------------------------------------------------------------------------------- /Smart Merit/code/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/test.php -------------------------------------------------------------------------------- /Smart Merit/code/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/code/test.py -------------------------------------------------------------------------------- /Smart Merit/presentation/Hackathon_ppt.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/Smart Merit/presentation/Hackathon_ppt.pptx -------------------------------------------------------------------------------- /techno - Copy.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineers-planet/Smart-India-Hackathon-Projects-/HEAD/techno - Copy.zip --------------------------------------------------------------------------------