├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FILE_STRUCTURE.md ├── LICENSE ├── README.md ├── package-lock.json ├── package.json └── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── portal.json └── robots.txt /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | 6 | ## Explanation 7 | 11 | 12 | 13 | ## Type of Change: 14 | 15 | 16 | - Code 17 | - Quality Assurance 18 | - User Interface 19 | - Outreach 20 | - Documentation 21 | 22 | ## Checklist 23 | 24 | 25 | - [ ] The PR title starts with "Fix #bugnum: "followed by a short, clear summary of the changes. ( If this PR fixes part of an issue, prefix the title with "Fix part of #bugnum: ...") 26 | - [ ] The PR explanation includes the words "Fixes #bugnum: ..." ( or "Fixes part of #bugnum" if the PR only partially fixes an issue ). 27 | - [ ] The PR does not contain any unnecessary auto-generated code from Android Studio. 28 | - [ ] The PR does not break any part of the existing code. 29 | - [ ] The PR creator have carefully read & adhere to the contributing guidelines of the project. 30 | - [ ] The PR is raised for an issue that has been assigned to you. 31 | - [ ] The PR is made to the branch that's **called** "develop". 32 | - [ ] The PR is raised from a branch that is up-to-date with "develop". 33 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /src 6 | /.pnp 7 | .pnp.js 8 | 9 | # testing 10 | /coverage 11 | 12 | # production 13 | /build 14 | 15 | # misc 16 | .DS_Store 17 | .env.local 18 | .env.development.local 19 | .env.test.local 20 | .env.production.local 21 | 22 | npm-debug.log* 23 | yarn-debug.log* 24 | yarn-error.log* 25 | TODO 26 | .vscode/launch.json 27 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | ### Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, gender identity and expression, level of experience, 9 | nationality, personal appearance, race, religion, or sexual identity and 10 | orientation. 11 | 12 | ### Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ### Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ### Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ### Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at rrjain20122000@gmail.com. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ### Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at [http://contributor-covenant.org/version/1/4][version] 72 | 73 | [homepage]: http://contributor-covenant.org 74 | [version]: http://contributor-covenant.org/version/1/4/ 75 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing Guildelines 2 | 3 | ### 👍🎉 First off, welcome to the project and thanks for taking the time to contribute! 🎉👍 4 |
5 | 6 | #### When contributing to this repository, please first discuss the change you wish to make before making a change. 7 |
8 | 9 | ## Before Getting Started! 10 | Learn how to fork a repo, create an issue, make changes, create pull request. 11 | 12 | Learn about the File structure we use [here](/FILE_STRUCTURE.md) 13 | 14 | For more information, refer to GitHub Documentation 15 | 16 | -------- 17 | ## Contributing Process 18 | 1. Go through 'Issues' to ensure whether the said issue has already been raised. 19 | 20 | 2. If you do find a new issue, do not hesitate to open a new one. Make sure to describe any additions required in the message. 21 | 22 | 3. If interested, do mention in the issue that you want to work on it. 23 | 24 | 4. Kindly wait for the approval from the maintainers of this project before starting to work on any issue. 25 | 26 | 5. **Do not make changes to the main branch.** All the changes should be made to the develop branch. 27 | 28 | 6. Make sure that your code is properly formatted and does not contain any commented out code. 29 | 30 | 7. Create a pull request after making the required changes and do mention the issue number that your pull request is related to. 31 | 32 | 8. Finally, wait for it to be reviewed. Make the required changes if the reviewer asks for them. 33 | 34 | 9. Your pull request will be merged once everything seems okay. 35 | 36 | 10. That's it! You have successfully made your contribution to the project. 37 |
38 | 39 | ----------------- 40 | #### **Note**: Always comment and provide apt descriptions wherever necessary for efficient running of the project. 41 | -------------------------------------------------------------------------------- /FILE_STRUCTURE.md: -------------------------------------------------------------------------------- 1 | # CSwala Website File Structure 2 | 3 | ``` 4 | CSwala-website/ 5 | | 6 | |- public # Contains the favicon, etc. Any files within this directory will not be processed by Webpack but copied directly to the build folder. 7 | |- src: # Contains all source code for the React application. 8 | | 9 | |- App.js 10 | |- index.scss 11 | |- index.js 12 | |- assets # Contains all the community brand assets. Keep all images, clips, etc here only 13 | |- components/ # Contains all the GLOBAL components used by "more than one" page. (includes Header, footer,etc.) 14 | |-fonts/ # Contains all the fonts 15 | |-pages/ # Contains all the sections of the page. 16 | | |-----Home / 17 | | | |- Home.jsx # has sections as components 18 | | | |- home.module.scss 19 | | | |- components/ # this components folder has components that is used by multiple sections of the same page (Home page) 20 | | | | |-component1Name/ 21 | | | | | |- Component1Name.jsx (in PascalCase) 22 | | | | | |- component1-name.module.scss (in kebab-case) 23 | | | | | 24 | | | | |-component2Name/ 25 | | | | |- Component2Name.jsx 26 | | | | |- component2-name.module.scss 27 | | | | 28 | | | |- sections/ # contains all sections of the page 29 | | | | 30 | | | |----Banner/ # section1 of the page 31 | | | | |- Banner.jsx 32 | | | | |- banner.module.scss 33 | | | | 34 | | | | 35 | | | |------Team/ 36 | | | |- Team.jsx 37 | | | |- team.module.scss 38 | | | |- components/ # this components folder has components that is used by this section only 39 | | | | 40 | | | |-component1Name/ 41 | | | |- Component1Name.jsx 42 | | | |- component1-name.module.scss 43 | | | 44 | | | 45 | | | 46 | | |- Contact us/ 47 | | |- 404/ 48 | | 49 | | 50 | |-seo/ # Contains code for meta tags using react-helmet 51 | 52 | ``` -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Algo Phantoms 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # 💻 An Open Source organization to Educate people about the right style of getting educated!.📰🔥. 3 | 4 | Join the Discord Server [here](https://discord.gg/rAz3Eb8fsN) 5 | 6 | 💻💻Follow us on [LinkedIn](https://www.linkedin.com/company/cswala) 7 | 8 | ![GitHub forks](https://img.shields.io/github/forks/CSwala/CSwala-website) 9 | ![GitHub Repo stars](https://img.shields.io/github/stars/CSwala/CSwala-website) 10 |
11 | [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) 12 | [![Open Source Love svg1](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/) 13 | [![PRs Welcome](https://img.shields.io/badge/PRs-closed-red.svg?style=flat-square)](http://makeapullrequest.com) 14 | ![Maintenance](https://img.shields.io/maintenance/yes/2021) 15 | 16 | 17 | 18 | ## 🔥 Features 19 | 20 | 📰 Get Latest Updates about Everything there exits in Computer Science 21 | 22 | ✨ Search in a Dictionary Style manner. 23 | 24 | 🚀 Get Ahead with the right guidance from the Community. 25 | 26 | ## 🛠 Tech Used 27 | - React 28 | 29 | ## ⭐ HOW TO MAKE A PULL REQUEST: 30 | 31 | **1.** Start by making a fork the repository. Click on the symbol at the top right corner. 32 | 33 | **2.** Clone your new fork of the repository: 34 | 35 | ```bash 36 | git clone https://github.com//CSwala-website 37 | ``` 38 | 39 | **3.** Set upstream command: 40 | 41 | ```bash 42 | git remote add upstream https://github.com/CSwala/CSwala-website.git 43 | ``` 44 | **4.** Install the dependencies 45 | ```bash 46 | npm install 47 | ``` 48 | **5.** Run the application 49 | ```bash 50 | npm Start 51 | ``` 52 | 53 | **6.** Navigate to the new project directory: 54 | 55 | ```bash 56 | cd CSwala-website 57 | ``` 58 | 59 | **7.** Create a new branch: 60 | 61 | ```bash 62 | git checkout -b YourBranchName 63 | ``` 64 | 65 | **8.** Sync your fork or local repository with the origin repository: 66 | 67 | - In your forked repository click on "Fetch upstream" 68 | - Click "Fetch and merge". 69 | 70 | **9.** Make your changes to the source code. 71 | 72 | **10.** Stage your changes and commit: 73 | 74 | ```bash 75 | git add . 76 | ``` 77 | 78 | ```bash 79 | git commit -m "" 80 | ``` 81 | 82 | **11.** Push your local commits to the remote repository: 83 | 84 | ```bash 85 | git push origin YourBranchName 86 | ``` 87 | 88 | **12.** Create a PR! 89 | 90 | **13.** **Congratulations!** You've made your first contribution! 🙌🏼 91 | 92 | 93 | ## 💥 Issues 94 | 95 | For major changes, you are welcome to [open an issue](https://github.com/CSwala/CSwala-website/new/choose) about what you would like to contribute. Enhancements are always encouraged and appreciated. 96 | 97 | ## All the best! 🥇 98 | 99 |

100 | 101 | [![built with love](https://forthebadge.com/images/badges/built-with-love.svg)](https://github.com/unnati914/Care4ther-) 102 | 103 |

104 | 105 | ## Contribution Guidelines ⚙️ 106 | You can find our Contributing guidelines [here](https://github.com/CSwala/CSwala-website/blob/main/CONTRIBUTING.md). 107 | 108 | ## 😎Maintainers 109 | 110 | 111 | 112 | 113 | 114 | 115 |

Rituraj Jain

💻

Saransh Hardaha

💻
116 | 117 | ## Code Of Conduct: 118 | 119 | You can find our Code of Conduct [here](https://github.com/CSwala/CSwala-website/blob/main/CODE_OF_CONDUCT.md). 120 | 121 | ## License 📝 122 | 123 | This project follows the [MIT License](https://choosealicense.com/licenses/mit/). 124 | 125 |

Contributors:

126 | 127 | ### Applause goes to these wonderful people ✨ 128 | 129 | 130 | 131 | 136 | 137 |
132 | 133 | 134 | 135 |
138 | 139 |
140 |
141 |

Made with ❤ by CS wala

142 | 143 |
144 |
145 | 146 | ## If you liked the project don't forget to 🌟 and 🍽 the project. 147 | 148 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cswala-website", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@emotion/react": "^11.9.0", 7 | "@emotion/styled": "^11.8.1", 8 | "@fortawesome/fontawesome-svg-core": "^1.2.35", 9 | "@fortawesome/free-brands-svg-icons": "^5.15.3", 10 | "@fortawesome/free-regular-svg-icons": "^5.15.3", 11 | "@fortawesome/free-solid-svg-icons": "^5.15.3", 12 | "@fortawesome/react-fontawesome": "^0.1.14", 13 | "@material-ui/core": "^4.11.3", 14 | "@material-ui/icons": "^4.11.2", 15 | "@mui/material": "^5.6.4", 16 | "@testing-library/jest-dom": "^5.11.10", 17 | "@testing-library/react": "^11.2.6", 18 | "@testing-library/user-event": "^12.8.3", 19 | "bootstrap": "^5.1.3", 20 | "firebase": "^9.8.1", 21 | "font-awesome": "^4.7.0", 22 | "react": "^17.0.2", 23 | "react-bootstrap": "^2.2.0", 24 | "react-dom": "^17.0.2", 25 | "react-helmet": "^6.1.0", 26 | "react-router": "^5.2.0", 27 | "react-router-dom": "^5.2.0", 28 | "react-scripts": "^5.0.1", 29 | "react-select": "^5.2.2", 30 | "react-use": "^17.3.2", 31 | "react-useanimations": "^2.0.6", 32 | "sass": "^1.32.11", 33 | "web-vitals": "^1.1.1" 34 | }, 35 | "scripts": { 36 | "start": "react-scripts start", 37 | "build": "react-scripts build", 38 | "test": "react-scripts test", 39 | "eject": "react-scripts eject" 40 | }, 41 | "eslintConfig": { 42 | "extends": [ 43 | "react-app", 44 | "react-app/jest" 45 | ] 46 | }, 47 | "browserslist": { 48 | "production": [ 49 | ">0.2%", 50 | "not dead", 51 | "not op_mini all" 52 | ], 53 | "development": [ 54 | "last 1 chrome version", 55 | "last 1 firefox version", 56 | "last 1 safari version" 57 | ] 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSwala/CSwala-website/3a918992b5948ca2eacf4eb3c0ed8fe314dd73b3/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 14 | 15 | 16 | 17 | 26 | CSwala 27 | 28 | 29 | 30 | 31 |
32 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSwala/CSwala-website/3a918992b5948ca2eacf4eb3c0ed8fe314dd73b3/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSwala/CSwala-website/3a918992b5948ca2eacf4eb3c0ed8fe314dd73b3/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "CSwala", 3 | "name": "CSwala", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /public/portal.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "Title" : "1 mg", 4 | "Link" : "https://www.1mg.com/jobs" 5 | }, 6 | { 7 | "Title" : "314e Corporation", 8 | "Link" : "https://www.314e.com/" 9 | }, 10 | { 11 | "Title" : "3i Infotech", 12 | "Link" : "3i-infotech.com/careers/" 13 | }, 14 | { 15 | "Title" : "[24]7.ai", 16 | "Link" : "https://www.247.ai/career-search" 17 | }, 18 | { 19 | "Title" : "Acaira", 20 | "Link" : "https://www.acaira.com/Career.aspx" 21 | }, 22 | { 23 | "Title" : "Accenture", 24 | "Link" : "https://www.accenture.com/in-en/careers" 25 | }, 26 | { 27 | "Title" : "Accolite software", 28 | "Link" : "https://www.accolite.com/careers" 29 | }, 30 | { 31 | "Title" : "Accord software", 32 | "Link" : "https://accord-global.com/careers.html" 33 | }, 34 | { 35 | "Title" : "Acko", 36 | "Link" : "https://acko.hirexp.com/" 37 | }, 38 | { 39 | "Title" : "Adobe", 40 | "Link" : "https://www.adobe.com/careers.html" 41 | }, 42 | { 43 | "Title" : "AGC Networks", 44 | "Link" : "https://www.agcnetworks.com/career/" 45 | }, 46 | { 47 | "Title" : "Agile Infoway", 48 | "Link" : "https://www.agileinfoways.com/careers/" 49 | }, 50 | { 51 | "Title" : "Agile Solutions", 52 | "Link" : "http://agilesolutions.com/careers-2/ " 53 | }, 54 | { 55 | "Title" : "Agnikul Cosmos", 56 | "Link" : "https://agnikul.in/#/career" 57 | }, 58 | { 59 | "Title" : "Airbase", 60 | "Link" : "https://www.airbase.com/careers" 61 | }, 62 | { 63 | "Title" : "Airbnb", 64 | "Link" : "https://careers.airbnb.com/" 65 | }, 66 | { 67 | "Title" : "Airbus", 68 | "Link" : "https://www.airbus.com/careers.html" 69 | }, 70 | { 71 | "Title" : "AirGarage", 72 | "Link" : "https://airgara.ge/careers/" 73 | }, 74 | { 75 | "Title" : "Airtel x labs", 76 | "Link" : "https://careers.airtel.com/" 77 | }, 78 | { 79 | "Title" : "Ajio", 80 | "Link" : "https://www.ajio.com/ajio-careers" 81 | }, 82 | { 83 | "Title" : "Akamai", 84 | "Link" : "https://www.akamai.com/careers" 85 | }, 86 | { 87 | "Title" : "Alibaba Group", 88 | "Link" : "https://careers.alibaba.com" 89 | }, 90 | { 91 | "Title" : "Alphabet Inc", 92 | "Link" : "https://abc.xyz" 93 | }, 94 | { 95 | "Title" : "Alstom", 96 | "Link" : "https://www.alstom.com/careers" 97 | }, 98 | { 99 | "Title" : "Amadeus labs", 100 | "Link" : "https://jobs.amadeus.com/" 101 | }, 102 | { 103 | "Title" : "Amazon", 104 | "Link" : "https://www.amazon.jobs/en/" 105 | }, 106 | { 107 | "Title" : "Amdocs", 108 | "Link" : "https://asset.amdocs.com/careers/" 109 | }, 110 | { 111 | "Title" : "American express", 112 | "Link" : "https://www.americanexpress.com/en-us/careers/" 113 | }, 114 | { 115 | "Title" : "Amway", 116 | "Link" : "https://www.amway.in/about-amway/careers" 117 | }, 118 | { 119 | "Title" : "Anaxee", 120 | "Link" : "https://www.anaxee.com/career/" 121 | }, 122 | { 123 | "Title" : "Apex Technology", 124 | "Link" : "https://www.apextechnologies.info/job-vacancies.html" 125 | }, 126 | { 127 | "Title" : "Apna", 128 | "Link" : "https://www.instahyre.com/jobs-at-apna/" 129 | }, 130 | { 131 | "Title" : "App Dynamics", 132 | "Link" : "https://www.appdynamics.com/company/careers/india" 133 | }, 134 | { 135 | "Title" : "Appen", 136 | "Link" : "https://appen.com/jobs/" 137 | }, 138 | { 139 | "Title" : "AppInventiv", 140 | "Link" : "https://appinventiv.com/career/" 141 | }, 142 | { 143 | "Title" : "Apple", 144 | "Link" : "https://www.apple.com/jobs/in/" 145 | }, 146 | { 147 | "Title" : "Aptiv", 148 | "Link" : "https://jobs.aptiv.com/" 149 | }, 150 | { 151 | "Title" : "Arcesium", 152 | "Link" : "https://www.arcesium.com/careers.html" 153 | }, 154 | { 155 | "Title" : "Ardentisys", 156 | "Link" : "https://www.ardentisys.com/about-us/careers" 157 | }, 158 | { 159 | "Title" : "Arista Networks", 160 | "Link" : "https://www.arista.com/en/careers" 161 | }, 162 | { 163 | "Title" : "Ark Info", 164 | "Link" : "https://www.arkinfo.in/career" 165 | }, 166 | { 167 | "Title" : "Armaco", 168 | "Link" : "https://www.aramco.com" 169 | }, 170 | { 171 | "Title" : "Aryaka networks", 172 | "Link" : "https://www.linkedin.com/company/aryaka-networks/jobs?originalSubdomain=in" 173 | }, 174 | { 175 | "Title" : "Asteria Aerospace Ltd", 176 | "Link" : "https://asteria.co.in/careers/" 177 | }, 178 | { 179 | "Title" : "Athena Health", 180 | "Link" : "https://www.athenahealth.com/careers" 181 | }, 182 | { 183 | "Title" : "Ather Energy", 184 | "Link" : "https://www.atherenergy.com/careers" 185 | }, 186 | { 187 | "Title" : "Atlan", 188 | "Link" : "https://atlan.com/careers/" 189 | }, 190 | { 191 | "Title" : "Atlassian", 192 | "Link" : "https://www.atlassian.com/company/careers" 193 | }, 194 | { 195 | "Title" : "Atos", 196 | "Link" : "https://atos.net/en/careers" 197 | }, 198 | { 199 | "Title" : "Aujas", 200 | "Link" : "https://www.aujas.com/cybersecurity-careers" 201 | }, 202 | { 203 | "Title" : "Avail Finance", 204 | "Link" : "https://availfinance.in/opportunities/" 205 | }, 206 | { 207 | "Title" : "Avaya", 208 | "Link" : "https://careers.avaya.com/" 209 | }, 210 | { 211 | "Title" : "Bacancy Technology", 212 | "Link" : "https://www.bacancytechnology.com/careers" 213 | }, 214 | { 215 | "Title" : "Bain & Co", 216 | "Link" : "https://www.bain.com/careers/" 217 | }, 218 | { 219 | "Title" : "Bajaj", 220 | "Link" : "https://www.bajajgroup.org/careers" 221 | }, 222 | { 223 | "Title" : "BankBazar", 224 | "Link" : "https://www.bankbazaar.com/careers.html" 225 | }, 226 | { 227 | "Title" : "BARC India", 228 | "Link" : "https://www.barcindia.co.in/life-at-barc" 229 | }, 230 | { 231 | "Title" : "Barclays", 232 | "Link" : "https://home.barclays/careers/" 233 | }, 234 | { 235 | "Title" : "Bazaarvoice", 236 | "Link" : "https://www.bazaarvoice.com/company/careers/" 237 | }, 238 | { 239 | "Title" : "BearingPoint", 240 | "Link" : "https://www.bearingpoint.com/en/our-people/careers/" 241 | }, 242 | { 243 | "Title" : "Bellatrix Aerospace", 244 | "Link" : "http://www.bellatrixaerospace.com/" 245 | }, 246 | { 247 | "Title" : "Benchmark", 248 | "Link" : "https://benchmarkit.zohorecruit.com/jobs/Careers" 249 | }, 250 | { 251 | "Title" : "Berkshire Hathaway Inc", 252 | "Link" : "https://www.bhhc.com/careers/career-opportunities.aspx" 253 | }, 254 | { 255 | "Title" : "Better", 256 | "Link" : "https://better.com/about-us/careers" 257 | }, 258 | { 259 | "Title" : "BharatPe", 260 | "Link" : "https://bharatpe.com/career" 261 | }, 262 | { 263 | "Title" : "BigBasket", 264 | "Link" : "https://careers.bigbasket.com/" 265 | }, 266 | { 267 | "Title" : "Biocon", 268 | "Link" : "https://www.biocon.com/careers/" 269 | }, 270 | { 271 | "Title" : "Bitrix Infotech", 272 | "Link" : "https://bitrixinfotech.com/career" 273 | }, 274 | { 275 | "Title" : "BlackBuck", 276 | "Link" : "https://www.blackbuck.com/careers.php" 277 | }, 278 | { 279 | "Title" : "Blackhawk", 280 | "Link" : "https://blackhawknetwork.com/company/careers" 281 | }, 282 | { 283 | "Title" : "Blackrock", 284 | "Link" : "https://careers.blackrock.com/" 285 | }, 286 | { 287 | "Title" : "Blizzard Entertainment", 288 | "Link" : "https://careers.blizzard.com/global/en" 289 | }, 290 | { 291 | "Title" : "Bloomberg L.P.", 292 | "Link" : "https://careers.bloomberg.com/job/search" 293 | }, 294 | { 295 | "Title" : "BlueJeans", 296 | "Link" : "https://www.bluejeans.com/careers" 297 | }, 298 | { 299 | "Title" : "Bluestacks", 300 | "Link" : "https://www.bluestacks.com/work-at-bluestacks.html" 301 | }, 302 | { 303 | "Title" : "BMC Software", 304 | "Link" : "https://www.bmc.com/careers/careers.html" 305 | }, 306 | { 307 | "Title" : "BNY Mellon", 308 | "Link" : "https://jobs.bnymellon.com/" 309 | }, 310 | { 311 | "Title" : "Boeing", 312 | "Link" : "https://jobs.boeing.com/" 313 | }, 314 | { 315 | "Title" : "Booking.com", 316 | "Link" : "https://jobs.booking.com/careers" 317 | }, 318 | { 319 | "Title" : "Bosch", 320 | "Link" : "https://www.bosch.in/careers/" 321 | }, 322 | { 323 | "Title" : "Bottemline Technologies", 324 | "Link" : "https://www.bottomline.com/apac/about/careers" 325 | }, 326 | { 327 | "Title" : "Bounce", 328 | "Link" : "https://careers-bounce.peoplestrong.com/portal/job/joblist" 329 | }, 330 | { 331 | "Title" : "BPL India", 332 | "Link" : "https://www.bplindia.in/careers.html" 333 | }, 334 | { 335 | "Title" : "Brahmastra Aerospace", 336 | "Link" : "https://www.brahmastraspace.org/career" 337 | }, 338 | { 339 | "Title" : "Brooklinen", 340 | "Link" : "https://www.brooklinen.com/pages/careers" 341 | }, 342 | { 343 | "Title" : "BrowserStack", 344 | "Link" : "https://www.browserstack.com/careers" 345 | }, 346 | { 347 | "Title" : "BT Global Services", 348 | "Link" : "https://www.bt.com/careers" 349 | }, 350 | { 351 | "Title" : "BukuWarung", 352 | "Link" : "https://www.notion.so/" 353 | }, 354 | { 355 | "Title" : "Byju's", 356 | "Link" : "https://byjus.com/careers/all-openings/job-category/tech/" 357 | }, 358 | { 359 | "Title" : "BYJU’S", 360 | "Link" : "https://byjus.com/careers-at-byjus/" 361 | }, 362 | { 363 | "Title" : "ByteDance", 364 | "Link" : "https://jobs.bytedance.com/en" 365 | }, 366 | { 367 | "Title" : "Byteridge", 368 | "Link" : "https://byteridge.com/career.html" 369 | }, 370 | { 371 | "Title" : "Cadence", 372 | "Link" : "https://www.cadence.com/en_US/home/company/careers.html" 373 | }, 374 | { 375 | "Title" : "Cameo", 376 | "Link" : "https://careers.cameo.com" 377 | }, 378 | { 379 | "Title" : "Capgemini", 380 | "Link" : "https://www.capgemini.com/in-en/careers/" 381 | }, 382 | { 383 | "Title" : "Capillary", 384 | "Link" : "https://www.capillarytech.com/about-us/careers/" 385 | }, 386 | { 387 | "Title" : "Capita", 388 | "Link" : "https://www.capita.com/careers" 389 | }, 390 | { 391 | "Title" : "Capital Numbers", 392 | "Link" : "https://www.capitalnumbers.com/careers.php" 393 | }, 394 | { 395 | "Title" : "CarDekho", 396 | "Link" : "https://careers.cardekho.com/" 397 | }, 398 | { 399 | "Title" : "CarWale", 400 | "Link" : "https://www.carwale.com/career/" 401 | }, 402 | { 403 | "Title" : "CasaOne", 404 | "Link" : "https://casaone.skillate.com/" 405 | }, 406 | { 407 | "Title" : "CashFree", 408 | "Link" : "https://www.cashfree.com/careers" 409 | }, 410 | { 411 | "Title" : "Celigo", 412 | "Link" : "https://www.celigo.com/company/careers/" 413 | }, 414 | { 415 | "Title" : "Cerner", 416 | "Link" : "https://careers.cerner.com/" 417 | }, 418 | { 419 | "Title" : "Cerner", 420 | "Link" : "https://careers.cerner.com/" 421 | }, 422 | { 423 | "Title" : "CGI Group", 424 | "Link" : "https://www.cgi.com/en/careers" 425 | }, 426 | { 427 | "Title" : "Chargebee", 428 | "Link" : "https://careers.chargebee.com/jobs/" 429 | }, 430 | { 431 | "Title" : "Chime", 432 | "Link" : "https://www.chime.com/careers/" 433 | }, 434 | { 435 | "Title" : "Chronus", 436 | "Link" : "https://chronus.com/about-us/careers" 437 | }, 438 | { 439 | "Title" : "Ciesto Solutions", 440 | "Link" : "https://ciestosolutions.com/career-opportunities/" 441 | }, 442 | { 443 | "Title" : "Cimpress", 444 | "Link" : "https://cimpress.com/careers/" 445 | }, 446 | { 447 | "Title" : "Cisco", 448 | "Link" : "https://jobs.cisco.com/" 449 | }, 450 | { 451 | "Title" : "Citicorp", 452 | "Link" : "https://careers.citigroup.com/" 453 | }, 454 | { 455 | "Title" : "Citrix", 456 | "Link" : "https://jobs.citrix.com/" 457 | }, 458 | { 459 | "Title" : "Clarion Technologies", 460 | "Link" : "https://www.clariontech.com/careers" 461 | }, 462 | { 463 | "Title" : "Classic Informatics", 464 | "Link" : "https://www.classicinformatics.com/careers/" 465 | }, 466 | { 467 | "Title" : "Clavis Technologies", 468 | "Link" : "https://www.clavistechnologies.com/careers/" 469 | }, 470 | { 471 | "Title" : "ClearTax", 472 | "Link" : "https://cleartax.in/s/careers" 473 | }, 474 | { 475 | "Title" : "ClearTrip", 476 | "Link" : "https://careers.cleartrip.com/" 477 | }, 478 | { 479 | "Title" : "Cloudera", 480 | "Link" : "https://www.cloudera.com/careers.html" 481 | }, 482 | { 483 | "Title" : "Code Nation", 484 | "Link" : "http://codenation.co.in/hiringphilosophy.html" 485 | }, 486 | { 487 | "Title" : "Codenation innovation labs", 488 | "Link" : "http://codenation.co.in/hiringprocess.html" 489 | }, 490 | { 491 | "Title" : "CodingNinjas", 492 | "Link" : "https://www.linkedin.com/jobs/coding-ninjas-jobs/?originalSubdomain=in" 493 | }, 494 | { 495 | "Title" : "Cognizant", 496 | "Link" : "https://careers.cognizant.com/in/en" 497 | }, 498 | { 499 | "Title" : "Cognologix", 500 | "Link" : "https://cognologix.com/" 501 | }, 502 | { 503 | "Title" : "Cohesity", 504 | "Link" : "https://www.cohesity.com/company/careers/" 505 | }, 506 | { 507 | "Title" : "CoinDCX", 508 | "Link" : "https://careers.coindcx.com/" 509 | }, 510 | { 511 | "Title" : "Coinswitch kuber", 512 | "Link" : "https://recruiterflow.com/coinswitch/jobs" 513 | }, 514 | { 515 | "Title" : "Collabera", 516 | "Link" : "https://www.collabera.com/job-apply/" 517 | }, 518 | { 519 | "Title" : "Commvault", 520 | "Link" : "https://careers.commvault.com/" 521 | }, 522 | { 523 | "Title" : "Comsoft", 524 | "Link" : "https://www.comsoft.com.sg/EN/html/careers.htm" 525 | }, 526 | { 527 | "Title" : "Confluent", 528 | "Link" : "https://www.confluent.io/careers/" 529 | }, 530 | { 531 | "Title" : "Continental", 532 | "Link" : "https://www.continental.com/en/career/" 533 | }, 534 | { 535 | "Title" : "Copucom", 536 | "Link" : "https://www.compucom.com/careers/" 537 | }, 538 | { 539 | "Title" : "COSGrid", 540 | "Link" : "https://www.cosgrid.com/careers" 541 | }, 542 | { 543 | "Title" : "Cradlepoint", 544 | "Link" : "https://cradlepoint.com/about-us/careers/job-listings/" 545 | }, 546 | { 547 | "Title" : "CRED", 548 | "Link" : "https://careers.cred.club/" 549 | }, 550 | { 551 | "Title" : "Credit Suisse", 552 | "Link" : "https://www.credit-suisse.com/careers/en/apply.html" 553 | }, 554 | { 555 | "Title" : "Crestron", 556 | "Link" : "https://www.crestron.com/About/careers-jobs-employment-opportunities" 557 | }, 558 | { 559 | "Title" : "Crio.Do", 560 | "Link" : "https://www.crio.do/recruit/" 561 | }, 562 | { 563 | "Title" : "Crowdstrike", 564 | "Link" : "https://www.crowdstrike.com/careers/" 565 | }, 566 | { 567 | "Title" : "CSS Corp", 568 | "Link" : "https://www.csscorp.com/company/careers/" 569 | }, 570 | { 571 | "Title" : "CueMath", 572 | "Link" : "https://www.cuemath.com/work-from-home/" 573 | }, 574 | { 575 | "Title" : "Cure.Fit", 576 | "Link" : "https://www.cure.fit/careers" 577 | }, 578 | { 579 | "Title" : "Curology", 580 | "Link" : "https://curology.com/careers/" 581 | }, 582 | { 583 | "Title" : "Cvent", 584 | "Link" : "https://www.cvent.com/en/careers" 585 | }, 586 | { 587 | "Title" : "Cybage", 588 | "Link" : "https://www.cybage.com/careers/current-openings" 589 | }, 590 | { 591 | "Title" : "Cygnet", 592 | "Link" : "https://www.cygnet-infotech.com/job-opportunities" 593 | }, 594 | { 595 | "Title" : "Daffodil Software", 596 | "Link" : "https://www.daffodilsw.com/career" 597 | }, 598 | { 599 | "Title" : "DailyHunt", 600 | "Link" : "https://careers.dailyhunt.com/#!/" 601 | }, 602 | { 603 | "Title" : "Databricks", 604 | "Link" : "https://databricks.com/company/careers" 605 | }, 606 | { 607 | "Title" : "Datadog", 608 | "Link" : "https://www.datadoghq.com/careers/" 609 | }, 610 | { 611 | "Title" : "Datamatics", 612 | "Link" : "http://careers.datamatics.com/dm_career/client/index.aspx" 613 | }, 614 | { 615 | "Title" : "Dave", 616 | "Link" : "https://dave.com/careers" 617 | }, 618 | { 619 | "Title" : "DE Shaw", 620 | "Link" : "https://www.deshawindia.com/careers" 621 | }, 622 | { 623 | "Title" : "DealShare", 624 | "Link" : "https://www.dealshare.in/careers#home" 625 | }, 626 | { 627 | "Title" : "Delhivery", 628 | "Link" : "https://www.delhivery.com/careers/" 629 | }, 630 | { 631 | "Title" : "Dell EMC", 632 | "Link" : "https://www.dell.com/learn/in/en/incorp1/viewall/careers" 633 | }, 634 | { 635 | "Title" : "Dell", 636 | "Link" : "https://jobs.dell.com/" 637 | }, 638 | { 639 | "Title" : "Delta Air Lines", 640 | "Link" : "https://delta.avature.net/careers" 641 | }, 642 | { 643 | "Title" : "Deolitte", 644 | "Link" : "https://jobs2.deloitte.com/ui/en" 645 | }, 646 | { 647 | "Title" : "Design.codes", 648 | "Link" : "https://designs.codes/career/" 649 | }, 650 | { 651 | "Title" : "Deutsche Bank", 652 | "Link" : "https://careers.db.com/" 653 | }, 654 | { 655 | "Title" : "Dhruva Space", 656 | "Link" : "https://angel.co/company/dhruvaspace" 657 | }, 658 | { 659 | "Title" : "Dialpad", 660 | "Link" : "https://www.dialpad.com/careers/" 661 | }, 662 | { 663 | "Title" : "Diebold", 664 | "Link" : "https://www.dieboldnixdorf.com/en-us/careers" 665 | }, 666 | { 667 | "Title" : "Dimension Data", 668 | "Link" : "https://www.dimensiondata.com/en-gb/careers" 669 | }, 670 | { 671 | "Title" : "Directi", 672 | "Link" : "https://careers.directi.com/" 673 | }, 674 | { 675 | "Title" : "Discord", 676 | "Link" : "https://discord.com/jobs" 677 | }, 678 | { 679 | "Title" : "Discovery inc", 680 | "Link" : "https://jobs.discovery.com/careers-home/" 681 | }, 682 | { 683 | "Title" : "Disney", 684 | "Link" : "https://jobs.disneycareers.com/location/india-jobs/391-28648/1269750/2" 685 | }, 686 | { 687 | "Title" : "Dispatch", 688 | "Link" : "https://www.naukri.com/dispatch-jobs" 689 | }, 690 | { 691 | "Title" : "Divvy Homes", 692 | "Link" : "https://jobs.lever.co/divvyhomes" 693 | }, 694 | { 695 | "Title" : "DP World", 696 | "Link" : "https://ehpv.fa.em2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/requisitions" 697 | }, 698 | { 699 | "Title" : "DRDO", 700 | "Link" : "https://www.drdo.gov.in/careers" 701 | }, 702 | { 703 | "Title" : "Dream11", 704 | "Link" : "https://www.dreamsports.group/careers" 705 | }, 706 | { 707 | "Title" : "DropBox", 708 | "Link" : "https://www.datadoghq.com/careers/" 709 | }, 710 | { 711 | "Title" : "Druva", 712 | "Link" : "https://www.druva.com/about/careers/" 713 | }, 714 | { 715 | "Title" : "Duck Creek Technologies", 716 | "Link" : "https://www.duckcreek.com/careers/" 717 | }, 718 | { 719 | "Title" : "Dukaan", 720 | "Link" : "https://angel.co/company/dukaan-app/jobs" 721 | }, 722 | { 723 | "Title" : "Dunzo", 724 | "Link" : "https://www.dunzo.com/careers" 725 | }, 726 | { 727 | "Title" : "EA Games", 728 | "Link" : "https://www.ea.com/careers" 729 | }, 730 | { 731 | "Title" : "eBay", 732 | "Link" : "https://careers.ebayinc.com/" 733 | }, 734 | { 735 | "Title" : "Ecolousys Technologies", 736 | "Link" : "https://www.naukri.com/ecclousys-technologies-jobs-careers-5221778" 737 | }, 738 | { 739 | "Title" : "Ecotech", 740 | "Link" : "https://www.ecotech.com/careers/career-opportunities/" 741 | }, 742 | { 743 | "Title" : "Enfussion", 744 | "Link" : "https://enfusion.com/careers/" 745 | }, 746 | { 747 | "Title" : "Envestnet Yodlee", 748 | "Link" : "https://www.yodlee.com/company/careers" 749 | }, 750 | { 751 | "Title" : "Ericsson", 752 | "Link" : "https://www.ericsson.com/en/careers" 753 | }, 754 | { 755 | "Title" : "Eurofins", 756 | "Link" : "https://careers.eurofins.com/in/" 757 | }, 758 | { 759 | "Title" : "Exceptionaire", 760 | "Link" : "https://www.exceptionaire.com/careers/" 761 | }, 762 | { 763 | "Title" : "EXL Healthcare", 764 | "Link" : "https://exlservice.com/careers" 765 | }, 766 | { 767 | "Title" : "Expedia", 768 | "Link" : "https://lifeatexpediagroup.com/jobs/" 769 | }, 770 | { 771 | "Title" : "Experian", 772 | "Link" : "https://www.experian.in/careers" 773 | }, 774 | { 775 | "Title" : "EY", 776 | "Link" : "https://careers.ey.com/" 777 | }, 778 | { 779 | "Title" : "EyeROV", 780 | "Link" : "https://www.eyerov.com/careers/" 781 | }, 782 | { 783 | "Title" : "Facebook", 784 | "Link" : "https://www.facebook.com/careers/" 785 | }, 786 | { 787 | "Title" : "FamPay", 788 | "Link" : "https://fampay.in/careers" 789 | }, 790 | { 791 | "Title" : "Fidelity Investments", 792 | "Link" : "https://india.fidelity.com/careers/" 793 | }, 794 | { 795 | "Title" : "Fidelity investments", 796 | "Link" : "https://jobs.fidelity.com/" 797 | }, 798 | { 799 | "Title" : "Fingent", 800 | "Link" : "https://www.fingent.com/careers/" 801 | }, 802 | { 803 | "Title" : "FireEye inc", 804 | "Link" : "https://www.fireeye.com/company/jobs.html" 805 | }, 806 | { 807 | "Title" : "Fischer Jordan", 808 | "Link" : "https://fischerjordan.com/careers/" 809 | }, 810 | { 811 | "Title" : "Fiserv", 812 | "Link" : "https://www.careers.fiserv.com" 813 | }, 814 | { 815 | "Title" : "Flatworld Solutions", 816 | "Link" : "https://www.flatworldsolutions.com/careers/forms/apply.php" 817 | }, 818 | { 819 | "Title" : "Flexport", 820 | "Link" : "https://www.flexport.com/careers/jobs/" 821 | }, 822 | { 823 | "Title" : "Flipkart", 824 | "Link" : "https://www.flipkartcareers.com/" 825 | }, 826 | { 827 | "Title" : "Flock", 828 | "Link" : "https://careers.flock.com/" 829 | }, 830 | { 831 | "Title" : "FlyFin", 832 | "Link" : "https://www.linkedin.com/company/flyfin-ai/jobs/" 833 | }, 834 | { 835 | "Title" : "Flytxt", 836 | "Link" : "https://www.flytxt.com/job/" 837 | }, 838 | { 839 | "Title" : "Fractal", 840 | "Link" : "https://fractal.ai/job-openings/" 841 | }, 842 | { 843 | "Title" : "Frappe Technologies", 844 | "Link" : "https://frappe.io/careers" 845 | }, 846 | { 847 | "Title" : "FreeCharge", 848 | "Link" : "https://careers.freecharge.in/" 849 | }, 850 | { 851 | "Title" : "Freshworks", 852 | "Link" : "https://www.freshworks.com/company/careers/" 853 | }, 854 | { 855 | "Title" : "Frontrow", 856 | "Link" : "https://www.gofrontrow.com/about/careers/" 857 | }, 858 | { 859 | "Title" : "Frugal Testing", 860 | "Link" : "https://frugaltesting.com/careers" 861 | }, 862 | { 863 | "Title" : "Full Story", 864 | "Link" : "https://www.fullstory.com/careers" 865 | }, 866 | { 867 | "Title" : "Furlenco", 868 | "Link" : "https://jobs.furlenco.com/" 869 | }, 870 | { 871 | "Title" : "fyle", 872 | "Link" : "https://www.fylehq.com/company/team/join" 873 | }, 874 | { 875 | "Title" : "Fynd", 876 | "Link" : "https://fynd.careers/" 877 | }, 878 | { 879 | "Title" : "Gartner", 880 | "Link" : "https://jobs.gartner.com/" 881 | }, 882 | { 883 | "Title" : "Garuda Aerospace private Ltd", 884 | "Link" : "https://www.garudaaerospace.com/" 885 | }, 886 | { 887 | "Title" : "GE Healthcare", 888 | "Link" : "https://jobs.gecareers.com/healthcare/global/en" 889 | }, 890 | { 891 | "Title" : "GE", 892 | "Link" : "https://www.ge.com/in/careers/opportunities" 893 | }, 894 | { 895 | "Title" : "GeeksForGeeks", 896 | "Link" : "https://www.geeksforgeeks.org/careers/?" 897 | }, 898 | { 899 | "Title" : "Ghost", 900 | "Link" : "https://careers.ghost.org/" 901 | }, 902 | { 903 | "Title" : "Github", 904 | "Link" : "https://github.com/about/careers" 905 | }, 906 | { 907 | "Title" : "Gitlab", 908 | "Link" : "https://about.gitlab.com/jobs/" 909 | }, 910 | { 911 | "Title" : "Global Logic", 912 | "Link" : "https://www.globallogic.com/in/careers/" 913 | }, 914 | { 915 | "Title" : "Global Space", 916 | "Link" : "https://globalspace.in/career.php" 917 | }, 918 | { 919 | "Title" : "Glu", 920 | "Link" : "https://www.glu.com/working-at-glu/" 921 | }, 922 | { 923 | "Title" : "Gobussoft", 924 | "Link" : "https://globussoft.com/vacancies/" 925 | }, 926 | { 927 | "Title" : "GoDaddy", 928 | "Link" : "https://careers.godaddy.com/" 929 | }, 930 | { 931 | "Title" : "GoDigit", 932 | "Link" : "https://www.godigit.com/" 933 | }, 934 | { 935 | "Title" : "Godrej Aerospace", 936 | "Link" : "https://www.godrej.com/godrejandboyce/gnb-careers" 937 | }, 938 | { 939 | "Title" : "Goibibo", 940 | "Link" : "https://www.goibibo.com/careers/" 941 | }, 942 | { 943 | "Title" : "Gojek", 944 | "Link" : "https://career.gojek.com/" 945 | }, 946 | { 947 | "Title" : "Goldman Sachs", 948 | "Link" : "https://www.goldmansachs.com/careers/" 949 | }, 950 | { 951 | "Title" : "Google", 952 | "Link" : "https://careers.google.com/" 953 | }, 954 | { 955 | "Title" : "Grab", 956 | "Link" : "https://grab.careers/" 957 | }, 958 | { 959 | "Title" : "Graviton", 960 | "Link" : "https://www.gravitontrading.com/careers.html" 961 | }, 962 | { 963 | "Title" : "GreyOrange", 964 | "Link" : "https://www.greyorange.com/about/careers/" 965 | }, 966 | { 967 | "Title" : "Greysoft", 968 | "Link" : "http://greysoft.co/careers" 969 | }, 970 | { 971 | "Title" : "Grofers", 972 | "Link" : "https://grofers.com/careers/" 973 | }, 974 | { 975 | "Title" : "Groupon", 976 | "Link" : "https://www.grouponcareers.com/" 977 | }, 978 | { 979 | "Title" : "Groww", 980 | "Link" : "https://groww.skillate.com/" 981 | }, 982 | { 983 | "Title" : "Guild Education", 984 | "Link" : "https://careers.guildeducation.com" 985 | }, 986 | { 987 | "Title" : "Hackerearth", 988 | "Link" : "https://www.hackerearth.com/careers/" 989 | }, 990 | { 991 | "Title" : "HackerRank", 992 | "Link" : "https://www.hackerrank.com/careers" 993 | }, 994 | { 995 | "Title" : "Harness", 996 | "Link" : "https://harness.io/careers/" 997 | }, 998 | { 999 | "Title" : "Hashedin", 1000 | "Link" : "https://hashedin.com/careers/" 1001 | }, 1002 | { 1003 | "Title" : "HBO", 1004 | "Link" : "https://warnermediacareers.com/hbo-jobs" 1005 | }, 1006 | { 1007 | "Title" : "HealthAsyst", 1008 | "Link" : "https://www.healthasyst.com/careers/" 1009 | }, 1010 | { 1011 | "Title" : "Healthify me", 1012 | "Link" : "https://www.healthifyme.com/careers/" 1013 | }, 1014 | { 1015 | "Title" : "HERE", 1016 | "Link" : "https://www.here.com/careers" 1017 | }, 1018 | { 1019 | "Title" : "Hewlett-Packard", 1020 | "Link" : "https://jobs.hp.com/en-us/" 1021 | }, 1022 | { 1023 | "Title" : "HIE HQ", 1024 | "Link" : "https://hiehq.com/career" 1025 | }, 1026 | { 1027 | "Title" : "Hike messenger", 1028 | "Link" : "https://www.hike.in/workathike/" 1029 | }, 1030 | { 1031 | "Title" : "Hiring Plug", 1032 | "Link" : "https://www.hiringplug.com/careers.php" 1033 | }, 1034 | { 1035 | "Title" : "Hitachi", 1036 | "Link" : "https://careers.hitachi.com" 1037 | }, 1038 | { 1039 | "Title" : "Honeywell", 1040 | "Link" : "https://tech.hotstar.com/" 1041 | }, 1042 | { 1043 | "Title" : "Hotstar", 1044 | "Link" : "https://tech.hotstar.com/" 1045 | }, 1046 | { 1047 | "Title" : "HP", 1048 | "Link" : "https://jobs.hp.com/" 1049 | }, 1050 | { 1051 | "Title" : "HRDevi Talent Acquistion", 1052 | "Link" : "http://www.hrdevi.co.in" 1053 | }, 1054 | { 1055 | "Title" : "HSBC", 1056 | "Link" : "https://www.hsbc.com/careers" 1057 | }, 1058 | { 1059 | "Title" : "HubSpot", 1060 | "Link" : "https://www.hubspot.com/careers" 1061 | }, 1062 | { 1063 | "Title" : "Hyperlink InfoSystem", 1064 | "Link" : "https://www.hyperlinkinfosystem.com/career.html" 1065 | }, 1066 | { 1067 | "Title" : "Hyundai", 1068 | "Link" : "https://www.hyundai.com/in/en/hyundai-story/career/overview.html" 1069 | }, 1070 | { 1071 | "Title" : "Iasys", 1072 | "Link" : "https://www.iasys.co.in/career.php" 1073 | }, 1074 | { 1075 | "Title" : "IBM", 1076 | "Link" : "https://www.ibm.com/in-en/employment/" 1077 | }, 1078 | { 1079 | "Title" : "IdeaForge", 1080 | "Link" : "https://www.ideaforge.co.in/career/" 1081 | }, 1082 | { 1083 | "Title" : "Igneous Infotech", 1084 | "Link" : "http://ingenious-infotech.com/#career" 1085 | }, 1086 | { 1087 | "Title" : "IHS Markit", 1088 | "Link" : "https://careers.ihsmarkit.com/" 1089 | }, 1090 | { 1091 | "Title" : "Impact Analytics", 1092 | "Link" : "https://www.impactanalytics.co/join-us/" 1093 | }, 1094 | { 1095 | "Title" : "InApp", 1096 | "Link" : "https://inapp.com/careers/jobs-at-inapp/" 1097 | }, 1098 | { 1099 | "Title" : "Incedoic", 1100 | "Link" : "https://www.incedoinc.com/careers/" 1101 | }, 1102 | { 1103 | "Title" : "Indeed", 1104 | "Link" : "https://in.indeed.com/cmp/Indeed" 1105 | }, 1106 | { 1107 | "Title" : "India Mart", 1108 | "Link" : "https://careers.indiamart.com/" 1109 | }, 1110 | { 1111 | "Title" : "Infilon", 1112 | "Link" : "https://www.infilon.com/career/" 1113 | }, 1114 | { 1115 | "Title" : "Info Edge", 1116 | "Link" : "https://careers.infoedge.com/" 1117 | }, 1118 | { 1119 | "Title" : "Infonaya", 1120 | "Link" : "https://www.infonaya.com/Career.aspx" 1121 | }, 1122 | { 1123 | "Title" : "Infor", 1124 | "Link" : "https://www.infor.com/about/careers" 1125 | }, 1126 | { 1127 | "Title" : "Informatica", 1128 | "Link" : "https://informatica.gr8people.com/jobs" 1129 | }, 1130 | { 1131 | "Title" : "Informatics", 1132 | "Link" : "https://www.informaticsglobal.com/careers/" 1133 | }, 1134 | { 1135 | "Title" : "Infosys", 1136 | "Link" : "https://www.infosys.com/careers.html" 1137 | }, 1138 | { 1139 | "Title" : "Inmobi", 1140 | "Link" : "https://www.inmobi.com/company/careers/" 1141 | }, 1142 | { 1143 | "Title" : "Innovaccer", 1144 | "Link" : "https://innovaccer.com/careers/" 1145 | }, 1146 | { 1147 | "Title" : "Intel", 1148 | "Link" : "https://www.intel.com/content/www/us/en/jobs/jobs-at-intel.html" 1149 | }, 1150 | { 1151 | "Title" : "Intel", 1152 | "Link" : "https://www.intel.com/content/www/us/en/jobs/jobs-at-intel.html" 1153 | }, 1154 | { 1155 | "Title" : "Intellika", 1156 | "Link" : "https://www.intellika.in/careers/" 1157 | }, 1158 | { 1159 | "Title" : "Intuit", 1160 | "Link" : "https://www.intuit.com/careers/" 1161 | }, 1162 | { 1163 | "Title" : "InVision", 1164 | "Link" : "https://www.invisionapp.com/careers" 1165 | }, 1166 | { 1167 | "Title" : "ION Energy", 1168 | "Link" : "https://apply.workable.com/ionenergy/?lng=en" 1169 | }, 1170 | { 1171 | "Title" : "IP Infusion", 1172 | "Link" : "https://www.ipinfusion.com/career/" 1173 | }, 1174 | { 1175 | "Title" : "iQuanti", 1176 | "Link" : "https://www.iquanti.com/contact-us/careers/" 1177 | }, 1178 | { 1179 | "Title" : "IQVIA", 1180 | "Link" : "https://jobs.iqvia.com/" 1181 | }, 1182 | { 1183 | "Title" : "Iron Mountain", 1184 | "Link" : "https://www.ironmountain.com/in/about-us/careers" 1185 | }, 1186 | { 1187 | "Title" : "Ishir", 1188 | "Link" : "https://www.ishir.com/career.htm" 1189 | }, 1190 | { 1191 | "Title" : "ISRO", 1192 | "Link" : "https://www.isro.gov.in/careers" 1193 | }, 1194 | { 1195 | "Title" : "Itransition", 1196 | "Link" : "https://www.itransition.com/company/career" 1197 | }, 1198 | { 1199 | "Title" : "Ixigo", 1200 | "Link" : "https://www.ixigo.com/about/careers/" 1201 | }, 1202 | { 1203 | "Title" : "Jaguar", 1204 | "Link" : "https://www.jaguarlandrovercareers.com/" 1205 | }, 1206 | { 1207 | "Title" : "Jeavio", 1208 | "Link" : "https://www.jeavio.com/careers" 1209 | }, 1210 | { 1211 | "Title" : "Jio", 1212 | "Link" : "https://careers.jio.com/" 1213 | }, 1214 | { 1215 | "Title" : "JP Morgan", 1216 | "Link" : "https://careers.jpmorgan.com/IN/en/home" 1217 | }, 1218 | { 1219 | "Title" : "Jumbotail", 1220 | "Link" : "https://jumbotail.com/careers/" 1221 | }, 1222 | { 1223 | "Title" : "Junglee Games", 1224 | "Link" : "https://www.jungleegames.com/grow.php" 1225 | }, 1226 | { 1227 | "Title" : "Juniper Networks", 1228 | "Link" : "https://www.juniper.net/us/en/company/careers/" 1229 | }, 1230 | { 1231 | "Title" : "Jupiter money", 1232 | "Link" : "https://jobs.lever.co/jupiter" 1233 | }, 1234 | { 1235 | "Title" : "Juspay", 1236 | "Link" : "https://www.juspay.in/careers" 1237 | }, 1238 | { 1239 | "Title" : "Kaleyra", 1240 | "Link" : "https://www.kaleyra.com/careers/" 1241 | }, 1242 | { 1243 | "Title" : "Kantar", 1244 | "Link" : "https://www.kantar.com/careers" 1245 | }, 1246 | { 1247 | "Title" : "Kesari bharat", 1248 | "Link" : "https://www.linkedin.com/in/deepak-sharda-6594561b1/" 1249 | }, 1250 | { 1251 | "Title" : "Keyvalue", 1252 | "Link" : "https://keyvalue.systems/" 1253 | }, 1254 | { 1255 | "Title" : "Khatabook", 1256 | "Link" : "https://khatabook.com/hiring" 1257 | }, 1258 | { 1259 | "Title" : "Khoros", 1260 | "Link" : "https://khoros.com/about/careers" 1261 | }, 1262 | { 1263 | "Title" : "Kickstarter", 1264 | "Link" : "https://jobs.kickstarter.com/" 1265 | }, 1266 | { 1267 | "Title" : "KLA Tencor", 1268 | "Link" : "https://www.kla-tencor.com/careers" 1269 | }, 1270 | { 1271 | "Title" : "Koch", 1272 | "Link" : "https://jobs.kochcareers.com/" 1273 | }, 1274 | { 1275 | "Title" : "KPN", 1276 | "Link" : "http://www.kpn-corp.com/?page_id=201" 1277 | }, 1278 | { 1279 | "Title" : "Land rover", 1280 | "Link" : "https://www.jaguarlandrovercareers.com/" 1281 | }, 1282 | { 1283 | "Title" : "Leap Finance", 1284 | "Link" : "https://leapfinance.freshteam.com/jobs" 1285 | }, 1286 | { 1287 | "Title" : "Lenovo", 1288 | "Link" : "https://lenovocareers.com/" 1289 | }, 1290 | { 1291 | "Title" : "Lenskart", 1292 | "Link" : "https://hiring.lenskart.com/" 1293 | }, 1294 | { 1295 | "Title" : "Licious", 1296 | "Link" : "https://www.careers.in/" 1297 | }, 1298 | { 1299 | "Title" : "LinkedIn", 1300 | "Link" : "https://careers.linkedin.com/" 1301 | }, 1302 | { 1303 | "Title" : "Livspace", 1304 | "Link" : "https://www.livspace.com/in/careers" 1305 | }, 1306 | { 1307 | "Title" : "Lockheed Martin", 1308 | "Link" : "https://www.lockheedmartin.com/en-ca/careers.html" 1309 | }, 1310 | { 1311 | "Title" : "Logica", 1312 | "Link" : "https://www.naukri.com/logica-pvt-ltd-jobs-careers-333271" 1313 | }, 1314 | { 1315 | "Title" : "LogicFruit", 1316 | "Link" : "https://www.logic-fruit.com/" 1317 | }, 1318 | { 1319 | "Title" : "Logicmonitor", 1320 | "Link" : "https://www.logicmonitor.com/careers" 1321 | }, 1322 | { 1323 | "Title" : "Lowe's companies, inc", 1324 | "Link" : "https://corporate.lowes.com/careers/search-apply" 1325 | }, 1326 | { 1327 | "Title" : "LTI", 1328 | "Link" : "https://careers.lntinfotech.com/search/careers.lntinfotech.com?q=&sortColumn=referencedate&sortDirection=asc" 1329 | }, 1330 | { 1331 | "Title" : "Lululemon", 1332 | "Link" : "https://careers.lululemon.com/en_US/careers" 1333 | }, 1334 | { 1335 | "Title" : "Magazine3", 1336 | "Link" : "https://www.naukri.com/magazine3-jobs-careers-2374534" 1337 | }, 1338 | { 1339 | "Title" : "Magicpin", 1340 | "Link" : "https://magicpin.darwinbox.in/ms/candidate/careers" 1341 | }, 1342 | { 1343 | "Title" : "Mahindra", 1344 | "Link" : "https://careers.techmahindra.com" 1345 | }, 1346 | { 1347 | "Title" : "MakeMyTrip", 1348 | "Link" : "https://careers.makemytrip.com/" 1349 | }, 1350 | { 1351 | "Title" : "Mantech International", 1352 | "Link" : "https://www.mantech.com/careers" 1353 | }, 1354 | { 1355 | "Title" : "Maq", 1356 | "Link" : "https://maqsoftware.com/careers" 1357 | }, 1358 | { 1359 | "Title" : "Master Card", 1360 | "Link" : "https://www.mastercard.us/en-us/vision/who-we-are/careers.html" 1361 | }, 1362 | { 1363 | "Title" : "Master Class", 1364 | "Link" : "https://careers.masterclass.com" 1365 | }, 1366 | { 1367 | "Title" : "Mathworks", 1368 | "Link" : "https://in.mathworks.com/company/jobs/opportunities.html" 1369 | }, 1370 | { 1371 | "Title" : "Maven Workforce", 1372 | "Link" : "https://www.mavenworkforce.com/jobs" 1373 | }, 1374 | { 1375 | "Title" : "McAfee", 1376 | "Link" : "https://careers.mcafee.com/search-jobs" 1377 | }, 1378 | { 1379 | "Title" : "Media.net", 1380 | "Link" : "https://careers.media.net/" 1381 | }, 1382 | { 1383 | "Title" : "Media.net", 1384 | "Link" : "https://careers.media.net/" 1385 | }, 1386 | { 1387 | "Title" : "Meesho", 1388 | "Link" : "https://careers.meesho.com/" 1389 | }, 1390 | { 1391 | "Title" : "Meesho", 1392 | "Link" : "https://careers.meesho.com/" 1393 | }, 1394 | { 1395 | "Title" : "Memory", 1396 | "Link" : "https://memory.ai/jobs" 1397 | }, 1398 | { 1399 | "Title" : "Micron", 1400 | "Link" : "https://micron.eightfold.ai/careers" 1401 | }, 1402 | { 1403 | "Title" : "Microsoft", 1404 | "Link" : "https://careers.microsoft.com/us/en " 1405 | }, 1406 | { 1407 | "Title" : "Microsoft", 1408 | "Link" : "https://careers.microsoft.com/us/en" 1409 | }, 1410 | { 1411 | "Title" : "Mind It Systems", 1412 | "Link" : "https://www.minditsystems.com/careers/" 1413 | }, 1414 | { 1415 | "Title" : "MindStrong", 1416 | "Link" : "https://mindstrong.com/careers/" 1417 | }, 1418 | { 1419 | "Title" : "MindTickle", 1420 | "Link" : "https://www.mindtickle.com/careers/" 1421 | }, 1422 | { 1423 | "Title" : "MindTickle", 1424 | "Link" : "https://www.mindtickle.com/careers/" 1425 | }, 1426 | { 1427 | "Title" : "Mindtree", 1428 | "Link" : "https://www.mindtree.com/careers" 1429 | }, 1430 | { 1431 | "Title" : "MobiKwik", 1432 | "Link" : "https://mobikwik.recruiterbox.com/" 1433 | }, 1434 | { 1435 | "Title" : "Mobikwik", 1436 | "Link" : "https://www.mobikwik.com/career" 1437 | }, 1438 | { 1439 | "Title" : "Monkhub", 1440 | "Link" : "https://www.monkhub.com/jobs/" 1441 | }, 1442 | { 1443 | "Title" : "Morgan Stanley", 1444 | "Link" : "https://www.morganstanley.com/articles/morgan-stanley-india-careers" 1445 | }, 1446 | { 1447 | "Title" : "Morgan Stanley", 1448 | "Link" : "https://www.morganstanley.com/people-opportunities/" 1449 | }, 1450 | { 1451 | "Title" : "Mount talent", 1452 | "Link" : "https://careers.mounttalent.com/" 1453 | }, 1454 | { 1455 | "Title" : "Mphasis", 1456 | "Link" : "https://careers.mphasis.com/" 1457 | }, 1458 | { 1459 | "Title" : "MPL", 1460 | "Link" : "https://mpl.darwinbox.in/ms/candidate/careers" 1461 | }, 1462 | { 1463 | "Title" : "Mquotient", 1464 | "Link" : "http://www.mquotient.net/careers/" 1465 | }, 1466 | { 1467 | "Title" : "Msys Technologies", 1468 | "Link" : "https://www.msystechnologies.com/company/msys-careers/" 1469 | }, 1470 | { 1471 | "Title" : "MultiGraphics Group", 1472 | "Link" : "https://multigraphics.in/career" 1473 | }, 1474 | { 1475 | "Title" : "Myntra", 1476 | "Link" : "https://careers.myntra.com/" 1477 | }, 1478 | { 1479 | "Title" : "Myntra", 1480 | "Link" : "https://careers.myntra.com/" 1481 | }, 1482 | { 1483 | "Title" : "Nagarro", 1484 | "Link" : "https://www.nagarro.com/en/careers" 1485 | }, 1486 | { 1487 | "Title" : "Nagarro", 1488 | "Link" : "https://www.nagarro.com/en/careers" 1489 | }, 1490 | { 1491 | "Title" : "NASDAQ", 1492 | "Link" : "https://www.nasdaq.com/about/careers" 1493 | }, 1494 | { 1495 | "Title" : "NASSCOM", 1496 | "Link" : "https://nasscom.in/about-us/career" 1497 | }, 1498 | { 1499 | "Title" : "National instruments", 1500 | "Link" : "https://www.ni.com/en-in/about-ni/careers.html" 1501 | }, 1502 | { 1503 | "Title" : "NatWest Group", 1504 | "Link" : "https://jobs.natwestgroup.com/search/jobs/in/country/india" 1505 | }, 1506 | { 1507 | "Title" : "navi", 1508 | "Link" : "https://www.navifinserv.com/life-at-chaitanya" 1509 | }, 1510 | { 1511 | "Title" : "NCR Corporation", 1512 | "Link" : "https://www.ncr.com/careers" 1513 | }, 1514 | { 1515 | "Title" : "NEC", 1516 | "Link" : "https://in.nec.com/en_IN/career/jobs-at-NEC.html" 1517 | }, 1518 | { 1519 | "Title" : "Neosoft", 1520 | "Link" : "https://www.neosofttech.com/careers" 1521 | }, 1522 | { 1523 | "Title" : "Nestle", 1524 | "Link" : "https://www.nestle.in/jobs" 1525 | }, 1526 | { 1527 | "Title" : "Net Solutions", 1528 | "Link" : "https://www.netsolutions.com/careers/" 1529 | }, 1530 | { 1531 | "Title" : "NetApp", 1532 | "Link" : "https://www.arista.com/en/careers/india" 1533 | }, 1534 | { 1535 | "Title" : "NetApp", 1536 | "Link" : "https://www.netapp.com/company/careers/ " 1537 | }, 1538 | { 1539 | "Title" : "Netcracker", 1540 | "Link" : "https://www.netcracker.com/careers/" 1541 | }, 1542 | { 1543 | "Title" : "netflix", 1544 | "Link" : "https://jobs.netflix.com/location?slug=mumbai-india" 1545 | }, 1546 | { 1547 | "Title" : "Netguru", 1548 | "Link" : "https://www.netguru.com/career" 1549 | }, 1550 | { 1551 | "Title" : "Netmeds", 1552 | "Link" : "https://netmeds.darwinbox.in/ms/candidate/careers" 1553 | }, 1554 | { 1555 | "Title" : "Nike", 1556 | "Link" : "https://jobs.nike.com/" 1557 | }, 1558 | { 1559 | "Title" : "Ninjacart", 1560 | "Link" : "https://ninjacart.in/careers" 1561 | }, 1562 | { 1563 | "Title" : "Ninjacart", 1564 | "Link" : "https://ninjacart.in/careers/" 1565 | }, 1566 | { 1567 | "Title" : "Nokia", 1568 | "Link" : "https://www.nokia.com/about-us/careers/" 1569 | }, 1570 | { 1571 | "Title" : "NortonLifeLock", 1572 | "Link" : "https://stage-www.nortonlifelock.com/us/en/careers/" 1573 | }, 1574 | { 1575 | "Title" : "NTT Data Corporation", 1576 | "Link" : "https://careers-inc.nttdata.com" 1577 | }, 1578 | { 1579 | "Title" : "Nuro", 1580 | "Link" : "https://www.nuro.ai/careers" 1581 | }, 1582 | { 1583 | "Title" : "nurture.farm", 1584 | "Link" : "https://nurture.farm/join-us/" 1585 | }, 1586 | { 1587 | "Title" : "Nutanix", 1588 | "Link" : "https://www.nutanix.com/company/careers" 1589 | }, 1590 | { 1591 | "Title" : "Nutanix", 1592 | "Link" : "https://www.nutanix.com/company/careers" 1593 | }, 1594 | { 1595 | "Title" : "Nvidia", 1596 | "Link" : "https://www.nvidia.com/en-in/about-nvidia/careers/" 1597 | }, 1598 | { 1599 | "Title" : "NVIDIA", 1600 | "Link" : "https://www.nvidia.com/en-in/about-nvidia/careers/" 1601 | }, 1602 | { 1603 | "Title" : "Nykaa", 1604 | "Link" : "https://www.nykaa.com/careers" 1605 | }, 1606 | { 1607 | "Title" : "O9Solutions", 1608 | "Link" : "https://o9solutions.com/careers/" 1609 | }, 1610 | { 1611 | "Title" : "Observe.ai", 1612 | "Link" : "https://www.observe.ai/careers#section-current-openings" 1613 | }, 1614 | { 1615 | "Title" : "Obvious", 1616 | "Link" : "https://obvious.in/careers" 1617 | }, 1618 | { 1619 | "Title" : "Ocrolus", 1620 | "Link" : "https://www.ocrolus.com/careers/" 1621 | }, 1622 | { 1623 | "Title" : "Ola", 1624 | "Link" : "https://ola.recruitee.com/" 1625 | }, 1626 | { 1627 | "Title" : "Ola", 1628 | "Link" : "https://www.olacabs.com/careers" 1629 | }, 1630 | { 1631 | "Title" : "Olx", 1632 | "Link" : "https://careers.olxgroup.com/" 1633 | }, 1634 | { 1635 | "Title" : "Ongil", 1636 | "Link" : "https://ongil.io/careers" 1637 | }, 1638 | { 1639 | "Title" : "Optum", 1640 | "Link" : "https://www.optum.in/about/careers.html" 1641 | }, 1642 | { 1643 | "Title" : "Opus Consulting", 1644 | "Link" : "https://www.opusconsulting.com/careers/" 1645 | }, 1646 | { 1647 | "Title" : "Oracle", 1648 | "Link" : "https://www.oracle.com/apac/corporate/careers/" 1649 | }, 1650 | { 1651 | "Title" : "Oracle", 1652 | "Link" : "https://www.oracle.com/in/corporate/careers/" 1653 | }, 1654 | { 1655 | "Title" : "OYO", 1656 | "Link" : "https://www.naukri.com/oyo-jobs-careers-2884032" 1657 | }, 1658 | { 1659 | "Title" : "OYO", 1660 | "Link" : "https://www.oyorooms.com/careers/" 1661 | }, 1662 | { 1663 | "Title" : "Palo Alto Networks", 1664 | "Link" : "https://jobs.paloaltonetworks.com/" 1665 | }, 1666 | { 1667 | "Title" : "Palo Alto Networks", 1668 | "Link" : "https://jobs.paloaltonetworks.com/en/" 1669 | }, 1670 | { 1671 | "Title" : "Paramount", 1672 | "Link" : "http://www.psinc3.com/jobs.html" 1673 | }, 1674 | { 1675 | "Title" : "Park+", 1676 | "Link" : "https://parkplus.io/we-are-hiring#hiring" 1677 | }, 1678 | { 1679 | "Title" : "Paypal", 1680 | "Link" : "https://www.paypal.com/us/webapps/mpp/jobs/students-and-grads/internships" 1681 | }, 1682 | { 1683 | "Title" : "PayScale", 1684 | "Link" : "https://www.payscale.com/research/IN/Job" 1685 | }, 1686 | { 1687 | "Title" : "Paytm", 1688 | "Link" : "https://paytm.com/careers/" 1689 | }, 1690 | { 1691 | "Title" : "PayU", 1692 | "Link" : "https://payu.in/careers" 1693 | }, 1694 | { 1695 | "Title" : "Pegasystems", 1696 | "Link" : "https://www.pega.com/about/careers" 1697 | }, 1698 | { 1699 | "Title" : "PeopleStrong", 1700 | "Link" : "https://www.peoplestrong.com/careers/" 1701 | }, 1702 | { 1703 | "Title" : "Persistent", 1704 | "Link" : "https://www.persistent.com/careers/" 1705 | }, 1706 | { 1707 | "Title" : "PharmEasy", 1708 | "Link" : "https://pharmeasy.in/careers/" 1709 | }, 1710 | { 1711 | "Title" : "Philips", 1712 | "Link" : "https://www.careers.philips.com/global/en" 1713 | }, 1714 | { 1715 | "Title" : "Phonepe", 1716 | "Link" : "https://www.phonepe.com/careers/" 1717 | }, 1718 | { 1719 | "Title" : "PixelCrayons", 1720 | "Link" : "https://www.pixelcrayons.com/" 1721 | }, 1722 | { 1723 | "Title" : "PlanView India", 1724 | "Link" : "https://www.planview.com/company/careers/" 1725 | }, 1726 | { 1727 | "Title" : "Playment", 1728 | "Link" : "https://www.playment.io/careers" 1729 | }, 1730 | { 1731 | "Title" : "Plintron", 1732 | "Link" : "https://www.plintron.com/en/career" 1733 | }, 1734 | { 1735 | "Title" : "Postman", 1736 | "Link" : "https://www.postman.com/company/careers/" 1737 | }, 1738 | { 1739 | "Title" : "Practo", 1740 | "Link" : "https://practo.app.param.ai/jobs" 1741 | }, 1742 | { 1743 | "Title" : "Practo", 1744 | "Link" : "https://practo.app.param.ai/jobs/" 1745 | }, 1746 | { 1747 | "Title" : "Priceline", 1748 | "Link" : "https://careers.priceline.com/search" 1749 | }, 1750 | { 1751 | "Title" : "Principal", 1752 | "Link" : "https://www.principal.com/about-us/careers/global-jobs" 1753 | }, 1754 | { 1755 | "Title" : "Privado.ai", 1756 | "Link" : "https://www.privado.ai" 1757 | }, 1758 | { 1759 | "Title" : "Procore", 1760 | "Link" : "https://www.procore.com/jobs" 1761 | }, 1762 | { 1763 | "Title" : "Prodapt", 1764 | "Link" : "https://www.prodapt.com/en/careers/" 1765 | }, 1766 | { 1767 | "Title" : "Proptiger", 1768 | "Link" : "https://www.proptiger.com/careers" 1769 | }, 1770 | { 1771 | "Title" : "Protegrity", 1772 | "Link" : "https://jobs.lever.co/protegrity?location=Bengaluru" 1773 | }, 1774 | { 1775 | "Title" : "Providence Healthcare", 1776 | "Link" : "https://www.providencehealthcare.org/careers" 1777 | }, 1778 | { 1779 | "Title" : "Proximity Labs", 1780 | "Link" : "https://www.proximity.tech/careers" 1781 | }, 1782 | { 1783 | "Title" : "Publicis Sapient", 1784 | "Link" : "https://careers.publicissapient.com/" 1785 | }, 1786 | { 1787 | "Title" : "PubMatic", 1788 | "Link" : "https://pubmatic.com/careers/home/" 1789 | }, 1790 | { 1791 | "Title" : "QBurst", 1792 | "Link" : "https://www.qburst.com/company/career/" 1793 | }, 1794 | { 1795 | "Title" : "Qualcomm", 1796 | "Link" : "https://www.qualcomm.com/company/careers" 1797 | }, 1798 | { 1799 | "Title" : "Quikr", 1800 | "Link" : "https://www.quikr.com/html/jobs.php" 1801 | }, 1802 | { 1803 | "Title" : "Quora", 1804 | "Link" : "https://www.quora.com/careers" 1805 | }, 1806 | { 1807 | "Title" : "RadixWeb", 1808 | "Link" : "https://radixweb.com/current-openings" 1809 | }, 1810 | { 1811 | "Title" : "Rakuten", 1812 | "Link" : "https://rakuten.careers/" 1813 | }, 1814 | { 1815 | "Title" : "Razorpay", 1816 | "Link" : "https://razorpay.com/jobs/" 1817 | }, 1818 | { 1819 | "Title" : "RedHat", 1820 | "Link" : "https://www.redhat.com/en/jobs" 1821 | }, 1822 | { 1823 | "Title" : "Reelo", 1824 | "Link" : "https://angel.co/company/reelohq" 1825 | }, 1826 | { 1827 | "Title" : "Refinery29", 1828 | "Link" : "https://corporate.r29.com/careers#careers-jobs" 1829 | }, 1830 | { 1831 | "Title" : "Reliance", 1832 | "Link" : "https://careers.ril.com/" 1833 | }, 1834 | { 1835 | "Title" : "Revalsys", 1836 | "Link" : "https://www.revalsys.com/careers.html" 1837 | }, 1838 | { 1839 | "Title" : "Rippling", 1840 | "Link" : "https://www.rippling.com/careers" 1841 | }, 1842 | { 1843 | "Title" : "Rivigo", 1844 | "Link" : "https://www.rivigo.com/careers/" 1845 | }, 1846 | { 1847 | "Title" : "Rocket Companies", 1848 | "Link" : "https://www.myrocketcareer.com/" 1849 | }, 1850 | { 1851 | "Title" : "Rockstar Games", 1852 | "Link" : "https://www.rockstargames.com/careers/" 1853 | }, 1854 | { 1855 | "Title" : "Rubrik", 1856 | "Link" : "https://www.rubrik.com/company/careers" 1857 | }, 1858 | { 1859 | "Title" : "Rupeek", 1860 | "Link" : "https://www.rivigo.com/careers/" 1861 | }, 1862 | { 1863 | "Title" : "S&P Global", 1864 | "Link" : "https://careers.spglobal.com/jobs" 1865 | }, 1866 | { 1867 | "Title" : "Saavan", 1868 | "Link" : "https://www.jiosaavn.com/corporate/jobs" 1869 | }, 1870 | { 1871 | "Title" : "Sabre corporation", 1872 | "Link" : "https://www.sabre.com/careers/" 1873 | }, 1874 | { 1875 | "Title" : "Salesforce", 1876 | "Link" : "https://www.salesforce.com/company/careers/" 1877 | }, 1878 | { 1879 | "Title" : "Samsung", 1880 | "Link" : "https://www.samsung.com/in/about-us/careers/" 1881 | }, 1882 | { 1883 | "Title" : "SAP", 1884 | "Link" : "https://jobs.sap.com/" 1885 | }, 1886 | { 1887 | "Title" : "Sapphire Solutions", 1888 | "Link" : "https://www.sapphiresolutions.net/careers" 1889 | }, 1890 | { 1891 | "Title" : "Scality", 1892 | "Link" : "https://www.scality.com/careers" 1893 | }, 1894 | { 1895 | "Title" : "Seamless.Ai", 1896 | "Link" : "https://www.seamless.ai/careers" 1897 | }, 1898 | { 1899 | "Title" : "Secure Logic", 1900 | "Link" : "https://securelogicgroup.com/about-us/careers/" 1901 | }, 1902 | { 1903 | "Title" : "Seimens", 1904 | "Link" : "https://new.siemens.com/global/en/company/jobs.html" 1905 | }, 1906 | { 1907 | "Title" : "SendinBlue", 1908 | "Link" : "https://jobs.sendinblue.com/en" 1909 | }, 1910 | { 1911 | "Title" : "SerpApi", 1912 | "Link" : "https://serpapi.com/team" 1913 | }, 1914 | { 1915 | "Title" : "ServiceNow", 1916 | "Link" : "https://www.servicenow.com/careers.html" 1917 | }, 1918 | { 1919 | "Title" : "Servicenow", 1920 | "Link" : "https://www.servicenow.com/careers.html" 1921 | }, 1922 | { 1923 | "Title" : "Shaadi.com", 1924 | "Link" : "https://careers.shaadi.com/" 1925 | }, 1926 | { 1927 | "Title" : "ShareChat", 1928 | "Link" : "https://sharechat.com/careers" 1929 | }, 1930 | { 1931 | "Title" : "Shell", 1932 | "Link" : "https://www.shell.com/careers.html" 1933 | }, 1934 | { 1935 | "Title" : "Shipsy", 1936 | "Link" : "https://shipsy.io/career/" 1937 | }, 1938 | { 1939 | "Title" : "Shopee", 1940 | "Link" : "https://careers.shopee.sg/" 1941 | }, 1942 | { 1943 | "Title" : "Sidebench", 1944 | "Link" : "https://sidebench.com/careers/" 1945 | }, 1946 | { 1947 | "Title" : "Siemens Healthineers", 1948 | "Link" : "https://www.siemens-healthineers.com/en-in/careers" 1949 | }, 1950 | { 1951 | "Title" : "Siemens", 1952 | "Link" : "https://new.siemens.com/global/en/company/jobs/search-careers.html" 1953 | }, 1954 | { 1955 | "Title" : "Sigmoid", 1956 | "Link" : "https://www.sigmoid.com/careers/" 1957 | }, 1958 | { 1959 | "Title" : "Simform", 1960 | "Link" : "https://www.simform.com/careers/" 1961 | }, 1962 | { 1963 | "Title" : "Simreka", 1964 | "Link" : "https://simreka.com/work-with-us/" 1965 | }, 1966 | { 1967 | "Title" : "SIRI Innovations", 1968 | "Link" : "https://www.siriinnovations.com/careers" 1969 | }, 1970 | { 1971 | "Title" : "Sirion Labs", 1972 | "Link" : "https://www.sirionlabs.com/careers/" 1973 | }, 1974 | { 1975 | "Title" : "SkillVertex", 1976 | "Link" : "https://www.linkedin.com/jobs/search/?f_C=75860188&geoId=92000000" 1977 | }, 1978 | { 1979 | "Title" : "Skyleaf Consultants", 1980 | "Link" : "https://www.naukri.com/skyleaf-consultants-jobs-careers-913356" 1981 | }, 1982 | { 1983 | "Title" : "Skyroot Aerospace", 1984 | "Link" : "https://skyroot.in/join/" 1985 | }, 1986 | { 1987 | "Title" : "Slack", 1988 | "Link" : "https://slack.com/intl/en-in/careers" 1989 | }, 1990 | { 1991 | "Title" : "Slice", 1992 | "Link" : "https://www.slice.is/work-at-slice/" 1993 | }, 1994 | { 1995 | "Title" : "Sling Media", 1996 | "Link" : "https://www.linkedin.com/jobs/sling-media-jobs/?originalSubdomain=in" 1997 | }, 1998 | { 1999 | "Title" : "Smith Detection", 2000 | "Link" : "https://www.smithsdetection.com/careers/" 2001 | }, 2002 | { 2003 | "Title" : "Snapdeal", 2004 | "Link" : "https://qa.snapdeal.com/info/jobs" 2005 | }, 2006 | { 2007 | "Title" : "Snowflake", 2008 | "Link" : "https://careers.snowflake.com" 2009 | }, 2010 | { 2011 | "Title" : "Solusoft", 2012 | "Link" : "https://www.solu-soft.com/careers_workinghere.html" 2013 | }, 2014 | { 2015 | "Title" : "Sopra Steria", 2016 | "Link" : "https://www.soprasteria.com/careers" 2017 | }, 2018 | { 2019 | "Title" : "Spec India", 2020 | "Link" : "https://www.spec-india.com/career" 2021 | }, 2022 | { 2023 | "Title" : "Spectrum", 2024 | "Link" : "https://jobs.spectrum.com/" 2025 | }, 2026 | { 2027 | "Title" : "Spinny", 2028 | "Link" : "https://spinny.freshteam.com/jobs" 2029 | }, 2030 | { 2031 | "Title" : "Spotify", 2032 | "Link" : "https://www.spotifyjobs.com/" 2033 | }, 2034 | { 2035 | "Title" : "Sprinklr", 2036 | "Link" : "https://www.sprinklr.com/careers" 2037 | }, 2038 | { 2039 | "Title" : "SquadStack", 2040 | "Link" : "https://www.squadstack.com/careers/" 2041 | }, 2042 | { 2043 | "Title" : "Square", 2044 | "Link" : "https://careers.squareup.com/us/en" 2045 | }, 2046 | { 2047 | "Title" : "Stripe", 2048 | "Link" : "https://stripe.com/in/jobs" 2049 | }, 2050 | { 2051 | "Title" : "SumoLogic", 2052 | "Link" : "https://www.sumologic.com/company/careers/" 2053 | }, 2054 | { 2055 | "Title" : "SunGard", 2056 | "Link" : "https://careers.sungardas.com" 2057 | }, 2058 | { 2059 | "Title" : "Sunrise JOb", 2060 | "Link" : "http://www.sunrisejobconsultancy.com" 2061 | }, 2062 | { 2063 | "Title" : "Sunsure Energy", 2064 | "Link" : "https://www.sunsure-energy.com/careers" 2065 | }, 2066 | { 2067 | "Title" : "Swiggy", 2068 | "Link" : "https://careers.swiggy.com/" 2069 | }, 2070 | { 2071 | "Title" : "Syberry", 2072 | "Link" : "https://www.syberry.com/company/our-team" 2073 | }, 2074 | { 2075 | "Title" : "Symantec Software Company", 2076 | "Link" : "https://www.careerbliss.com/symantec/" 2077 | }, 2078 | { 2079 | "Title" : "Symphoni HR Private Limited", 2080 | "Link" : "https://symphonihr.com" 2081 | }, 2082 | { 2083 | "Title" : "Synopsys", 2084 | "Link" : "https://www.synopsys.com/careers.html" 2085 | }, 2086 | { 2087 | "Title" : "Syntel", 2088 | "Link" : "https://www.atos-syntel.net/careers" 2089 | }, 2090 | { 2091 | "Title" : "Syska", 2092 | "Link" : "https://syska.co.in/career" 2093 | }, 2094 | { 2095 | "Title" : "T Systems", 2096 | "Link" : "https://www.t-systems.com/in/en/careers" 2097 | }, 2098 | { 2099 | "Title" : "Talent HR Networks", 2100 | "Link" : "https://www.naukri.com/talent-hr-networks-pvt-ltd-jobs-careers-543887" 2101 | }, 2102 | { 2103 | "Title" : "Target", 2104 | "Link" : "https://corporate.target.com/careers" 2105 | }, 2106 | { 2107 | "Title" : "TaskBob", 2108 | "Link" : "https://taskbob2015.recruiterbox.com/" 2109 | }, 2110 | { 2111 | "Title" : "TATA Advanced Sysytems Ltd", 2112 | "Link" : "https://www.tataadvancedsystems.com/careers.php" 2113 | }, 2114 | { 2115 | "Title" : "TatvaSoft", 2116 | "Link" : "https://www.tatvasoft.com/career" 2117 | }, 2118 | { 2119 | "Title" : "TCS", 2120 | "Link" : "https://www.tcs.com/careers?country=IN&lang=EN" 2121 | }, 2122 | { 2123 | "Title" : "TE Connectivity", 2124 | "Link" : "https://careers.te.com/" 2125 | }, 2126 | { 2127 | "Title" : "TEK Systems", 2128 | "Link" : "https://www.teksystems.com/en-in/careers" 2129 | }, 2130 | { 2131 | "Title" : "Tekion", 2132 | "Link" : "https://tekion.com/careers" 2133 | }, 2134 | { 2135 | "Title" : "Tencent Holdings Ltd", 2136 | "Link" : "https://www.tencent.com/en-us/about.html" 2137 | }, 2138 | { 2139 | "Title" : "Teradata", 2140 | "Link" : "https://careers.teradata.com/" 2141 | }, 2142 | { 2143 | "Title" : "Tesla", 2144 | "Link" : "https://www.tesla.com/about" 2145 | }, 2146 | { 2147 | "Title" : "texas instruments", 2148 | "Link" : "https://careers.ti.com/" 2149 | }, 2150 | { 2151 | "Title" : "Texas Instruments", 2152 | "Link" : "https://careers.ti.com/" 2153 | }, 2154 | { 2155 | "Title" : "ThoughtSpot", 2156 | "Link" : "https://www.thoughtspot.com/careers-listing" 2157 | }, 2158 | { 2159 | "Title" : "ThoughtWorks", 2160 | "Link" : "https://www.thoughtworks.com/careers/jobs" 2161 | }, 2162 | { 2163 | "Title" : "Times Internet", 2164 | "Link" : "https://timesinternet.in/careers" 2165 | }, 2166 | { 2167 | "Title" : "Topcoder", 2168 | "Link" : "https://www.topcoder.com/company/jobs/" 2169 | }, 2170 | { 2171 | "Title" : "Toppr", 2172 | "Link" : "https://www.toppr.com/jobs/" 2173 | }, 2174 | { 2175 | "Title" : "Toptal", 2176 | "Link" : "https://www.toptal.com/careers" 2177 | }, 2178 | { 2179 | "Title" : "Tower Research", 2180 | "Link" : "https://www.tower-research.com/positions" 2181 | }, 2182 | { 2183 | "Title" : "Treebo Hotels", 2184 | "Link" : "https://www.linkedin.com/company/treebohotels/jobs/" 2185 | }, 2186 | { 2187 | "Title" : "Trella Health", 2188 | "Link" : "https://www.trellahealth.com/careers/" 2189 | }, 2190 | { 2191 | "Title" : "Trigent Software", 2192 | "Link" : "https://www.trigent.com/company/careers/" 2193 | }, 2194 | { 2195 | "Title" : "Trigyn", 2196 | "Link" : "https://www.trigyn.com/job/etl-developer-data-engineer" 2197 | }, 2198 | { 2199 | "Title" : "Turvo", 2200 | "Link" : "https://turvo.com/careers/" 2201 | }, 2202 | { 2203 | "Title" : "Twilio", 2204 | "Link" : "https://www.twilio.com/company/jobs" 2205 | }, 2206 | { 2207 | "Title" : "Twitter", 2208 | "Link" : "https://careers.twitter.com/" 2209 | }, 2210 | { 2211 | "Title" : "Uber", 2212 | "Link" : "https://www.uber.com/us/en/careers/" 2213 | }, 2214 | { 2215 | "Title" : "Ubique Systems", 2216 | "Link" : "https://www.ubique-systems.com/ubq-current-opening.php" 2217 | }, 2218 | { 2219 | "Title" : "Ubisoft", 2220 | "Link" : "https://www.ubisoft.com/en-us/company/careers" 2221 | }, 2222 | { 2223 | "Title" : "Udaan", 2224 | "Link" : "https://careers.udaan.com/" 2225 | }, 2226 | { 2227 | "Title" : "Ultimate software", 2228 | "Link" : "https://www.ukg.com/careers" 2229 | }, 2230 | { 2231 | "Title" : "Unacadamy", 2232 | "Link" : "https://unacademy.com/careers" 2233 | }, 2234 | { 2235 | "Title" : "Unicommerce", 2236 | "Link" : "https://unicommerce.com/careers/" 2237 | }, 2238 | { 2239 | "Title" : "Unisys", 2240 | "Link" : "https://jobs.unisys.com/us/en" 2241 | }, 2242 | { 2243 | "Title" : "Unite Us", 2244 | "Link" : "https://uniteus.com/our-careers/" 2245 | }, 2246 | { 2247 | "Title" : "Upgrad", 2248 | "Link" : "https://www.upgrad.com/us/careers/" 2249 | }, 2250 | { 2251 | "Title" : "Uplers", 2252 | "Link" : "https://www.uplers.com/careers/" 2253 | }, 2254 | { 2255 | "Title" : "Upstox", 2256 | "Link" : "https://jobs.lever.co/upstox " 2257 | }, 2258 | { 2259 | "Title" : "Urban company", 2260 | "Link" : "https://careers.urbancompany.com/ " 2261 | }, 2262 | { 2263 | "Title" : "Urban Ladder", 2264 | "Link" : "https://www.urbanladder.com/careers#undefined" 2265 | }, 2266 | { 2267 | "Title" : "V2soft", 2268 | "Link" : "https://www.v2soft.com/careers" 2269 | }, 2270 | { 2271 | "Title" : "ValueLabs", 2272 | "Link" : "https://www.valuelabs.com/careers/" 2273 | }, 2274 | { 2275 | "Title" : "Vehant Technologies", 2276 | "Link" : "https://www.vehant.com/current-openings" 2277 | }, 2278 | { 2279 | "Title" : "Velotio Technologies", 2280 | "Link" : "https://www.velotio.com/careers" 2281 | }, 2282 | { 2283 | "Title" : "Viasat", 2284 | "Link" : "https://careers.viasat.com/" 2285 | }, 2286 | { 2287 | "Title" : "Vicara", 2288 | "Link" : "https://vicara.ch/careers/" 2289 | }, 2290 | { 2291 | "Title" : "Visa", 2292 | "Link" : "https://www.visa.co.in/careers.html" 2293 | }, 2294 | { 2295 | "Title" : "VMware", 2296 | "Link" : "https://careers.vmware.com/main/" 2297 | }, 2298 | { 2299 | "Title" : "Vogo", 2300 | "Link" : "https://vogo.in/careers/" 2301 | }, 2302 | { 2303 | "Title" : "Vokal", 2304 | "Link" : "https://www.vokal.io/careers" 2305 | }, 2306 | { 2307 | "Title" : "Vsoft", 2308 | "Link" : "https://www.vfirst.com/join-the-joy" 2309 | }, 2310 | { 2311 | "Title" : "Walmart", 2312 | "Link" : "https://careers.walmart.com/" 2313 | }, 2314 | { 2315 | "Title" : "Warner Bros.", 2316 | "Link" : "https://warnermediacareers.com/warner-bros-jobs" 2317 | }, 2318 | { 2319 | "Title" : "Waymo", 2320 | "Link" : "https://waymo.com/careers/" 2321 | }, 2322 | { 2323 | "Title" : "Wells Fargo", 2324 | "Link" : "https://www.wellsfargo.com/about/careers/" 2325 | }, 2326 | { 2327 | "Title" : "Wells Fargo", 2328 | "Link" : "https://www.wellsfargo.com/about/careers/" 2329 | }, 2330 | { 2331 | "Title" : "Western Digital", 2332 | "Link" : "https://jobs.westerndigital.com/" 2333 | }, 2334 | { 2335 | "Title" : "Whatfix", 2336 | "Link" : "https://whatfix.com/careers/" 2337 | }, 2338 | { 2339 | "Title" : "Wipro", 2340 | "Link" : "https://careers.wipro.com/careers-home/" 2341 | }, 2342 | { 2343 | "Title" : "Wissda Consulting", 2344 | "Link" : "http://www.wissda.com" 2345 | }, 2346 | { 2347 | "Title" : "Wooqer", 2348 | "Link" : "https://wooqer.com/careers/" 2349 | }, 2350 | { 2351 | "Title" : "World Wide Technology", 2352 | "Link" : "https://www.wwt.com/about/careers" 2353 | }, 2354 | { 2355 | "Title" : "WorldQuant", 2356 | "Link" : "https://www.worldquant.com/careers/" 2357 | }, 2358 | { 2359 | "Title" : "Xero", 2360 | "Link" : "https://www.xero.com/about/careers/" 2361 | }, 2362 | { 2363 | "Title" : "Xiaomi", 2364 | "Link" : "https://xiaomi.app.param.ai/jobs/" 2365 | }, 2366 | { 2367 | "Title" : "Xicom Technologies", 2368 | "Link" : "https://www.xicom.biz/careers/" 2369 | }, 2370 | { 2371 | "Title" : "Xilinx", 2372 | "Link" : "https://careers.xilinx.com/" 2373 | }, 2374 | { 2375 | "Title" : "Xoriant", 2376 | "Link" : "https://www.xoriant.com/about-xoriant/careers" 2377 | }, 2378 | { 2379 | "Title" : "Yahoo", 2380 | "Link" : "https://research.yahoo.com/careers" 2381 | }, 2382 | { 2383 | "Title" : "Yellow.ai", 2384 | "Link" : "https://yellow.ai/career" 2385 | }, 2386 | { 2387 | "Title" : "Yelp", 2388 | "Link" : "https://www.yelp.careers/us/en" 2389 | }, 2390 | { 2391 | "Title" : "Yobisys", 2392 | "Link" : "https://www.yobisys.com/career.htm" 2393 | }, 2394 | { 2395 | "Title" : "Yugabyte", 2396 | "Link" : "https://www.yugabyte.com/careers/" 2397 | }, 2398 | { 2399 | "Title" : "Yulu Bikes", 2400 | "Link" : "https://www.yulu.bike/careers/" 2401 | }, 2402 | { 2403 | "Title" : "Zenmonics Software", 2404 | "Link" : "https://www.naukri.com/zenmonics-software-pvt-ltd-jobs-careers-644929" 2405 | }, 2406 | { 2407 | "Title" : "Zensar Technologies", 2408 | "Link" : "https://zensar.com/careers" 2409 | }, 2410 | { 2411 | "Title" : "Zerodha", 2412 | "Link" : "https://careers.zerodha.com/" 2413 | }, 2414 | { 2415 | "Title" : "Zeta", 2416 | "Link" : "https://careers.zeta.tech/work-with-us/" 2417 | }, 2418 | { 2419 | "Title" : "ZivaMe", 2420 | "Link" : "https://careers.zivame.com/" 2421 | }, 2422 | { 2423 | "Title" : "Zoho", 2424 | "Link" : "https://careers.zohocorp.com/jobs/Careers" 2425 | }, 2426 | { 2427 | "Title" : "Zomato", 2428 | "Link" : "https://www.zomato.com/careers" 2429 | }, 2430 | { 2431 | "Title" : "Zoom", 2432 | "Link" : "https://zoom.wd5.myworkdayjobs.com/Zoom" 2433 | }, 2434 | { 2435 | "Title" : "ZoomCar", 2436 | "Link" : "https://www.zoomcar.com/careers" 2437 | }, 2438 | { 2439 | "Title" : "ZS", 2440 | "Link" : "https://jobs.zs.com/all/jobs" 2441 | }, 2442 | { 2443 | "Title" : "Zynga", 2444 | "Link" : "https://www.zynga.com/jobs/careers/" 2445 | } 2446 | ] -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | --------------------------------------------------------------------------------