From 9eec61c644972e8dc5a81f7bb3e31e06c9f4edef Mon Sep 17 00:00:00 2001 From: Shikha-18-alt Date: Wed, 1 Apr 2026 03:05:27 +0530 Subject: [PATCH 1/2] Add new project structure for notes app --- Domain/App Development/Task/Shikha_cse_049 | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 Domain/App Development/Task/Shikha_cse_049 diff --git a/Domain/App Development/Task/Shikha_cse_049 b/Domain/App Development/Task/Shikha_cse_049 new file mode 100644 index 0000000..f60c297 --- /dev/null +++ b/Domain/App Development/Task/Shikha_cse_049 @@ -0,0 +1,37 @@ +.gitignore +.idea/.gitignore +.idea/AndroidProjectSystem.xml +.idea/codeStyles/Project.xml +.idea/compiler.xml +.idea/deploymentTargetSelector.xml +.idea/gradle.xml +.idea/misc.xml +.idea/vcs.xml +app/.gitignore +app/build.gradle.kts +app/proguard-rules.pro +app/src/androidTest/java/com/example/notesapp/ExampleInstrumentedTest.kt +app/src/main/AndroidManifest.xml +app/src/main/AndroidManifest.xml +app/src/main/java/com/example/notesapp/MainActivity.kt +app/src/main/java/com/example/notesapp/data/Note.kt +app/src/main/java/com/example/notesapp/data/NoteDao.kt +app/src/main/java/com/example/notesapp/data/NoteDatabase.kt +app/src/main/java/com/example/notesapp/ui/NoteAdapter.kt +app/src/main/java/com/example/notesapp/ui/NoteDetailFragment.kt +app/src/main/java/com/example/notesapp/ui/NoteListFragment.kt +app/src/main/java/com/example/notesapp/ui/NoteViewModel.kt +app/src/main/res/anim/slide_in_left.xml +app/src/main/res/anim/slide_in_right.xml +app/src/main/res/anim/slide_out_left.xml +app/src/main/res/anim/slide_out_right.xml +app/src/main/res/drawable/ic_launcher_background.xml +app/src/main/res/drawable/ic_launcher_foreground.xml +app/src/main/res/drawable/ic_note_icon.xml +app/src/main/res/layout/activity_main.xml +app/src/main/res/layout/fragment_note_detail.xml +app/src/main/res/layout/fragment_note_list.xml +app/src/main/res/layout/item_checklist.xml +app/src/main/res/layout/item_note.xml +app/src/main/res/mipmap-anydpi/ic_launcher.xml +app/src/main/res/mipmap-anydpi/ic_launcher_round.xml From 4148e53957a78e0dc87b1bd2189d5617ff8086c6 Mon Sep 17 00:00:00 2001 From: Shikha-18-alt Date: Wed, 1 Apr 2026 15:46:12 +0530 Subject: [PATCH 2/2] Add files via upload An app to record daily goals --- .../Task/Shikha_cse_049/README.md | 6 + .../Task/Shikha_cse_049/index.html | 45 +++++++ .../Task/Shikha_cse_049/script.js | 61 +++++++++ .../Task/Shikha_cse_049/style.css | 118 ++++++++++++++++++ .../Enigma-Induction-2026.lnk | Bin 0 -> 1447 bytes .../Enigma-Induction-2026/setup.bat | 15 +++ .../Enigma-Induction-2026/setup.sh | 13 ++ 7 files changed, 258 insertions(+) create mode 100644 CascadeProjects/Enigma-Induction-2026/Domain/Web Development/Task/Shikha_cse_049/README.md create mode 100644 CascadeProjects/Enigma-Induction-2026/Domain/Web Development/Task/Shikha_cse_049/index.html create mode 100644 CascadeProjects/Enigma-Induction-2026/Domain/Web Development/Task/Shikha_cse_049/script.js create mode 100644 CascadeProjects/Enigma-Induction-2026/Domain/Web Development/Task/Shikha_cse_049/style.css create mode 100644 CascadeProjects/Enigma-Induction-2026/Enigma-Induction-2026.lnk create mode 100644 CascadeProjects/Enigma-Induction-2026/setup.bat create mode 100644 CascadeProjects/Enigma-Induction-2026/setup.sh diff --git a/CascadeProjects/Enigma-Induction-2026/Domain/Web Development/Task/Shikha_cse_049/README.md b/CascadeProjects/Enigma-Induction-2026/Domain/Web Development/Task/Shikha_cse_049/README.md new file mode 100644 index 0000000..b5b0ace --- /dev/null +++ b/CascadeProjects/Enigma-Induction-2026/Domain/Web Development/Task/Shikha_cse_049/README.md @@ -0,0 +1,6 @@ +# Shikha_cse_049 Project + +This is the project folder for Shikha CSE 049. + +## Project Files +Add your project files here (HTML, CSS, JS, etc.) diff --git a/CascadeProjects/Enigma-Induction-2026/Domain/Web Development/Task/Shikha_cse_049/index.html b/CascadeProjects/Enigma-Induction-2026/Domain/Web Development/Task/Shikha_cse_049/index.html new file mode 100644 index 0000000..3298f89 --- /dev/null +++ b/CascadeProjects/Enigma-Induction-2026/Domain/Web Development/Task/Shikha_cse_049/index.html @@ -0,0 +1,45 @@ + + + + + + Shikha CSE 049 - Web Development Project + + + +
+

