├── .vscode └── settings.json ├── priya_300.png ├── ankita_snap.jpg ├── github-mark.png ├── rahul_high.jpeg ├── Excoders (2).png ├── natique-final.jpg ├── snigdha-final.jpg ├── review-card.css ├── index.js ├── README.md ├── styles.css ├── CONTRIBUTING.md ├── Hacktoberfest.md ├── faq.html ├── projects.html └── index.html /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /priya_300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkamilya/excoders/HEAD/priya_300.png -------------------------------------------------------------------------------- /ankita_snap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkamilya/excoders/HEAD/ankita_snap.jpg -------------------------------------------------------------------------------- /github-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkamilya/excoders/HEAD/github-mark.png -------------------------------------------------------------------------------- /rahul_high.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkamilya/excoders/HEAD/rahul_high.jpeg -------------------------------------------------------------------------------- /Excoders (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkamilya/excoders/HEAD/Excoders (2).png -------------------------------------------------------------------------------- /natique-final.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkamilya/excoders/HEAD/natique-final.jpg -------------------------------------------------------------------------------- /snigdha-final.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulkamilya/excoders/HEAD/snigdha-final.jpg -------------------------------------------------------------------------------- /review-card.css: -------------------------------------------------------------------------------- 1 | /* review-card.css */ 2 | 3 | .review-card { 4 | background-color: #ffffff; 5 | border: 1px solid #e2e8f0; 6 | border-radius: 8px; 7 | padding: 20px; 8 | margin: 10px; /* You can adjust this margin to control the space between cards */ 9 | width: auto; /* Set the desired width of your card */ 10 | box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 11 | transition: transform 0.3s ease; 12 | } 13 | 14 | .review-card:hover { 15 | transform: scale(1.05); /* Increase size on hover for a subtle effect */ 16 | border-color: pink; 17 | } 18 | 19 | .review-card h2 { 20 | font-size: 1.5rem; 21 | font-weight: bold; 22 | margin-bottom: 10px; 23 | } 24 | 25 | .review-card p { 26 | font-size: 1rem; 27 | color: #4a5568; 28 | margin-bottom: 10px; 29 | } 30 | 31 | .review-card .author { 32 | font-weight: bold; 33 | color: #2d3748; 34 | } 35 | 36 | .review-card .designation { 37 | color: #718096; 38 | } 39 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | const hamburgerMenu = document.getElementById("hamburger-menu") 2 | const hamburgerMenuBtn = document.getElementById("hamburger-menu-btn") 3 | 4 | hamburgerMenuBtn.addEventListener("click", () => { 5 | hamburgerMenu.style.display = hamburgerMenu.style.display === "block" ? "none" : "block" 6 | if (hamburgerMenu.style.transform === 'translateX(0%)') { 7 | hamburgerMenu.style.transform = 'translateX(100%)'; 8 | } else { 9 | hamburgerMenu.style.transform = 'translateX(0%)'; 10 | } 11 | }) 12 | 13 | 14 | function adjustingPadding(){ 15 | const navbar= document.getElementById('navbar'); 16 | const body= document.body; 17 | const navbarHeight=navbar.clientHeight; 18 | body.style.paddingTop=navbarHeight+'px'; 19 | } 20 | 21 | window.addEventListener('load',adjustingPadding); 22 | window.addEventListener('resize',adjustingPadding); 23 | 24 | //preloader 25 | window.addEventListener('load', () => { 26 | // After the page and all assets have loaded 27 | const preloader = document.querySelector('.preloader'); 28 | const mainSite = document.querySelector('.site-wrap'); 29 | 30 | setTimeout(() => { 31 | preloader.style.display = 'none'; // Hide the preloader 32 | mainSite.style.display = 'block'; // Show the main site 33 | }, 3000); // 3 seconds 34 | }); -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 |

ExCoders 🚀

3 | 4 |

5 | Empowering aspiring coders through collaboration and knowledge sharing 6 |

7 | 8 |

9 | App Screenshot 10 |

11 | 12 | ## 🎓 About ExCoders 13 | 14 | Welcome to ExCoders, a vibrant community of tech enthusiasts dedicated to fostering learning and collaboration. Our mission is to provide a supportive space for both beginners and seasoned developers to share knowledge, work on exciting projects, and collectively enhance our coding skills. 15 | 16 | At ExCoders, we embrace the fact that we're perpetual learners. The passion for coding fuels our journey of exploration into new technologies and continuous self-improvement. If you're eager to be part of a community that values growth and mutual support, you've found your place with ExCoders. 17 | 18 | ## 🌟 Key Features 19 | 20 | - **Collaborative Projects:** Engage in diverse projects that challenge and inspire growth. 21 | - **Learning Environment:** A space where everyone, regardless of skill level, can ask questions and share insights. 22 | - **Passionate Community:** Connect with like-minded individuals who are enthusiastic about coding. 23 | 24 | ## 🚀 Getting Started 25 | 26 | To get started with ExCoders, follow these simple steps: 27 | 28 | ```bash 29 | git clone https://github.com/Arya-n-101/excoders.git 30 | cd excoders 31 | 32 | 33 | 🤝 Contributing 34 | We welcome contributions! If you'd like to contribute to ExCoders, please follow our Contribution Guidelines. 35 | 36 | 📝 Authors 37 | - [Rahul Kamilya](https://github.com/rahulkamilya) 38 | - [Priyanshu Das](https://www.facebook.com/priyanshu.das.568294) 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | @media (max-width: 768px) { 2 | .bg-blue-900 { 3 | z-index: 999; 4 | } 5 | body { 6 | padding-top: 0px; 7 | } 8 | .new{ 9 | max-width: 186.488px; 10 | } 11 | } 12 | 13 | 14 | 15 | /* code for logo animation */ 16 | .logo-container { 17 | position: relative; 18 | display: flex; 19 | align-items: center; 20 | } 21 | 22 | .logo-icon { 23 | opacity: 0; 24 | animation: slideIn 1s ease-in-out forwards; 25 | margin-right: 20px; /* Add space to the right side of the icon (adjust the value as needed) */ 26 | } 27 | 28 | .text-container { 29 | display: flex; 30 | margin-left: 10px; 31 | } 32 | 33 | .logo-text { 34 | opacity: 0; 35 | animation: fadeIn 0.5s ease-in-out forwards; 36 | animation-delay: 1s; /* Delay the animation by 1 second */ 37 | 38 | } 39 | 40 | @keyframes slideIn { 41 | 0% { 42 | transform: translateX(100%); 43 | opacity: 0; 44 | } 45 | 100% { 46 | transform: translateX(0); 47 | opacity: 1; 48 | } 49 | } 50 | 51 | @keyframes fadeIn { 52 | 0% { 53 | opacity: 0; 54 | } 55 | 100% { 56 | opacity: 1; 57 | } 58 | } 59 | /*Preloader animation*/ 60 | .preloader { 61 | position: fixed; 62 | top: 0; 63 | left: 0; 64 | width: 100%; 65 | height: 100%; 66 | background-color: transparent; 67 | display: flex; 68 | justify-content: center; 69 | align-items: center; 70 | z-index: 999; 71 | } 72 | .preloader-logo { 73 | width: 200px; /* Adjust the size to your preference */ 74 | height: 200px; 75 | border-radius: 50%; 76 | animation: pulse 3s linear infinite; 77 | } 78 | @-webkit-keyframes "pulse" { 79 | 0% { 80 | -webkit-transform: scale(1.1); 81 | transform: scale(1.1); 82 | } 83 | 50% { 84 | -webkit-transform: scale(0.8); 85 | transform: scale(0.8); 86 | } 87 | 100% { 88 | -webkit-transform: scale(1); 89 | transform: scale(1); 90 | } 91 | } 92 | 93 | .site-wrap { 94 | display: none; /* Hide the main site initially */ 95 | } 96 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Hacktoberfest 2023 Contributing Guidelines 2 | 3 | ![](https://hacktoberfest.com/_next/static/media/logo-hacktoberfest--horizontal.ebc5fdc8.svg) 4 | 5 | Welcome to Hacktoberfest 2023! We're excited that you want to contribute to our project "Team excoders". Before you get started, please take a moment to read through our contributing guidelines to ensure a smooth and productive collaboration. 6 | 7 | ## Getting Started 8 | 9 | - Make sure you have a GitHub account. If you don't, you can sign up [here](https://github.com/signup). 10 | - Fork the repository to your GitHub account. 11 | - Clone the forked repository to your local machine. 12 | 13 | ## Code of Conduct 14 | 15 | Please note that this project follows the Hacktoberfest Code of Conduct, and we expect all contributors to adhere to it. Be respectful, considerate, and welcoming to others. 16 | 17 | ## How to Contribute 18 | 19 | ### Reporting Issues 20 | 21 | If you encounter any bugs, have questions, or want to propose new features, please create an issue on the GitHub repository. Make sure to provide a clear and detailed description of the problem or suggestion. We appreciate the use of templates if provided. 22 | 23 | ### Submitting Pull Request 24 | 25 | - Check the [issue tracker](https://github.com/rahulkamilya/excoders/issues) for open issues that you can work on or create a new issue if you have a -specific contribution in mind. 26 | - Fork the repository to your GitHub account and create a new branch from the main branch. Use a descriptive branch name that reflects your contribution. 27 | - Make your changes, following the coding guidelines mentioned below. 28 | - Test your changes thoroughly to ensure they don't introduce new issues. 29 | - Commit your changes with clear and concise commit messages. 30 | - Push your branch to your GitHub fork. 31 | - Open a pull request (PR) to the main branch of the original repository. 32 | - Provide a detailed description of your changes in the PR description. 33 | 34 | ## Getting started 35 | 36 | - Fork this repository (Click the Fork button in the top right of this page, click your Profile Image) 37 | - Clone your fork down to your local machine 38 | 39 | ```markdown 40 | git clone https://github.com/rahulkamilya/excoders.git 41 | ``` 42 | 43 | - Create a branch 44 | 45 | ```markdown 46 | git checkout -b branch-name 47 | ``` 48 | 49 | - Make your changes (choose from any task below) 50 | - Commit and push 51 | 52 | ```markdown 53 | git add . 54 | git commit -m 'Commit message' 55 | git push origin branch-name 56 | ``` 57 | 58 | - Create a new pull request from your forked repository (Click the `New Pull Request` button located at the top of your repo) 59 | - Wait for your PR review and merge approval! 60 | - **Star this repository** if you had fun! 61 | - Be responsive to any feedback or comments on your PR and make necessary updates. 62 | -------------------------------------------------------------------------------- /Hacktoberfest.md: -------------------------------------------------------------------------------- 1 |

🎃 HacktoberFest-2022 🎃

2 | 3 | ![Opensource](https://img.shields.io/badge/openSource-%E2%9D%A4-blue) ![PR](https://img.shields.io/badge/PRs-welcome-green) ![hacktoberfest](https://img.shields.io/badge/Hacktoberfest-2022-red) ![friendly](https://img.shields.io/badge/beginner-friendly-l) 4 | 5 | # What is HacktoberFest? 6 | 7 | Hacktoberfest is a month long event where people are awarded for contributing to open source projects 🙌, and we're joining the party .Hosted by DigitalOcean for the 8th year in a row, Hacktoberfest encourages participation in giving back to the open source community by completing pull requests, participating in events, and donating to open source projects. 8 | 9 | # More details 10 | 11 | Hacktoberfest is open to everyone in our global community. Whether you’re a seasoned contributor or looking for projects to contribute to for the first time, you’re welcome to participate. 12 | 13 | Pull requests can be made in any participating GitHub or GitLab hosted repository/project. Look for the 'hacktoberfest' topic to know if a repository/project is participating in Hacktoberfest. Pull requests must be approved by a maintainer of the repository/project to count. 14 | 15 | You can sign up anytime between October 1 and October 31. Just be sure to sign up on the official Hacktoberfest website for your pull requests to count. 16 | 17 | # Rules for participation 18 | 19 | - Pull requests can be submitted to any opted-in repository on GitHub or GitLab. 20 | - The pull request must contain commits you made yourself. 21 | - If a maintainer reports your pull request as spam, it will not be counted toward your participation in Hacktoberfest. 22 | - If a maintainer reports behavior that’s not in line with the project’s code of conduct, you will be ineligible to participate. 23 | - To get a shirt, you must make four approved pull requests (PRs) on opted-in projects between October 1-31 in any time zone. 24 | - This year, the first 55,000 participants can earn a T-shirt. 25 | 26 | # Quality Guidelines 27 | 28 | - Pull requests that are automated e.g. scripted opening pull requests to remove whitespace / fix typos / optimize images. 29 | - Pull requests that are disruptive e.g. taking someone else's branch/commits and making a pull request. 30 | - Pull requests that are regarded by a project maintainer as a hindrance vs. helping. 31 | - Something that's clearly an attempt to simply +1 your pull request count for October. 32 | - Last but not least, one pull request to fix a typo is fine, but 5 pull requests to remove a stray whitespace is not. 33 | 34 | ### Note 35 | 36 | **A pull request is considered approved once it has an overall approving review from maintainers, or has been merged by maintainers, or has been given the 'hacktoberfest-accepted' label. A pull request with any label containing the word 'spam' or 'invalid' will be considered ineligible for Hacktoberfest.** 37 | -------------------------------------------------------------------------------- /faq.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | FAQ Page | EXCODERS 7 | 80 | 81 | 82 |
83 |

Frequently Asked Questions

84 |
85 |
86 | 87 |
88 |
89 | Return to Home Page 90 | 135 | 136 | 137 | -------------------------------------------------------------------------------- /projects.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 |
15 | 18 | 22 | Excoders 23 | 24 | 55 |
59 | 91 |
92 |
93 | 94 |
95 |

96 | Project Showcase 97 |

98 | 99 | 100 |
103 | 104 |
105 | Sunset in the mountains 110 |
111 |
112 | Facial Recognition for Access Control 113 |
114 |

115 | Uses ML to recognize authorized individuals' faces for secure 116 | access to buildings and facilities, enhancing security. 117 |

118 |
119 |
120 | Github 124 | git logo 130 | 131 | Live 🚀 136 |
137 |
138 | 139 | 140 |
141 | Sunset in the mountains 146 |
147 |
148 | Predictive Maintenance for Industrial Machinery 149 |
150 |

151 | Applies data science to forecast machinery failures, reducing 152 | downtime and maintenance costs through proactive equipment 153 | servicing. 154 |

155 |
156 |
157 | Github 161 | git logo 167 | 168 | Live 🚀 173 |
174 |
175 | 176 | 177 |
178 | Sunset in the mountains 183 |
184 |
185 | HealthGuard: Personal Health Assistant 186 |
187 |

188 | An Android app for monitoring and improving health, offering 189 | features like fitness tracking, medication reminders, and 190 | telehealth consultations. 191 |

192 |
193 |
194 | Github 198 | git logo 204 | 205 | Live 🚀 210 |
211 |
212 | 213 | 214 |
215 | Sunset in the mountains 220 |
221 |
222 | CyberShield: Advanced Threat Detection 223 |
224 |

225 | Employs cutting-edge cybersecurity technologies to identify and 226 | mitigate sophisticated cyber threats, safeguarding critical 227 | digital assets. 228 |

229 |
230 |
231 | Github 235 | git logo 241 | 242 | Live 🚀 247 |
248 |
249 |
250 |
251 | 252 | 449 | 450 | 451 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 |
18 | 19 |
20 |
21 |
22 |
23 | 24 | 73 |
74 | 75 | 76 | 77 |
78 |
79 |
Welcome to Excoders
80 |
Meet Our Awesome Team
81 |
82 | "Team excoders is dedicated to helping people embark on their coding journey with confidence." 83 |
84 |
85 | 86 |
87 |
88 |
89 |
90 |
91 |
92 | testimonial 95 | 96 |

A cybersecurity expert with a passion for teaching, Currently, I am venturing 97 | into the world of web development eager to expand my skill set and apply my knowledge of cybersecurity 98 | to build secure and reliable web applications.

99 | 100 |
Rahul Kamilya
101 | 103 |
104 | 105 |
106 |
107 |
108 |
109 |
110 | testimonial 113 |

Having gained expertise in frontend development and having helped beginners 114 | in this field, I am now delving into the world of app development. My goal is to enhance my skills and 115 | knowledge in this area and assist others in building dynamic and engaging apps.

116 | 117 |
Priyanshu Das
118 | 120 |
121 | 122 |
123 |
124 |
125 |
126 |
127 | testimonial 130 |

A Skilled frontend developer with a strong background in HTML, CSS, and 131 | JavaScript. I have extensive experience creating user-friendly and visually appealing websites and web 132 | applications. In addition, I am proficient in Java programming, which has enabled me to develop 133 | complex software solutions.

134 | 135 |
Ankita Chakraborty
136 | 138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 | testimonial 151 |

Aspiring DSA enthusiast on a journey of continuous learning. Passionate about 152 | unraveling the world of Data Structures and Algorithms Together, let's demystify the realm of coding 153 | challenges and share the joy of mastering DSA concepts.

154 | 155 |
Snigdha Datta
156 | 158 |
159 |
160 |
161 | 171 |
172 |
173 |
174 | testimonial 177 |

"Exploring the art of web creation one tag at a time. Enthusiastic about HTML 178 | and CSS, and diving headfirst into the world of frontend development,let's embrace the journey of 179 | mastering web design and share the excitement of bringing digital ideas.

180 | 181 |
MD Natique Asghar
182 | 184 |
185 | 186 |
187 |
188 |
189 |
190 | 191 |
192 | 206 | 207 | 208 |
209 |
210 |
Support Us :)
211 | 212 |
213 |
214 |
216 |
217 |
Give Us a Coffee
218 |
₹100/Month
219 |
For beginners
220 |
221 | 222 |
Mentors Support
223 |
224 |
225 | 226 |
All Roardmaps
227 |
228 |
229 | 230 |
Website Designs
231 |
232 |
233 | 234 |
Ethical Hacking
235 |
236 |
237 |
238 |
240 | Subscribe
241 |
242 |
243 |
245 |
246 |
Give Us a Burger
247 |
₹250/Month
248 |
For intermediates
249 |
250 | 251 |
Mentors Support
252 |
253 |
254 | 255 |
All Roardmaps
256 |
257 |
258 | 259 |
Cybersecurity
260 |
261 |
262 | 263 |
Website Designs
264 |
265 |
266 | 267 |
SSL
268 |
269 |
270 | 271 |
App Developement
272 |
273 |
274 | 275 | 276 |
Data Structures & Algo
277 |
278 |
279 |
280 |
282 | Subscribe
283 |
284 |
285 |
287 |
288 |
Give Us a Pizza
289 |
₹500/Month
290 |
Pro
291 |
292 | 293 |
Mentors Support
294 |
295 |
296 | 297 |
All Roardmaps
298 |
299 |
300 | 301 |
Website Designs tailwindcss
302 |
303 |
304 | 305 |
Ethical Hacking
306 |
307 |
308 | 309 |
Kali Linux
310 |
311 |
312 | 313 |
App Developement
314 |
315 |
316 | 317 |
Data Structures & Algo
318 |
319 |
320 |
321 |
323 | Subscribe
324 |
325 |
326 |
327 |
328 | 329 | 330 | 331 | 332 |
333 |
334 |
335 |
336 | 337 | 338 |
461 | 462 | 463 | 464 | 465 | --------------------------------------------------------------------------------