Append your changes to the cloned repo and save the changes.
101 |
102 |
Add those changes to the branch you just created using the command:
103 |
git add .
104 |
105 |
Now commit your changes using the git commit command:
106 |
git commit -m "[insert commit message]"
107 |
108 |
Push your changes to GitHub by the push command:
109 |
git push -u origin [BranchName]
110 |
111 |
Go to your repository on GitHub and you’ll see a button “Compare & pull request” and click it. Open a pull request by clicking the "Create pull request" button. This allows the repo's maintainers to review your contribution. From here, they can merge it if it follows the [contribution guidelines](https://github.com/Codess-Cafe/Codess-Website/blob/main/CONTRIBUTING.md), or they may ask you to make some changes. Please provide necessary details on what you’ve done. Now submit the pull request.
112 |
113 |
Congratulations! You've made your first pull request.
114 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Welcome to CodessCafe GitHub Repository!
2 |
3 | 
4 |
5 |
6 | ## What is CodessCafe?
7 |
8 | CodessCafe is a pro bono mentorship program and a thriving community of women in technology. We are on a mission to empower women in India, fostering their growth in the tech industry. At CodessCafe, we believe in the power of mentorship and community building, and we strive to create a supportive environment for women to learn, collaborate, and excel in their careers. And this is the repo of our website!
9 |
10 | ## Join us for Hacktoberfest!
11 |
12 | We are excited to announce that CodessCafe is participating in Hacktoberfest, and we welcome you to be a part of this open-source celebration! Hacktoberfest is not just about code; it's about collaboration, learning, and contributing to meaningful projects. We have a plethora of opportunities for you to get involved and make a difference.
13 |
14 | ## How You Can Contribute
15 |
16 | ### Every Issue Matters
17 |
18 | At CodessCafe, we value every contribution, no matter how big or small. Each issue you raise, bug you fix, or feature you implement is crucial to us. Our community is run by dedicated volunteers, and your support means the world to us.
19 |
20 | ### Explore Our Issues
21 |
22 | We have a variety of issues that you can contribute to. Whether it's squashing bugs, enhancing user experience, improving documentation, or adding new features, there's something for everyone. Check out our [Issues](https://github.com/Codess-Cafe/Codess-Website/issues) section to find tasks that align with your skills and interests.
23 |
24 | ## Every Issue Matters
25 |
26 | At CodessCafe, we deeply appreciate the efforts of our contributors. Every issue you work on, no matter how minor, is a step towards making CodessCafe better. Each improvement matters and contributes to the growth of our community and mentorship program. Since, we are run by volunteers, it greatly helps us!
27 |
28 | If you are interested in joining the team of Codess or want to see how to get involved, please see our Linkedin.
29 |
30 | Note: Please refer to our [CONTTRIBUTION GUIDELINES](https://github.com/Codess-Cafe/Codess-Website/blob/main/CONTRIBUTING.md) before making your first contribution! The CONTRIBUTING.md file in this repository guides potential contributors, outlining the guidelines and expectations for contributing to this project.
31 |
32 |
33 | ## How to Get Started
34 |
35 | 1. **Fork the Repository:** Start by forking our repository to your GitHub account.
36 |
37 | 2. **Pick an Issue:** Browse through our issues and pick one that interests you. Feel free to ask questions and seek clarifications.
38 |
39 | 3. **Work on the Issue:** Once you've chosen an issue, create a new branch and start working on it. Make sure to follow our coding guidelines.
40 |
41 | 4. **Create a Pull Request:** After making changes, create a pull request detailing your contributions. Our team will review your changes and provide feedback.
42 |
43 | 5. **Celebrate Your Contribution:** Once your pull request is merged, celebrate your achievement! You've made CodessCafe a better place.
44 |
45 | ## Let's Build Together
46 |
47 | CodessCafe is more than just a mentorship program; it's a family. Join us in this incredible journey of learning, collaboration, and empowerment. Together, we can make a lasting impact. Thank you for being a part of our community!
48 |
--------------------------------------------------------------------------------
/app.js:
--------------------------------------------------------------------------------
1 | $(document).ready(function(){
2 | $(window).scroll(function(){
3 | // scroll-up button show/hide script
4 | if(this.scrollY > 500){
5 | $('.scroll-up-btn').addClass("show");
6 | }else{
7 | $('.scroll-up-btn').removeClass("show");
8 | }
9 | });
10 | // slide-up script
11 | $('.scroll-up-btn').click(function(){
12 | $('html').animate({scrollTop: 0});
13 | // removing smooth scroll on slide-up button click
14 | // $('html').css("scrollBehavior", "auto");
15 | });
16 |
17 |
18 | });
19 |
20 | // Numbers
21 | let valueDisplays = document.querySelectorAll(".num");
22 | let interval = 4000;
23 |
24 | valueDisplays.forEach((valueDisplay) => {
25 | let startValue = 0;
26 | let endValue = parseInt(valueDisplay.getAttribute("data-val"));
27 | let duration = Math.floor(interval / endValue);
28 | let counter = setInterval(function () {
29 | startValue +=1;
30 | valueDisplay.textContent = startValue;
31 | if (startValue == endValue) {
32 | clearInterval(counter);
33 | }
34 | }, duration);
35 | });
36 |
37 | // end
38 |
39 | let slides = document.querySelectorAll('.slide');
40 |
41 | for (let slide of slides) {
42 | slide.addEventListener('click', () => {
43 | clearActiveClasses();
44 |
45 | slide.classList.add('active');
46 | })
47 | }
48 |
49 | function clearActiveClasses() {
50 | slides.forEach((slide) => {
51 | slide.classList.remove('active');
52 | })
53 | }
54 |
55 | /* FAQ section */
56 | let faqItems = document.querySelectorAll('.faq-item');
57 |
58 | faqItems.forEach((item) => {
59 | item.addEventListener('click', () => {
60 | // Find the button element inside the FAQ item and trigger a click
61 | const button = item.querySelector('button');
62 | if (button) {
63 | button.click();
64 | }
65 | });
66 | });
67 |
68 | /* Counterup feature for Number Speaks Louder section */
69 | $('.counter-count').each(function () {
70 | $(this).prop('Counter',0).animate({
71 | Counter: $(this).text()
72 | }, {
73 |
74 | duration: 4000,
75 | easing: 'swing',
76 | step: function (now) {
77 | $(this).text(Math.ceil(now));
78 | }
79 | });
80 | });
81 |
82 | function isInViewport(element) {
83 | const rect = element.getBoundingClientRect();
84 | return (
85 | rect.top >= 0 &&
86 | rect.left >= 0 &&
87 | rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) &&
88 | rect.right <= (window.innerWidth || document.documentElement.clientWidth)
89 | );
90 | }
91 |
92 | function addCommas(number) {
93 | return number.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',');
94 | }
95 |
96 | function updateCounters() {
97 | if (!animationStarted && isInViewport(counters[0])) {
98 | counters.forEach((counter) => {
99 | counter.innerText = '0';
100 | const targetWithCommas = counter.getAttribute('data-target');
101 | const target = parseFloat(targetWithCommas.replace(/,/g, ''));
102 | const increment = target / 400;
103 |
104 | function updateCounter(current) {
105 | if (current < target) {
106 | const newValue = Math.ceil(current + increment);
107 | counter.innerText = addCommas(newValue) + "+";
108 | setTimeout(() => updateCounter(newValue), 1);
109 | } else {
110 | counter.innerText = addCommas(target) + "+";
111 | }
112 | }
113 | updateCounter(0);
114 |
115 | animationStarted = true;
116 | });
117 | }
118 | }
119 |
120 | const counters = document.querySelectorAll('.count');
121 | let animationStarted = false;
122 |
123 | window.addEventListener('scroll', updateCounters);
124 |
125 | updateCounters();
126 |
--------------------------------------------------------------------------------
/copyrightYear.js:
--------------------------------------------------------------------------------
1 | let copyRightYear = document.getElementById("copyright-year");
2 | let currentDate = new Date();
3 | let currentYear = currentDate.getFullYear();
4 | copyRightYear.innerText = currentYear;
--------------------------------------------------------------------------------
/custom.css:
--------------------------------------------------------------------------------
1 |
2 | .card-container {
3 | padding: 20px;
4 | }
5 |
6 | .mentor-card-outer {
7 | border-radius: 15px;
8 | height: 350px;
9 | padding: 50px;
10 | }
11 |
12 | .mentor-card-container {
13 | padding: 20px;
14 | }
15 |
16 | .mentor-card {
17 | border-width: 1px;
18 | height: 140px;
19 | padding: 30px;
20 | }
21 |
22 | .mentor-img {
23 | height: 80px;
24 | width: 80px;
25 | border-radius: 40px;
26 | }
27 |
28 | .mentor-name {
29 | font-size: 16px;
30 | margin-left: 15px;
31 | font-weight: bold;
32 | }
33 |
34 | .mentor-college {
35 | font-size: 12px;
36 | margin-left: 15px;
37 | }
38 |
39 | .mentor-job {
40 | font-size: 14px;
41 | margin-left: 15px;
42 | }
43 |
44 | .btn_aboutUs {
45 | display: inline-block;
46 | position: relative;
47 | min-width: 200px;
48 | height: 50px;
49 | background-image: linear-gradient(315deg, #ff8dde 0%, #a88beb 74%);
50 | border-radius: 60px;
51 | justify-content: center;
52 | align-items: center;
53 | color: rgba(255, 255, 255, 0.8);
54 | text-decoration: none;
55 | letter-spacing: 2px;
56 | border: 3.5px solid #7f38c6;
57 | padding-left: 50px;
58 | padding-bottom: 37px;
59 | transition: 0.5s;
60 | font-size: 20px;
61 | padding-top: 10px;
62 | margin-top: 30px;
63 | }
64 |
65 | .btn_aboutUs:hover{
66 | padding-left: 20px;
67 | padding-right: 40px;
68 | color: rgba(255, 255, 255, 1);
69 | text-decoration: none;
70 | }
71 |
72 | .btn_aboutUs span{
73 | position: absolute;
74 | left: 5px;
75 | width: 39px;
76 | height: 40px;
77 | background: var(--primary-gradient-purple);
78 | border-radius: 50%;
79 | transition: 0.5s ease-in-out;
80 | margin-left: -3px;
81 | margin-top: -6px;
82 | align-items: center;
83 | color: var(--primary-gradient-purple);
84 | font-size: 1.5sem;
85 | }
86 |
87 | .btn_aboutUs ion-icon{
88 | padding: 10px;
89 | color: white;
90 | }
91 |
92 | .btn_aboutUs:hover span{
93 | left: calc(100% - 40px);
94 | padding-left: -5px;
95 | /* padding-top:5px; */
96 | font-weight: 600;
97 | }
98 |
--------------------------------------------------------------------------------
/firebase.json:
--------------------------------------------------------------------------------
1 | {
2 | "hosting": {
3 | "public": "/",
4 | "ignore": [
5 | "firebase.json",
6 | "**/.*",
7 | "**/node_modules/**"
8 | ],
9 | "rewrites": [
10 | {
11 | "source": "**",
12 | "destination": "/index.html"
13 | }
14 | ]
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/images/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/.DS_Store
--------------------------------------------------------------------------------
/images/Cp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/Cp.png
--------------------------------------------------------------------------------
/images/DSA.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/DSA.png
--------------------------------------------------------------------------------
/images/ML.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/ML.jpg
--------------------------------------------------------------------------------
/images/Oss.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/Oss.webp
--------------------------------------------------------------------------------
/images/about-banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/about-banner.png
--------------------------------------------------------------------------------
/images/about-banner2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/about-banner2.png
--------------------------------------------------------------------------------
/images/about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/about.png
--------------------------------------------------------------------------------
/images/apply.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/apply.png
--------------------------------------------------------------------------------
/images/banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/banner.png
--------------------------------------------------------------------------------
/images/brain.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
36 |
--------------------------------------------------------------------------------
/images/c++.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
26 |
--------------------------------------------------------------------------------
/images/contact.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/contact.png
--------------------------------------------------------------------------------
/images/java.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
52 |
--------------------------------------------------------------------------------
/images/js.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
24 |
--------------------------------------------------------------------------------
/images/logo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/logo.gif
--------------------------------------------------------------------------------
/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/logo.png
--------------------------------------------------------------------------------
/images/logo2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/logo2.png
--------------------------------------------------------------------------------
/images/mentor/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/.DS_Store
--------------------------------------------------------------------------------
/images/mentor/0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/0.jpg
--------------------------------------------------------------------------------
/images/mentor/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/1.jpg
--------------------------------------------------------------------------------
/images/mentor/10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/10.jpg
--------------------------------------------------------------------------------
/images/mentor/11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/11.jpg
--------------------------------------------------------------------------------
/images/mentor/12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/12.jpg
--------------------------------------------------------------------------------
/images/mentor/13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/13.jpg
--------------------------------------------------------------------------------
/images/mentor/14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/14.jpg
--------------------------------------------------------------------------------
/images/mentor/15.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/15.jpeg
--------------------------------------------------------------------------------
/images/mentor/16.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/16.jpeg
--------------------------------------------------------------------------------
/images/mentor/17.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/17.jpeg
--------------------------------------------------------------------------------
/images/mentor/18.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/18.jpeg
--------------------------------------------------------------------------------
/images/mentor/19.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/19.jpeg
--------------------------------------------------------------------------------
/images/mentor/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/2.jpg
--------------------------------------------------------------------------------
/images/mentor/20.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/20.jpeg
--------------------------------------------------------------------------------
/images/mentor/21.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/21.jpeg
--------------------------------------------------------------------------------
/images/mentor/22.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/22.jpeg
--------------------------------------------------------------------------------
/images/mentor/23.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/23.jpeg
--------------------------------------------------------------------------------
/images/mentor/24.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/24.jpeg
--------------------------------------------------------------------------------
/images/mentor/25.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/25.jpeg
--------------------------------------------------------------------------------
/images/mentor/26.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/26.jpeg
--------------------------------------------------------------------------------
/images/mentor/27.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/27.jpeg
--------------------------------------------------------------------------------
/images/mentor/28.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/28.jpeg
--------------------------------------------------------------------------------
/images/mentor/29.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/29.jpeg
--------------------------------------------------------------------------------
/images/mentor/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/3.jpg
--------------------------------------------------------------------------------
/images/mentor/30.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/30.jpeg
--------------------------------------------------------------------------------
/images/mentor/31.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/31.jpeg
--------------------------------------------------------------------------------
/images/mentor/32.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/32.jpeg
--------------------------------------------------------------------------------
/images/mentor/34.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/34.jpeg
--------------------------------------------------------------------------------
/images/mentor/35.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/35.jpeg
--------------------------------------------------------------------------------
/images/mentor/36.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/36.jpeg
--------------------------------------------------------------------------------
/images/mentor/37.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/37.jpeg
--------------------------------------------------------------------------------
/images/mentor/38.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/38.jpeg
--------------------------------------------------------------------------------
/images/mentor/39.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/39.jpg
--------------------------------------------------------------------------------
/images/mentor/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/4.jpg
--------------------------------------------------------------------------------
/images/mentor/40.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/40.jpg
--------------------------------------------------------------------------------
/images/mentor/41.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/41.jpg
--------------------------------------------------------------------------------
/images/mentor/42.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/42.jpg
--------------------------------------------------------------------------------
/images/mentor/43.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/43.jpg
--------------------------------------------------------------------------------
/images/mentor/44.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/44.jpg
--------------------------------------------------------------------------------
/images/mentor/45.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/45.jpg
--------------------------------------------------------------------------------
/images/mentor/46.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/46.jpg
--------------------------------------------------------------------------------
/images/mentor/47.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/47.jpg
--------------------------------------------------------------------------------
/images/mentor/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/5.jpg
--------------------------------------------------------------------------------
/images/mentor/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/6.jpg
--------------------------------------------------------------------------------
/images/mentor/8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/8.jpg
--------------------------------------------------------------------------------
/images/mentor/9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/9.jpg
--------------------------------------------------------------------------------
/images/mentor/aeshna_jain.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/aeshna_jain.jpg
--------------------------------------------------------------------------------
/images/mentor/aiman_siddiqua.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/aiman_siddiqua.jpg
--------------------------------------------------------------------------------
/images/mentor/akanksha_tanwar.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/akanksha_tanwar.jpg
--------------------------------------------------------------------------------
/images/mentor/anjali_singh.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/anjali_singh.jpg
--------------------------------------------------------------------------------
/images/mentor/anshika_jain.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/anshika_jain.jpg
--------------------------------------------------------------------------------
/images/mentor/apeksha_manchanda.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/apeksha_manchanda.jpg
--------------------------------------------------------------------------------
/images/mentor/ayesha_khan.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/ayesha_khan.jpg
--------------------------------------------------------------------------------
/images/mentor/bhumika_chopra.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/bhumika_chopra.jpg
--------------------------------------------------------------------------------
/images/mentor/chitra_singla.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/chitra_singla.jpg
--------------------------------------------------------------------------------
/images/mentor/dhanya_hedge.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/dhanya_hedge.jpg
--------------------------------------------------------------------------------
/images/mentor/diksha_pranjali.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/diksha_pranjali.jpg
--------------------------------------------------------------------------------
/images/mentor/disha_singh.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/disha_singh.jpg
--------------------------------------------------------------------------------
/images/mentor/drishty_ganatra.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/drishty_ganatra.png
--------------------------------------------------------------------------------
/images/mentor/eesha_yadav.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/eesha_yadav.jpg
--------------------------------------------------------------------------------
/images/mentor/jayasree_gondipalle.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/jayasree_gondipalle.jpg
--------------------------------------------------------------------------------
/images/mentor/joshika.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/joshika.jpg
--------------------------------------------------------------------------------
/images/mentor/kaushiki_raj.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/kaushiki_raj.jpg
--------------------------------------------------------------------------------
/images/mentor/kirti_dabas.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/kirti_dabas.jpg
--------------------------------------------------------------------------------
/images/mentor/krati_garg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/krati_garg.jpg
--------------------------------------------------------------------------------
/images/mentor/lavisha_bhambri.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/lavisha_bhambri.jpg
--------------------------------------------------------------------------------
/images/mentor/manasvvi_aggarwal.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/manasvvi_aggarwal.jpg
--------------------------------------------------------------------------------
/images/mentor/mayuri.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/mayuri.jpg
--------------------------------------------------------------------------------
/images/mentor/meha_shukla.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/meha_shukla.jpg
--------------------------------------------------------------------------------
/images/mentor/monalika_patnaik.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/monalika_patnaik.jpg
--------------------------------------------------------------------------------
/images/mentor/mounica_sruthi.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/mounica_sruthi.jpg
--------------------------------------------------------------------------------
/images/mentor/muskan_agrawal.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/muskan_agrawal.jpg
--------------------------------------------------------------------------------
/images/mentor/navya_singla.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/navya_singla.jpg
--------------------------------------------------------------------------------
/images/mentor/navya_sree.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/navya_sree.jpg
--------------------------------------------------------------------------------
/images/mentor/neha_goyal.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/neha_goyal.jpeg
--------------------------------------------------------------------------------
/images/mentor/nistha_gupta.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/nistha_gupta.jpg
--------------------------------------------------------------------------------
/images/mentor/pranitha_sridhar.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/pranitha_sridhar.jpg
--------------------------------------------------------------------------------
/images/mentor/pranjali_aditi.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/pranjali_aditi.jpg
--------------------------------------------------------------------------------
/images/mentor/priyanka_yadav.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/priyanka_yadav.jpg
--------------------------------------------------------------------------------
/images/mentor/renuka_rajpuria.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/renuka_rajpuria.png
--------------------------------------------------------------------------------
/images/mentor/riya_jain.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/riya_jain.jpg
--------------------------------------------------------------------------------
/images/mentor/roheena_pal.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/roheena_pal.jpg
--------------------------------------------------------------------------------
/images/mentor/ruchira_naskar.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/ruchira_naskar.jpg
--------------------------------------------------------------------------------
/images/mentor/samprati_vishnoi.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/samprati_vishnoi.jpg
--------------------------------------------------------------------------------
/images/mentor/sanskriti_singhal.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/sanskriti_singhal.jpg
--------------------------------------------------------------------------------
/images/mentor/shanmukha_priya.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/shanmukha_priya.jpg
--------------------------------------------------------------------------------
/images/mentor/shruti_kumari.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/shruti_kumari.jpg
--------------------------------------------------------------------------------
/images/mentor/shubhi_arora.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/shubhi_arora.jpg
--------------------------------------------------------------------------------
/images/mentor/sneha_choudhary.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/sneha_choudhary.jpg
--------------------------------------------------------------------------------
/images/mentor/stuti_jain.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/stuti_jain.jpg
--------------------------------------------------------------------------------
/images/mentor/tanvy_bhola.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/tanvy_bhola.jpg
--------------------------------------------------------------------------------
/images/mentor/tejaswi_tyagi.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/tejaswi_tyagi.jpg
--------------------------------------------------------------------------------
/images/mentor/tiya_bansal.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/tiya_bansal.jpg
--------------------------------------------------------------------------------
/images/mentor/v_nikhita.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/v_nikhita.jpg
--------------------------------------------------------------------------------
/images/mentor/vanshika_guota.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/vanshika_guota.jpg
--------------------------------------------------------------------------------
/images/mentor/vidhi_bhatt.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/vidhi_bhatt.jpg
--------------------------------------------------------------------------------
/images/mentor/yashwini_bansal.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/mentor/yashwini_bansal.jpg
--------------------------------------------------------------------------------
/images/offerings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/offerings.png
--------------------------------------------------------------------------------
/images/python.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
32 |
--------------------------------------------------------------------------------
/images/star_filled.svg:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/images/team.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/team.png
--------------------------------------------------------------------------------
/images/testimonials.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/testimonials.png
--------------------------------------------------------------------------------
/images/title-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Codess-Cafe/Codess-Website/f3c393bf93257127fcdf318217bcdb5bb4608107/images/title-logo.png
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
31 |
32 |
35 |
36 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 | Codess.Cafe | Pro-bono mentorship program for women in tech
56 |
57 |
58 |
59 |
60 |
61 |
78 |
79 |
80 |
95 |
96 |
97 |
98 |
99 |
100 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
172 |
173 |
174 |
175 |
193 |
194 |
195 |
196 |
197 |
198 |
199 | Community of Empowered Women in Tech
200 |
201 |
202 | Come be a part of a vibrant community of high achieving,
203 | growth oriented women in tech.
204 |
227 |
228 |
229 | There's a myriad of information out there. A mentor helps
230 | navigate the complexities of life and find the best path based
231 | on your long term goals.
232 |
233 | We helped our mentees get placed in organisations like Google,
234 | Microsoft, Amazon, Bloomberg, ByteDance, Adobe, Goldman Sachs,
235 | Intuit, Flipkart, Visa, Walmart, Arcesium, DE Shaw, Postman,
236 | Accenture, Myntra, Paytm etc.
237 |
238 |
239 |
240 |
241 |
242 |
243 |
244 |
245 |
246 |
247 |
248 |
Program Offerings
249 |
250 | We focus on all round development to make you interview ready 👩🏻💻
251 |
Learn the building blocks of programming through step-by-step guidance in fundamental data structures and basic algorithms.
325 |
326 |
327 |
328 |
329 |
330 |
331 |
332 |
333 |
334 |
335 |
336 |
337 |
338 |
Our Chapters
339 |
340 |
341 |
342 |
343 |
344 |
345 |
346 |
India Chapter
347 |
Program led by Vidhi Bhatt
348 |
349 |
350 |
351 |
352 |
354 |
Bangladesh Chapter
355 |
Program led by Kulsum Siddique
356 |
357 |
358 |
359 |
360 |
362 |
Nepal Chapter
363 |
Program led by Bhumi Malla & Sumee Adhikari
364 |
365 |
366 |
367 |
368 |
370 |
Qatar Chapter
371 |
Program led by Subhanshi Rawat
372 |
373 |
374 |
375 |
376 |
377 |
378 |
379 |
381 |
Pakistan & Turkey Chapter
382 |
Program led by Hira Farooq
383 |
384 |
385 |
386 |
387 |
389 |
Saudi Arabia Chapter
390 |
Program led by Nitya Mittal
391 |
392 |
393 |
394 |
395 |
396 |
UAE Chapter
397 |
Program led by Yashaswini Shivathaya
398 |
399 |
400 |
401 |
402 |
403 |
404 |
405 |
406 |
407 |
408 |
409 |
410 |
411 |
412 |
413 |
414 |
415 |
416 |
417 |
418 |
419 |
420 |
421 |
422 |
423 |
424 |
425 |
426 |
427 |
428 |
429 |
430 |
431 |
What do our students say?
432 |
433 |
434 |
435 |
436 |
437 | Navpreet Kaur
438 |
439 |
440 |
441 |
442 |
443 |
444 |
445 |
446 |
447 |
448 |
449 | Codess cafe is a place of wholesome preparation for your
450 | interviews. From getting an opportunity to give mock
451 | interviews to having a personal review of your resume, you
452 | get every insight of interview preparation. It is a
453 | community where people share opportunities and help each
454 | other go. The mantra here is to ace interviews and out
455 | Mentor Aarnav helps us achieve it come what may!
456 |
457 |
458 |
459 |
460 |
461 |
462 |
463 |
464 | Akanksha Tanwar
465 |
466 |
467 |
468 |
469 |
470 |
471 |
472 |
473 |
474 |
475 |
476 | If I had to best describe Codess.Cafe, I would say, I am a
477 | part of this small but thriving community of extremely smart
478 | women, who with the help of our talented mentor Aarnav
479 | Jindal are pushing our boundaries to become better at what
480 | we do. The idea is to throw away any inhibitions and doubts
481 | one has about herself, and look beyond what we've been told
482 | always by the society. The very streamlined nature of the
483 | material shared by Aarnav sir does exactly that! I am very
484 | grateful to be a part of this program.
485 |
486 |
487 |
488 |
489 |
490 |
491 |
492 |
493 | Prachi Singhal
494 |
495 |
496 |
497 |
498 |
499 |
500 |
501 |
502 |
503 |
504 |
505 | Getting the right guidance at the right time is really
506 | important and I am grateful to get is from Aarnav Jindal
507 | under this program. He not only guided me but also took mock
508 | interviews which boosted my confidence and gave me a chance
509 | to analyse and improve and He always helped me in staying
510 | positive even after rejections. Thanks Aarnav and
511 | Codess.Cafe.
512 |
513 |
514 |
515 |
516 |
517 |
518 |
519 |
520 |
521 |
522 |
523 |
524 |
525 | Meet the Team
526 |
527 |
528 |
529 |
530 |
531 |
532 |
533 |
534 |
535 |
536 |
537 |
538 |
539 |
540 |
541 |
542 |
543 | Aarnav Jindal
544 |
Founder PM: Scaler | CSE, DTU
545 |
546 |
547 |
548 |
549 |
550 |
551 |
552 |
553 |
554 |
555 |
556 |
557 |
558 |
559 |
560 |
561 | Shriya Chhabra
562 |
Founder SDE: Microsoft | CSE, IGDTUW
563 |
564 |
565 |
566 |
567 |
568 |
569 |
570 |
571 |
572 |
573 |
574 |
575 |
576 |
577 |
578 |
579 |
580 |
581 |
582 |
583 |
584 | Vidhi Bhatt
585 |
Organization Lead : India SDE Intern: Amazon | CSE, GTU
586 |
587 |
588 |
589 |
590 |
591 |
592 |
593 |
594 |
595 |
596 |
597 |
598 |
599 |
600 |
601 |
602 |
603 | Jyoti Bisht
604 |
Codess.Cafe OSS Lead DevRel: AppWrite | MLH
605 | Fellow'21
606 |
607 |
608 |
609 |
610 |
611 |
612 |
613 |
614 |
615 |
616 |
617 |
618 |
619 |
620 |
621 |
622 |
623 |
624 | Bhumi Malla
625 |
Organization Lead : Nepal Data Engineer at Cedargate
626 |
627 |
628 |
629 |
630 |
631 |
632 |
633 |
634 |
635 |
636 |
637 |
638 |
639 |
640 |
641 |
642 |
643 | Sumee Adhikari
644 |
Organization Lead : Nepal QA Engineer : Clicked
645 |
646 |
647 |
648 |
649 |
650 |
651 |
652 |
653 |
654 |
655 |
656 |
657 |
658 |
659 |
660 |
661 |
662 |
663 | Kulsum Siddique
664 |
Organization Lead : Bangladesh AVP, QA | Green Delta Insurance
665 |
666 |
667 |
668 |
669 |
670 |
671 |
672 |
673 |
674 |
675 |
676 |
677 |
678 |
679 |
680 |
681 |
682 |
683 | Hira Farooq
684 |
Organization Lead : Pakistan APM: Vyro
685 |
686 |
687 |
688 |
689 |
690 |
691 |
692 |
693 |
694 |
695 |
696 |
697 |
698 |
699 |
700 |
701 |
702 |
703 |
704 |
705 | Nitya Mittal
706 |
Organization Lead : Saudi Arabia SDE: American Express
707 |
708 |
709 |
710 |
711 |
712 |
713 |
714 |
715 |
716 |
717 |
718 |
719 |
720 |
721 |
722 |
723 |
724 |
725 | Subhanshi Rawat
726 |
Organization Lead : Qatar SDE : ION
727 |
728 |
729 |
730 |
731 |
732 |
733 |
734 |
735 |
736 |
737 |
738 |
739 |
740 |
741 |
742 |
743 |
744 |
745 | Yashaswini Shivathayat
746 |
Organization Lead : UAE Web Developer | UI / UX Designer
747 |
748 |
749 |
750 |
751 |
752 |
753 |
754 |
755 |
760 |
761 |
762 |
763 |
764 |
765 |
766 |
767 |
768 |
769 |
770 |
771 | Numbers Speak Louder
772 |
773 |
774 |
775 |
776 |
777 |
Community members
778 |
779 |
780 |
781 |
782 |
Offers and Scholarships Bagged
783 |
784 |
785 |
786 |
787 |
788 |
Companies
789 |
790 |
791 |
792 |
793 |
Average CTC
794 |
795 |
796 |
797 |
798 |
799 |
800 |
801 |
Apply
802 |
803 |
804 |
805 |
806 |
807 | We release forms regularly on LinkedIn to take new members
808 |
809 |
810 | We have two intake programs depending on your year of study
811 |
812 |
813 |
830 |
831 |
832 |
833 |
834 |
835 |
836 |
837 |
First Step
838 |
839 | Fill the Google form released on the Codess.Cafe LinkedIn page
840 |
841 |
842 |
843 |
844 |
845 |
846 |
847 |
Second Step
848 |
849 | Our team of 30+ mentors reviews the resumes and pick the
850 | mentees they're interested in mentoring
851 |
852 |
853 |
854 |
855 |
856 |
857 |
858 |
Third Step
859 |
860 | Shortlisted members are contacted via mail, LinkedIn or
861 | WhatsApp within 14 days
862 |
863 |
864 |
865 |
866 |
867 |
868 |
869 |
Fourth Step
870 |
871 | New members are invited to join the Codess.Cafe Community and the growth begins
872 |
873 |
874 |
875 |
876 |
877 |
878 |
879 |
880 |
881 |
882 |
883 |
884 |
885 |
886 |
FAQ's
887 |
Frequently Asked Questions
888 |
889 |
890 |
891 |
892 |
893 |
894 |
895 |
896 |
900 |
901 |
902 |
903 |
904 | There is no fixed duration. Stay and enjoy the benefits of
905 | community and mentorship as long as you would like 🙂
906 |
907 |
908 |
909 |
910 |
911 |
912 |
916 |
917 |
918 |
919 |
920 | The program is completely free, thanks to our generous mentors
921 | 🙌
922 |
923 |
924 |
925 |
926 |
927 |
928 |
929 |
930 |
931 |
932 |
933 |
934 |
935 |
939 |
940 |
941 |
942 |
943 | No pre-requisites, we only need highly motivated individuals 🤓
944 |
945 |
946 |
947 |
948 |
949 |
950 |
954 |
955 |
956 |
957 |
958 | Yes, this is a community and mentorship program just for women.
959 |