Enigma Induction 2026

+

Web Development Task

+
+ +
+
+

About This Project

+

This is a web development project submitted by Shikha CSE 049 for the Enigma Induction 2026 program.

+
+ +
+

Features

+
    +
  • Responsive Design
  • +
  • Modern CSS Styling
  • +
  • Interactive JavaScript
  • +
  • Clean HTML Structure
  • +
+
+ +
+

Contact

+

Name: Shikha

+

Branch: CSE

+

Registration: 049

+
+
+ +
+

© 2026 Shikha CSE 049 - Enigma Induction

+
+ + + + diff --git a/CascadeProjects/Enigma-Induction-2026/Domain/Web Development/Task/Shikha_cse_049/script.js b/CascadeProjects/Enigma-Induction-2026/Domain/Web Development/Task/Shikha_cse_049/script.js new file mode 100644 index 0000000..b2c917f --- /dev/null +++ b/CascadeProjects/Enigma-Induction-2026/Domain/Web Development/Task/Shikha_cse_049/script.js @@ -0,0 +1,61 @@ +// Interactive JavaScript for Shikha CSE 049 Web Development Project +document.addEventListener('DOMContentLoaded', function() { + + // Add smooth scrolling + document.querySelectorAll('a[href^="#"]').forEach(anchor => { + anchor.addEventListener('click', function (e) { + e.preventDefault(); + document.querySelector(this.getAttribute('href')).scrollIntoView({ + behavior: 'smooth' + }); + }); + }); + + // Add animation to sections when they come into view + const observerOptions = { + threshold: 0.1, + rootMargin: '0px 0px -50px 0px' + }; + + const observer = new IntersectionObserver(function(entries) { + entries.forEach(entry => { + if (entry.isIntersecting) { + entry.target.style.opacity = '1'; + entry.target.style.transform = 'translateY(0)'; + } + }); + }, observerOptions); + + // Observe all sections + document.querySelectorAll('section').forEach(section => { + section.style.opacity = '0'; + section.style.transform = 'translateY(20px)'; + section.style.transition = 'opacity 0.6s ease, transform 0.6s ease'; + observer.observe(section); + }); + + // Add interactive hover effects + const features = document.querySelectorAll('.features li'); + features.forEach(feature => { + feature.addEventListener('mouseenter', function() { + this.style.transform = 'translateX(10px)'; + this.style.transition = 'transform 0.3s ease'; + }); + + feature.addEventListener('mouseleave', function() { + this.style.transform = 'translateX(0)'; + }); + }); + + // Dynamic footer year + const footer = document.querySelector('footer p'); + if (footer) { + const currentYear = new Date().getFullYear(); + footer.innerHTML = `© ${currentYear} Shikha CSE 049 - Enigma Induction`; + } + + // Add a simple console message + console.log('🚀 Shikha CSE 049 - Web Development Project Loaded Successfully!'); + console.log('📁 Project: Enigma Induction 2026 Submission'); + console.log('👤 Developer: Shikha | Branch: CSE | Registration: 049'); +}); diff --git a/CascadeProjects/Enigma-Induction-2026/Domain/Web Development/Task/Shikha_cse_049/style.css b/CascadeProjects/Enigma-Induction-2026/Domain/Web Development/Task/Shikha_cse_049/style.css new file mode 100644 index 0000000..5d48a5d --- /dev/null +++ b/CascadeProjects/Enigma-Induction-2026/Domain/Web Development/Task/Shikha_cse_049/style.css @@ -0,0 +1,118 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: 'Arial', sans-serif; + line-height: 1.6; + color: #333; + background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); + min-height: 100vh; +} + +header { + text-align: center; + padding: 2rem; + background: rgba(255, 255, 255, 0.1); + backdrop-filter: blur(10px); + border-bottom: 1px solid rgba(255, 255, 255, 0.2); +} + +header h1 { + color: white; + font-size: 2.5rem; + margin-bottom: 0.5rem; + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); +} + +header p { + color: rgba(255, 255, 255, 0.9); + font-size: 1.2rem; +} + +main { + max-width: 800px; + margin: 0 auto; + padding: 2rem; +} + +section { + background: rgba(255, 255, 255, 0.95); + margin: 2rem 0; + padding: 2rem; + border-radius: 10px; + box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); + backdrop-filter: blur(10px); + border: 1px solid rgba(255, 255, 255, 0.2); +} + +section h2 { + color: #4a5568; + margin-bottom: 1rem; + font-size: 1.8rem; + border-bottom: 2px solid #667eea; + padding-bottom: 0.5rem; +} + +section p, section li { + color: #2d3748; + margin-bottom: 0.5rem; +} + +ul { + list-style: none; + padding-left: 0; +} + +ul li { + padding: 0.5rem 0; + border-bottom: 1px solid #e2e8f0; + position: relative; + padding-left: 1.5rem; +} + +ul li:before { + content: "✓"; + position: absolute; + left: 0; + color: #667eea; + font-weight: bold; +} + +ul li:last-child { + border-bottom: none; +} + +.contact p { + background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); + color: white; + padding: 0.5rem 1rem; + border-radius: 5px; + margin: 0.5rem 0; + display: inline-block; +} + +footer { + text-align: center; + padding: 2rem; + background: rgba(0, 0, 0, 0.2); + color: white; + margin-top: 2rem; +} + +@media (max-width: 768px) { + header h1 { + font-size: 2rem; + } + + main { + padding: 1rem; + } + + section { + padding: 1.5rem; + margin: 1rem 0; + } +} diff --git a/CascadeProjects/Enigma-Induction-2026/Enigma-Induction-2026.lnk b/CascadeProjects/Enigma-Induction-2026/Enigma-Induction-2026.lnk new file mode 100644 index 0000000000000000000000000000000000000000..885b622c9f830f1fab39145ccce9fd5949164e34 GIT binary patch literal 1447 zcmb7EYeY5bGpQlGUq0(94)QrD_omvlU>wrq7Yq#jO;?B z1zIViETaq>QT^zG(f^Qws3-`3^urJ_y8VdgIqzmkKZ@Ru=bZO)-t)ZgIp_WCM5Ibf zf+QLdlB!NnGO5v@IF`}2>+u^^S!_?%2z1+$xtH%k$IY;Bx|7h)RcVytcvmy3887v# zFTG5rwUX4ol-8R|41Wr_Aw9T-1HQx5h@P7w;(nRX@pyH}gElo;wp3d;S1^zKi|2HV z*O=$pS?1|sF{5>@%p(g<@27nf1e2Dk#a&tjiyw?35iJQ3E5^P|AOvIqoNU%cfLjpY z@hl*tu*%I>a3%az`Ay2D2 z;tz+kg;F6XRmdBAnnM)LhyDyO%L0r~cLw(4rqo-{{}|V2+-+8PtscM$qC23u1zb&$ zaFbTo+_bmItM^h;^+jvl_$+&L_m6FZJ@5PWXMehF(oUuJ(qYTnCuKYTwSEL;hbo9R z!?(`qa85`MUz@4RI`nOH@u1?(t;M{DiF1Gzz~9rTp?p}BB4xizR~9LVm(yx?C0Z9G z6OJ9UVs9QR6)BLfuy#aJmJNvs&4i)e#* z8zorLV^)uKwlyN(5@azndz0|RYmI0a9DERID(~K;b(#9gR8sxPfe*tb%+CkJLDHfB zr?8g5ei3gjXK|rG{AT#_zpl0rgDMni08c