{"pageProps":{"advancedDesign":{"theme":{"colors":{"customPrimary":"#1A123F","customAccent":"#fff","loader":"#1A123F","navigationBar":"#1A123F"},"buttons":{"heroCta":{"color":"#fff","bg":"#1A123F","borderColor":"transparent",":hover":{"color":"#fff","bg":"#1C1343","borderColor":"transparent"}},"primary":{"color":"#fff","bg":"#1A123F","borderColor":"transparent",":hover":{"color":"#fff","bg":"#1C1343","borderColor":"transparent"}},"accent":{"color":"#1A123F","bg":"transparent","borderColor":"#1A123F",":hover":{"color":"#1C1343","bg":"transparent","borderColor":"#1C1343","backgroundColor":"#EDEDED"}},"anchorLink":{"color":"#1A123F",":hover":{"textDecoration":"underline"}}},"fonts":{"body":"-apple-system,BlinkMacSystemFont,'Segoe UI','Roboto','Oxygen','Ubuntu','Cantarell','Fira Sans','Droid Sans','Helvetica Neue','sans-serif'"}},"footer":"\n \n\n","version":"dae4525c7f3cb7c1f9bd06847b968d1949b5943c","header":"\n\n
\n
\n
\n
\n \n
\n
\n \n\n
\n BECOME A member\n Get involved\n Donate Now!\n
\n
\n\n
\n Donate Now!\n BECOME A member\n
\n
\n \n \n \n
\n
\n
\n
\n
\n
    \n
  • \n \n \n \n
  • \n
  • \n \n \n \n
  • \n
  • \n \n \n \n
  • \n
\n
\n\n
\n FAQ\n
\n
\n
\n
\n

\n

\n AnitaB.org Job Board \n

\n

\n

\n Connecting women & nonbinary technologists with the best opportunities\n
\n\n
\n
\n
\n 187\n
\n
COMPANIES
\n
\n\n
\n
25,545
\n
JOBS
\n
\n
\n
\n
\n
\n\n
\n \n \n
\n\n
\n
\n
\n \n \n
\n
\n
\n\n\n\n\n\n","scripts":["{function init() {\n function lerp(start, end, t) {\n t = t < 0.5 ? 2 * t * t : -1 + (4 - 2 * t) * t;\n return start * (1 - t) + end * t;\n }\n const [aboutNavMenuBtn, eventsNavMenuBtn, movementNavMenuBtn, newsNavMenuBtn, contactNavMenuBtn] = [\n document.querySelector('.about-nav-menu-btn'),\n document.querySelector('.events-nav-menu-btn'),\n document.querySelector('.movement-nav-menu-btn'),\n document.querySelector('.news-nav-menu-btn'),\n document.querySelector('.contact-nav-menu-btn')\n ];\n const nestedSubmenus = document.querySelectorAll('#menu-main-navigation > li > ul > li.menu-item-has-children');\n const burgerMenu = document.querySelector('.nav-opener');\n const header = document.querySelector('.header-wrapper');\n const HTML = document.documentElement;\n let isBurgerMenuOpen = false;\n const DESKTOP_THRESHOLD = 1200;\n const navItemsNestedSubMenus = Array.from(nestedSubmenus);\n let animationStatesNested = navItemsNestedSubMenus.map(() => ({\n lastHeight: null,\n animatingOpen: false,\n animatingClose: false,\n isMenuOpen: false\n }));\n function closeAllNestedSubmenus() {\n navItemsNestedSubMenus.forEach(closeNestedSubmenu);\n }\n function closeNestedSubmenu(subMenu, i) {\n if (window.innerWidth > DESKTOP_THRESHOLD)\n return;\n if (animationStatesNested[i].animatingOpen) {\n animationStatesNested[i].animatingOpen = false;\n }\n const [a, ul] = Array.from(subMenu.children);\n a.classList.remove('highlighted');\n a.setAttribute('aria-expanded', 'false');\n ul.style.overflow = 'hidden';\n const expandedHeight = ul.offsetHeight;\n let firstTimestamp = 0;\n const duration = 300;\n animationStatesNested[i].animatingClose = true;\n let currHeight = 0;\n function animation(timestamp) {\n if (!animationStatesNested[i].animatingClose) {\n animationStatesNested[i].lastHeight = currHeight;\n return;\n }\n if (!firstTimestamp)\n firstTimestamp = timestamp;\n let elapsed = timestamp - firstTimestamp;\n let t = Math.min(elapsed / duration, 1);\n currHeight = lerp(animationStatesNested[i].lastHeight ?? expandedHeight, 0, t);\n ul.style.height = currHeight + 'px';\n if (t < 0.98)\n window.requestAnimationFrame(animation);\n else {\n animationStatesNested[i].lastHeight = null;\n ul.style.height = '';\n ul.style.display = 'none';\n }\n }\n window.requestAnimationFrame(animation);\n animationStatesNested[i].isMenuOpen = false;\n }\n const navItems = [\n aboutNavMenuBtn,\n eventsNavMenuBtn,\n movementNavMenuBtn,\n newsNavMenuBtn,\n contactNavMenuBtn\n ];\n let animationStates = navItems.map(() => ({\n lastHeight: null,\n animatingOpen: false,\n animatingClose: false,\n isMenuOpen: false\n }));\n function closeSubMenu(subMenu, i) {\n if (window.innerWidth > DESKTOP_THRESHOLD)\n return;\n closeAllNestedSubmenus();\n if (animationStates[i].animatingOpen) {\n animationStates[i].animatingOpen = false;\n }\n const [a, ul] = Array.from(subMenu.children);\n a.classList.remove('highlighted');\n a.setAttribute('aria-expanded', 'false');\n ul.style.overflow = 'hidden';\n const expandedHeight = ul.offsetHeight;\n let firstTimestamp = 0;\n const duration = 300;\n animationStates[i].animatingClose = true;\n let currHeight = 0;\n function animation(timestamp) {\n if (!animationStates[i].animatingClose) {\n animationStates[i].lastHeight = currHeight;\n return;\n }\n if (!firstTimestamp)\n firstTimestamp = timestamp;\n let elapsed = timestamp - firstTimestamp;\n let t = Math.min(elapsed / duration, 1);\n currHeight = lerp(animationStates[i].lastHeight ?? expandedHeight, 0, t);\n ul.style.height = currHeight + 'px';\n if (t < 0.98)\n window.requestAnimationFrame(animation);\n else {\n animationStates[i].lastHeight = null;\n ul.style.height = '';\n ul.style.display = 'none';\n }\n }\n window.requestAnimationFrame(animation);\n animationStates[i].isMenuOpen = false;\n }\n function closeAllSubmenus() {\n navItems.forEach(closeSubMenu);\n }\n const headerMenuArea = document.querySelector('.container._auto');\n function handleClickOutsideMenu(e) {\n if (window.innerWidth > DESKTOP_THRESHOLD)\n return;\n if (isBurgerMenuOpen) {\n if (!headerMenuArea.contains(e.target) && !burgerMenu.contains(e.target)) {\n closeBurgerMenu();\n }\n }\n }\n function closeBurgerMenu() {\n closeAllNestedSubmenus();\n closeAllSubmenus();\n header.classList.remove('nav-active');\n window.removeEventListener('click', handleClickOutsideMenu);\n isBurgerMenuOpen = false;\n }\n function handleBurgerMenu() {\n function openBurgerMenu() {\n header.classList.add('nav-active');\n isBurgerMenuOpen = true;\n setTimeout(() => {\n window.removeEventListener('click', handleClickOutsideMenu);\n window.addEventListener('click', handleClickOutsideMenu);\n });\n }\n function onClick(e) {\n e.preventDefault();\n if (isBurgerMenuOpen) {\n closeBurgerMenu();\n } else {\n openBurgerMenu();\n }\n }\n burgerMenu.removeEventListener('click', onClick);\n burgerMenu.addEventListener('click', onClick);\n }\n function handleDesktopNavItems() {\n function handleNavMenuBtns() {\n [\n aboutNavMenuBtn,\n eventsNavMenuBtn,\n movementNavMenuBtn,\n newsNavMenuBtn\n ].forEach(submenu => {\n let timeoutClosingMenu;\n let timeoutOpeningMenu;\n let isMenuOpen = false;\n function onHover() {\n if (window.innerWidth < DESKTOP_THRESHOLD)\n return;\n clearTimeout(timeoutClosingMenu);\n timeoutOpeningMenu = setTimeout(() => {\n const [a, ul] = submenu.children;\n a.classList.add('highlighted');\n ul.classList.add('submenu-open');\n ul.classList.remove('submenu-closed');\n isMenuOpen = true;\n a.setAttribute('aria-expanded', 'true');\n }, 400);\n }\n function onHoverOut() {\n if (window.innerWidth < DESKTOP_THRESHOLD)\n return;\n clearTimeout(timeoutOpeningMenu);\n timeoutClosingMenu = setTimeout(() => {\n const [a, ul] = submenu.children;\n a.classList.remove('highlighted');\n ul.classList.remove('submenu-open');\n ul.classList.add('submenu-closed');\n isMenuOpen = false;\n a.setAttribute('aria-expanded', 'false');\n }, 500);\n }\n function onClick(e) {\n if (window.innerWidth < DESKTOP_THRESHOLD)\n return;\n if (!isMenuOpen) {\n e.preventDefault();\n const [a, ul] = submenu.children;\n a.classList.add('highlighted');\n ul.classList.add('submenu-open');\n ul.classList.remove('submenu-closed');\n isMenuOpen = true;\n a.setAttribute('aria-expanded', 'true');\n clearTimeout(timeoutClosingMenu);\n clearTimeout(timeoutOpeningMenu);\n }\n }\n submenu.removeEventListener('mouseover', onHover);\n submenu.addEventListener('mouseover', onHover);\n submenu.removeEventListener('mouseout', onHoverOut);\n submenu.addEventListener('mouseout', onHoverOut);\n submenu.removeEventListener('click', onClick);\n submenu.addEventListener('click', onClick);\n });\n }\n function handleNavContactBtn() {\n let timeoutClosingMenu;\n let timeoutOpeningMenu;\n let isMenuOpen = false;\n function onHover() {\n if (window.innerWidth < DESKTOP_THRESHOLD)\n return;\n clearTimeout(timeoutClosingMenu);\n timeoutOpeningMenu = setTimeout(() => {\n const [a, ul] = contactNavMenuBtn.children;\n a.classList.add('highlighted');\n ul.classList.add('submenu-contact-open');\n ul.classList.remove('submenu-contact-closed');\n isMenuOpen = true;\n a.setAttribute('aria-expanded', 'true');\n }, 400);\n }\n function onHoverOut() {\n if (window.innerWidth < DESKTOP_THRESHOLD)\n return;\n clearTimeout(timeoutOpeningMenu);\n timeoutClosingMenu = setTimeout(() => {\n const [a, ul] = contactNavMenuBtn.children;\n a.classList.remove('highlighted');\n ul.classList.remove('submenu-contact-open');\n ul.classList.add('submenu-contact-closed');\n isMenuOpen = false;\n a.setAttribute('aria-expanded', 'false');\n }, 500);\n }\n function onClick(e) {\n if (window.innerWidth < DESKTOP_THRESHOLD)\n return;\n if (!isMenuOpen) {\n e.preventDefault();\n const [a, ul] = contactNavMenuBtn.children;\n a.classList.add('highlighted');\n ul.classList.add('submenu-contact-open');\n ul.classList.remove('submenu-contact-closed');\n isMenuOpen = true;\n a.setAttribute('aria-expanded', 'true');\n clearTimeout(timeoutClosingMenu);\n clearTimeout(timeoutOpeningMenu);\n }\n }\n contactNavMenuBtn.removeEventListener('mouseover', onHover);\n contactNavMenuBtn.addEventListener('mouseover', onHover);\n contactNavMenuBtn.removeEventListener('mouseout', onHoverOut);\n contactNavMenuBtn.addEventListener('mouseout', onHoverOut);\n contactNavMenuBtn.removeEventListener('click', onClick);\n contactNavMenuBtn.addEventListener('click', onClick);\n }\n function handleNestedSubmenus() {\n nestedSubmenus.forEach(submenu => {\n let timeoutClosingMenu;\n let timeoutOpeningMenu;\n let isSubmenuOpen = false;\n function onHover() {\n if (window.innerWidth < DESKTOP_THRESHOLD)\n return;\n clearTimeout(timeoutClosingMenu);\n timeoutOpeningMenu = setTimeout(() => {\n const [a, ul] = submenu.children;\n a.classList.add('highlighted');\n ul.classList.add('nested-submenu-open');\n ul.classList.remove('nested-submenu-closed');\n isSubmenuOpen = true;\n a.setAttribute('aria-expanded', 'true');\n }, 250);\n }\n function onHoverOut() {\n if (window.innerWidth < DESKTOP_THRESHOLD)\n return;\n clearTimeout(timeoutOpeningMenu);\n timeoutClosingMenu = setTimeout(() => {\n const [a, ul] = submenu.children;\n a.classList.remove('highlighted');\n ul.classList.remove('nested-submenu-open');\n ul.classList.add('nested-submenu-closed');\n isSubmenuOpen = false;\n a.setAttribute('aria-expanded', 'false');\n }, 150);\n }\n function onClick(e) {\n if (window.innerWidth < DESKTOP_THRESHOLD)\n return;\n if (!isSubmenuOpen) {\n e.preventDefault();\n const [a, ul] = submenu.children;\n a.classList.add('highlighted');\n ul.classList.add('nested-submenu-open');\n ul.classList.remove('nested-submenu-closed');\n isSubmenuOpen = true;\n a.setAttribute('aria-expanded', 'true');\n clearTimeout(timeoutClosingMenu);\n clearTimeout(timeoutOpeningMenu);\n }\n }\n submenu.removeEventListener('mouseover', onHover);\n submenu.addEventListener('mouseover', onHover);\n submenu.removeEventListener('mouseout', onHoverOut);\n submenu.addEventListener('mouseout', onHoverOut);\n submenu.removeEventListener('click', onClick);\n submenu.addEventListener('click', onClick);\n });\n }\n handleNavContactBtn();\n handleNestedSubmenus();\n handleNavMenuBtns();\n }\n function handleMobileNavItems() {\n function handleSubmenusBtns() {\n navItemsNestedSubMenus.forEach((submenu, i) => {\n function openSubMenu() {\n if (window.innerWidth > DESKTOP_THRESHOLD)\n return;\n navItemsNestedSubMenus.forEach((navItem, j) => {\n if (j !== i) {\n closeNestedSubmenu(navItem, j);\n }\n });\n if (animationStatesNested[i].animatingClose) {\n animationStatesNested[i].animatingClose = false;\n }\n const [a, ul] = Array.from(submenu.children);\n a.classList.add('highlighted');\n a.setAttribute('aria-expanded', 'true');\n ul.style.display = 'block';\n ul.style.height = '';\n const expandedHeight = ul.offsetHeight;\n ul.style.height = '';\n let firstTimestamp = 0;\n const duration = 300;\n animationStatesNested[i].animatingOpen = true;\n let currHeight = 0;\n function animation1(timestamp) {\n if (!animationStatesNested[i].animatingOpen) {\n animationStatesNested[i].lastHeight = currHeight;\n return;\n }\n if (!firstTimestamp)\n firstTimestamp = timestamp;\n let elapsed = timestamp - firstTimestamp;\n let t = Math.min(elapsed / duration, 1);\n currHeight = lerp(animationStatesNested[i].lastHeight ?? 0, expandedHeight, t);\n ul.style.height = currHeight + 'px';\n if (t < 0.98) {\n window.requestAnimationFrame(animation1);\n } else {\n animationStatesNested[i].lastHeight = null;\n ul.style.height = 'auto';\n ul.style.overflow = 'visible';\n }\n }\n ul.style.overflow = 'hidden';\n window.requestAnimationFrame(animation1);\n animationStatesNested[i].isMenuOpen = true;\n }\n function onClick(e) {\n if (window.innerWidth > DESKTOP_THRESHOLD)\n return;\n if (!animationStatesNested[i].isMenuOpen) {\n e.preventDefault();\n openSubMenu();\n } else {\n closeNestedSubmenu(submenu, i);\n }\n }\n const [a] = submenu.children;\n a.removeEventListener('click', onClick);\n a.addEventListener('click', onClick);\n });\n }\n function handleMenuBtns() {\n navItems.forEach((submenu, i) => {\n function openSubMenu() {\n if (window.innerWidth > DESKTOP_THRESHOLD)\n return;\n navItems.forEach((navItem, j) => {\n if (j !== i) {\n closeSubMenu(navItem, j);\n }\n });\n if (animationStates[i].animatingClose) {\n animationStates[i].animatingClose = false;\n }\n const [a, ul] = Array.from(submenu.children);\n a.classList.add('highlighted');\n a.setAttribute('aria-expanded', 'true');\n ul.style.display = 'block';\n ul.style.height = '';\n const expandedHeight = ul.offsetHeight;\n ul.style.height = '';\n let firstTimestamp = 0;\n const duration = 300;\n animationStates[i].animatingOpen = true;\n let currHeight = 0;\n function animation1(timestamp) {\n if (!animationStates[i].animatingOpen) {\n animationStates[i].lastHeight = currHeight;\n return;\n }\n if (!firstTimestamp)\n firstTimestamp = timestamp;\n let elapsed = timestamp - firstTimestamp;\n let t = Math.min(elapsed / duration, 1);\n currHeight = lerp(animationStates[i].lastHeight ?? 0, expandedHeight, t);\n ul.style.height = currHeight + 'px';\n if (t < 0.98) {\n window.requestAnimationFrame(animation1);\n } else {\n animationStates[i].lastHeight = null;\n ul.style.height = 'auto';\n ul.style.overflow = 'visible';\n }\n }\n ul.style.overflow = 'hidden';\n window.requestAnimationFrame(animation1);\n animationStates[i].isMenuOpen = true;\n }\n function onClick(e) {\n if (window.innerWidth > DESKTOP_THRESHOLD)\n return;\n if (!animationStates[i].isMenuOpen) {\n e.preventDefault();\n openSubMenu();\n } else {\n closeSubMenu(submenu, i);\n }\n }\n const [a] = submenu.children;\n a.removeEventListener('click', onClick);\n a.addEventListener('click', onClick);\n });\n }\n handleMenuBtns();\n handleSubmenusBtns();\n }\n function handleResize() {\n function onResize() {\n if (window.innerWidth > DESKTOP_THRESHOLD) {\n closeBurgerMenu();\n [\n aboutNavMenuBtn,\n eventsNavMenuBtn,\n movementNavMenuBtn,\n newsNavMenuBtn,\n contactNavMenuBtn\n ].forEach(navItem => {\n const [a, ul] = Array.from(navItem.children);\n ul.style.display = '';\n ul.style.height = '';\n ul.style.overflow = '';\n a.setAttribute('aria-expanded', 'false');\n a.classList.remove('highlighted');\n });\n animationStates = animationStates.map(el => ({\n ...el,\n isMenuOpen: false\n }));\n animationStatesNested = animationStatesNested.map(el => ({\n ...el,\n isMenuOpen: false\n }));\n }\n }\n window.removeEventListener('resize', onResize);\n window.addEventListener('resize', onResize);\n }\n handleResize();\n handleMobileNavItems();\n handleDesktopNavItems();\n handleBurgerMenu();\n}\ninit();}"],"linkedScripts":[]},"network":{"id":"10323","description":"","domain":"anitab.org","employerOnboardingSuccessText":"","features":["advanced_design","custom_hero","hide_logo_in_hero","add_contacts","hide_name_in_hero","tn_onboarding_v2","opensearch_jobs"],"heroColorMask":"","label":"anitab","legal":{"link":null,"name":"Anita Borg Institute for Women and Technology","email":"privacy@anitab.org","address":"2108 N ST #8268\r\nSacramento, CA 95816","ccpaCompliant":false,"ccpaPolicyUrl":"","dataPrivacyRegulatoryBody":"","dataPrivacyRegulatoryNumber":""},"logoUrl":"https://cdn.getro.com/collection/cc930ea0-7530-5773-9e89-e2482330c758-1726478913","mainImageUrl":"https://cdn.getro.com/collections/cc930ea0-7530-5773-9e89-e2482330c758","metaFaviconUrl":"https://cdn.filestackcontent.com/yZ9Ami9RQWjqrbP0GqBm","metaTitle":"","metaDescription":"","metaTwitterUsername":"","metaImageUrl":"https://cdn.filestackcontent.com/1WGg88OjQ8OEwJ6EZmV5","name":"AnitaB.org","tabsOrder":"talent_network, jobs, companies","tagline":"AnitaB.org Job Board","slug":"anitab-org","subtitle":"Connecting women & nonbinary technologists with the best opportunities","url":"jobs.anitab.org","deliveredAt":null,"visibility":"open_to_all","tnSettings":{"tnCtaTitleText":"Leverage our network to build your career.","tnCtaButtonText":"Upload Now","tnCtaDescriptionText":"Tell us about your professional DNA to get discovered by any company in our network with opportunities relevant to your career goals.","tnV2TabIntroductionTitle":"Sync Your LinkedIn Profile","tnV2TabIntroductionText":"We’re connecting companies with women and nonbinary professionals ready to take the next step in their tech careers. By syncing your LinkedIn profile with the AnitaB.org job board, we will automatically and regularly collect information you post on your LinkedIn profile and use it to update your talent profile on our job board so employers always have access to accurate candidate information.\n\nYou also have the opportunity to upload your resume to your profile. Show your interest in tailored opportunities and we’ll make sure you see the best job fits. The next career move is yours to choose.\n\nYou do not need to be an AnitaB.org member to join the talent network. AnitaB.org\nMembership provides access to our supportive community and opportunities to grow in\nyour professional journey. Click [here](https://membership.anitab.org/) to learn more about membership.\n\n_Please review the AnitaB.org_ _[Privacy Policy](https://anitab.org/privacy-policy/) before proceeding._","tnV2SuccessMessageTitle":"Thanks for signing up","tnV2SuccessMessageText":"If any questions about membership, please click [here](https://membership.anitab.org/).\n\nFor support, please email jobs@anitab.org.\n\nYour professional information is now visible to our team and companies in our network.\nWe will be in touch when we find a great opportunity for you at one of our companies.\n\nConsider becoming an AnitaB.org Premium Member! Our custom-built program gives\nunparalleled access to powerful tools, information, advice, and the support of an\ninspiring network of like-minded women to drive your success. Here are some of the [key benefits](https://membership.anitab.org/) you will receive:\n\n- Mentorship\n- Career Navigation Resources\n- Peer-to-Peer Communities\n- Technical & Professional Development Training\n- Global Network of Industry Expertise\n- Events & Workshops\n- Community Connections\n- On-Demand Content Library","tnTabIntroductionText":"We're connecting companies with women and nonbinary professionals who are ready to take the next step in their tech careers. \r\n\r\nShow your interest in tailored opportunities, and we’ll make sure you see the best fits. The next career move is yours to choose.","tnSignUpWelcomeText":"#### Welcome!\r\n\r\nThank you for joining AnitaB.org Network!\r\n\r\nTo help us best support you in your search, please take a few minutes to tell us about what you are looking for in your next role. We’ll use this information to connect you to relevant opportunities in the Anitab network as they come up.\r\n\r\nYou can always update this information later.","tnHidden":false,"tnSignUpWelcomeTitle":"Welcome to the AnitaB.org talent network"},"previewUrl":"anitab.getro.com","jobBoardFilters":{"stageFilter":true,"locationFilter":true,"companySizeFilter":true,"jobFunctionFilter":true,"industryTagsFilter":true},"basePath":"","externalPrivacyPolicyUrl":"https://anitab.org/privacy-policy/","loaded":true,"hasAdvancedDesign":true,"hasTalentNetwork":false,"hasTalentNetworkV2":true,"isV2Onboarding":false,"hasMolEarlyAccess":false,"jobsCount":25545,"companiesCount":187,"scripts":[{"id":1170,"name":"GA Tag","body":"","owner":"","serviceName":"","header":true,"scriptCookies":[]},{"id":1171,"name":"GA Tag Body","body":"","owner":"","serviceName":"","header":false,"scriptCookies":[]}]},"_sentryTraceData":"7354dfdf25fb4d7d99a1ee655452f2a2-b0ca541bc9b740eb-0","_sentryBaggage":"sentry-environment=production,sentry-release=TW6X_ngkV3DovB957-cQs,sentry-transaction=%2Fcompanies,sentry-public_key=99c84790fa184cf49c16c34cd7113f75,sentry-trace_id=7354dfdf25fb4d7d99a1ee655452f2a2,sentry-sample_rate=0.033","protocol":"http:","host":"jobs.anitab.org","initialState":{"advancedDesign":{"initialized":false,"isScriptLoaded":false},"allCompanies":{"list":[],"error":false,"initialized":false},"companyDetails":{"id":null,"jobs":[]},"favoriteJobs":{"jobs":[],"page":1,"total":0,"error":null,"isLazyLoading":false},"discardedJobs":{"jobs":[],"page":1,"total":0,"error":null,"isLazyLoading":false},"introductionRequest":{"visible":false,"error":false,"introductionSent":false,"limit":-1,"remaining":-1},"introductions":{"error":false},"loading":{},"api":{},"companies":{"found":[{"id":80494,"isDiscarded":false,"logoUrl":"https://cdn.getro.com/companies/2830c158-5911-52f8-b8ab-65ea80f15411-1724247311","stage":"other","topics":[],"name":"AbbVie","description":"AbbVie is a global biopharmaceutical company focused on creating medicines and solutions that put impact first — for patients, communities, and our world. We aim to address complex health issues and enhance people's lives through our core therapeutic areas: immunology, oncology, neuroscience, eye care, aesthetics and other areas of unmet need.","headCount":6,"locations":[],"industryTags":["Biotechnology","Deeptech","Health"],"slug":"abbvie-2","activeJobsCount":307},{"id":1525185,"isDiscarded":false,"logoUrl":"https://cdn.getro.com/companies/1fa85103-6768-5bca-98a4-be3206074d8a-1725539084","stage":null,"topics":[],"name":"Adobe Software","description":"Changing the world through personalized digital experiences.\nFounded 40 years ago on the simple idea of creating innovative products that change the world, Adobe offers groundbreaking technology that empowers everyone, everywhere to imagine, create, and bring any digital experience to life.","headCount":6,"locations":[],"industryTags":[],"slug":"adobe-software","activeJobsCount":2},{"id":23724,"isDiscarded":false,"logoUrl":"https://cdn.getro.com/companies/37b45768-bbec-539c-b182-72619133e4eb-1724243184","stage":"other","topics":[],"name":"Amazon","description":"Amazon operates a vast online marketplace where customers can purchase a wide variety of products, including electronics, books, apparel, household goods, and more. The company has a robust logistics and delivery network, allowing for efficient shipping and quick delivery times for customers around the world. Amazon started as an online bookstorebut rapidly expanded its product and service offerings over the years.","headCount":6,"locations":["Clarksville, TN, USA"],"industryTags":["Administrative Services","Advertising","Commerce and Shopping","Data and Analytics","Media"],"slug":"amazon-3-60ad394d-c673-4474-9694-344b0cae748f","activeJobsCount":2649},{"id":57017,"isDiscarded":false,"logoUrl":"https://cdn.getro.com/companies/4b0ab15a-039f-579a-bad3-ea78bf2c6422-1725628554","stage":"other","topics":[],"name":"American Express","description":"Joining Amex Tech means discovering and shaping your contribution to something big. Here, you can work alongside talented tech teams and build a unique career with the Powerful Backing of American Express. With a range of opportunities to work with the latest technologies, and a commitment to back the broader engineering community through open source, our mission is to power your success. Because Amex Tech is powered by our technology, our culture, and our colleagues.","headCount":6,"locations":[],"industryTags":["Finance"],"slug":"american-express","activeJobsCount":27},{"id":8817,"isDiscarded":false,"logoUrl":"https://cdn.getro.com/companies/95520a34-33eb-5ffa-8223-f506c478fbb3-1724242686","stage":"series_c_plus","topics":[],"name":"Anduril","description":"Anduril is not a traditional defense contractor. We are shaping the future of defense, transforming US & allied military capabilities with advanced technology. We emphasize speed and results and control our products from start to finish, including funding R&D to selling finished products off the shelf. Today, Anduril is in a rapid growth phase, deploying technology in diverse locations and developing path-making products that will change defense forever. We believe that everyone at Anduril can be a catalyst. Your perspective can change lives, and we want to help you make your mark. Our team includes thinkers and doers working interdependently. We bring the brightest minds and best-in-class talent together with veterans who have lived the problems of our warfighters. If you like building quickly and seeing your work deployed in the real world, we want you at Anduril. With offices in Orange County, Washington DC, Seattle, Boston, Atlanta, London, and Sydney, our reach is wide.","headCount":5,"locations":["Irvine, CA, USA"],"industryTags":["DeepTech","Government and Military","Hardware","Security","Software"],"slug":"anduril","activeJobsCount":399},{"id":184217,"isDiscarded":false,"logoUrl":"https://cdn.getro.com/companies/528bf653-a2a7-55f8-8a28-b9da7462bf4b-1724247567","stage":"other","topics":[],"name":"AnitaB.org","description":"AnitaB.org envisions a future where the people who imagine and build technology mirror the people and societies who use it. As a 503(c)(3) organization, AnitaB.org stands by our mission to serve women and non-binary people in technology 365 days per year. We are here to provide programs, services, and events to drive inclusive technology. \r\n","headCount":4,"locations":[],"industryTags":["Education"],"slug":"anitab-org-2","activeJobsCount":0},{"id":109765,"isDiscarded":false,"logoUrl":"https://cdn.getro.com/companies/8ac1b8c6-50ba-533f-b153-6be43ce21e91","stage":"other","topics":[],"name":"Apollo Global Management","description":"Apollo is a high-growth, global alternative asset manager. In our asset management business, we seek to provide our clients excess return at every point along the risk-reward spectrum from investment grade to private equity with a focus on three investing strategies: yield, hybrid, and equity. For more than three decades, our investing expertise across our fully integrated platform has served the financial return needs of our clients and provided businesses with innovative capital solutions for growth. Through Athene, our retirement services business, we specialize in helping clients achieve financial security by providing a suite of retirement savings products and acting as a solutions provider to institutions. Our patient, creative, and knowledgeable approach to investing aligns our clients, businesses we invest in, our employees, and the communities we impact, to expand opportunity and achieve positive outcomes.","headCount":5,"locations":[],"industryTags":[],"slug":"apollo-global-management-2","activeJobsCount":3},{"id":23278,"isDiscarded":false,"logoUrl":"https://cdn.getro.com/companies/b4dc338e-5519-5762-89af-458671e6bed4","stage":"other","topics":[],"name":"Apple","description":"Apple is a corporation that designs, manufactures, and markets mobile communication and media devices, personal computers, portable digital music players, and sells a variety of related software, services, peripherals, networking solutions, and third-party digital content and applications. Apple provides many products and services, including iPhone; iPad; iPod; Mac; Apple TV; a portfolio of consumer and professional software applications; the iOS and OS X operating systems; iCloud; and accessories, service, and support offerings. It sells its products worldwide through its retail stores, online stores, direct sales force and third-party cellular network carriers, wholesalers, retailers, and value-added resellers to the consumer and also sells third-party iPhone, iPad, Mac and iPod compatible products, including application software and accessories through its online and retail stores. Introduced in 1984, the Macintosh was the first widely sold personal computer with a graphical user interface (GUI). That feature and others such as an improved floppy drive design and a low-cost hard drive that made data retrieval faster helped Apple cultivate a reputation for innovation. Apple was named as the most admired company in the United States in 2008 and in the world from 2008 to 2012 by the Fortune magazine. The company was founded by Steven Paul Jobs, Steve Wozniak, and Ronald Gerald Wayne on April 1, 1976, and is headquartered in Cupertino, California.","headCount":6,"locations":[],"industryTags":["Consumer Products","Hardware","Mobile, Platforms, and Apps","Software"],"slug":"apple","activeJobsCount":2167},{"id":11904,"isDiscarded":false,"logoUrl":"https://cdn.getro.com/companies/d5c25681-34b4-55de-9793-53e44f468675-1724242919","stage":"series_c_plus","topics":[],"name":"Applied Intuition","description":"Applied Intuition is a vehicle software supplier that accelerates the adoption of safe and intelligent machines worldwide. Founded in 2017, Applied Intuition provides a simulation and validation platform for various industries such as automotive, trucking, construction, and more. 18 of the top 20 global automakers rely on Applied Intuition’s solutions to shorten development cycles, deliver high-quality systems, and accelerate the production of modern vehicles with confidence.","headCount":4,"locations":[],"industryTags":["DeepTech","Information Technology","Software","Transportation"],"slug":"applied-intuition","activeJobsCount":121},{"id":167365,"isDiscarded":false,"logoUrl":"https://cdn.getro.com/companies/2fb965fa-80d9-55b7-ac32-04595a02d8dd","stage":"other","topics":[],"name":"Areté","description":"Areté is an advanced science and engineering company that provides innovative solutions from scientific discovery to production.","headCount":null,"locations":["Los Angeles, CA, USA"],"industryTags":[],"slug":"arete-2-4ae6bb9f-486a-4ae5-8792-c90913c56673","activeJobsCount":15},{"id":71380,"isDiscarded":false,"logoUrl":"https://cdn.getro.com/companies/7bca1d42-874b-57f7-a2bb-bc68923c0ef3","stage":"other","topics":[],"name":"Argonne National Laboratory","description":"Argonne is a multidisciplinary science and engineering research center, where “dream teams” of world-class researchers work alongside experts from industry, academia and other government laboratories to address vital national challenges in clean energy, environment, technology and national security. Through collaborations with researchers here at Argonne and around the world, they strive to discover new ways to develop energy innovations through science, create novel materials molecule-by-molecule, and gain a deeper understanding of their planet, their climate and the cosmos. Surrounded by the highest concentration of top-tier research organizations in the world, Argonne leverages its Chicago-area location to lead discovery and to power innovation in a wide range of core scientific capabilities, from high-energy physics and materials science to structural biology and advanced computer science. Embracing the nation’s greatest challenges, Argonne’s world-renowned scientists and engineers conduct pioneering research that advances America’s scientific excellence and leadership and helps pave the way to a secure nation with a plentiful supply of safe, sustainable energy, a healthy environment, and a competitive economy. They pursue big, ambitious ideas that redefine what is possible. Their pursuit of groundbreaking discoveries pushes the boundaries of fundamental science, applied science and engineering to solve complex challenges and develop useful technologies that can transform the marketplace and change the world. A center for world-class discovery and scientific excellence, their diverse and dynamic research agenda spans 15 scientific divisions, 14 centers, and six national user facilities. This rich scientific environment provides their researchers – and those who visit us from all corners of the globe – with an extraordinary range of cutting-edge facilities and scientific tools that support in-depth research, drive technological breakthroughs, and improve their nation’s competitiveness and quality of life. Argonne is managed by UChicago Argonne, LLC, for the U.S. Department of Energy's Office of Science","headCount":5,"locations":["Lemont, IL, USA"],"industryTags":["Community and Lifestyle","DeepTech","Education","Energy","Security"],"slug":"argonne-national-laboratory-2","activeJobsCount":45},{"id":228743,"isDiscarded":false,"logoUrl":"https://cdn.getro.com/companies/bcb0cf00-7339-5012-80c0-73617b03c19a-1724247590","stage":"other","topics":[],"name":"AssetMark","description":"AssetMark is a leading wealth management platform that provides flexible and purpose-built solutions to independent financial advisors and their clients. With our affiliates Voyant and Adhesion Wealth, we empower advisors of all models at every stage of their journey to drive client engagement and increase efficiency. Our ecosystem of solutions equips advisors with services and capabilities that would otherwise require significant investments of time and money, ultimately enabling them to deliver better investor outcomes and enhance their productivity, profitability, and client satisfaction. Founded in 1996 and headquartered in Concord, California, AssetMark serves more than 9,200 financial advisors and roughly 241,000 investor households. As of December 31, 2022, the company had $91.5 billion in platform assets. With a team of nearly 1,000 talented employees, we are committed to delivering industry-leading technology and services that empower advisors to build stronger relationships with their clients and help them achieve their financial goals.","headCount":4,"locations":["Concord, CA, USA"],"industryTags":["Finance","Media","Professional Services"],"slug":"assetmark-2","activeJobsCount":6},{"id":27040,"isDiscarded":false,"logoUrl":"https://cdn.getro.com/companies/46d7a69f-8e17-5523-a838-14faf16ef298-1724246738","stage":"other","topics":[],"name":"Atlassian","description":"At Atlassian, we're motivated by a common goal: to unleash the potential of every team. Our software products, such as Jira, Confluence, and Trello, help teams all over the planet and our solutions are designed for all types of work. Team collaboration through our tools makes what may be impossible alone, possible together. Atlassian believes the future of work is distributed, and we’re boldly charting a new course to build it. Our team members can choose where they work – whether in an office, from home, or a combination of the two. That way, they have more control over supporting their family, personal goals, and other priorities.","headCount":6,"locations":[],"industryTags":["Information Technology","Software"],"slug":"atlassian","activeJobsCount":214},{"id":67578,"isDiscarded":false,"logoUrl":"https://cdn.getro.com/companies/cc986347-fda3-5934-a7b2-b1eefe6232f9-1724247192","stage":"other","topics":[],"name":"Audible","description":"Imagine Your Possibilities at Audible.\nThis is a place of invention and inspiration. For more than 25 years, we have been a leading creator and provider of some of the world's best-loved audio storytelling, constantly revolutionizing the way people discover, access, and share stories. We're also passionate Audible listeners, so we know firsthand the power of stories to transform lives, spark new ideas, and create community, and it inspires our work every day.","headCount":null,"locations":[],"industryTags":["Media"],"slug":"audible-2","activeJobsCount":16},{"id":18284,"isDiscarded":false,"logoUrl":"https://cdn.getro.com/companies/b91bbbaf-1852-5bb6-9ceb-fb61c77bd1ae","stage":"other","topics":[],"name":"Bank of America","description":"Bank of America is one of the world's largest financial institutions, serving individuals, small- and middle-market businesses and large corporations with a full range of banking, investing, asset management and other financial and risk management products and services. The company serves approximately 56 million U.S. consumer and small business relationships. It is among the world's leading wealth management companies and is a global leader in corporate and investment banking and trading.\r\n","headCount":6,"locations":["Charlotte, NC, USA"],"industryTags":["Finance","Lending and Investments"],"slug":"bank-of-america","activeJobsCount":393},{"id":579817,"isDiscarded":false,"logoUrl":"https://cdn.getro.com/companies/e057ab65-a662-555e-b670-d3009a9df5cc-1724247742","stage":"other","topics":[],"name":"Barclays Bank","description":"Barclays Bank US is a leading co-branded credit card issuer and financial services partner in the United States that creates highly customized programs to drive customer loyalty and engagement for some of the country's most successful travel, entertainment, retail and affinity institutions. The bank offers co-branded credit cards, small business credit cards, installment loans, POS Finance, online savings accounts, and CDs. Barclays is a British universal bank. We are diversified by business, by different types of customer and client, and geography. Our businesses include consumer banking and payments operations around the world, as well as a top-tier, full service, global corporate and investment bank, all of which are supported by our service company which provides technology, operations and functional services across the Group.","headCount":4,"locations":[],"industryTags":["Finance","Lending and Investments"],"slug":"barclays-bank-2-48f37f74-1d27-4e47-adfd-4cb26a1ea19c","activeJobsCount":6},{"id":135242,"isDiscarded":false,"logoUrl":"https://cdn.getro.com/companies/167e27be-3c88-532a-b789-587f13e51787","stage":"other","topics":[],"name":"Battelle","headCount":6,"locations":[],"industryTags":["Biotechnology","DeepTech","Education"],"slug":"battelle-2","activeJobsCount":54},{"id":23726,"isDiscarded":false,"logoUrl":"https://cdn.getro.com/companies/185a9f1f-5d29-5ec3-b8f4-bfcffa92631f-1722431780","stage":"other","topics":[],"name":"Bloomberg","description":"Bloomberg is a global leader in business and financial information, delivering trusted data, news, and insights that bring transparency, efficiency, and fairness to markets. The company helps connect influential communities across the global financial ecosystem via reliable technology solutions that enable our customers to make more informed decisions and foster better collaboration.","headCount":6,"locations":["New York, NY, USA"],"industryTags":["Content and Publishing","Data and Analytics","Finance","Information Technology","Media"],"slug":"bloomberg","activeJobsCount":166},{"id":70810,"isDiscarded":false,"logoUrl":"https://cdn.getro.com/companies/4864dbd5-2079-56f3-8a1f-f98d04550c9e","stage":"series_a","topics":[],"name":"Boomi","description":"Boomi is the market-leading provider of on-demand integration technology and the creator of AtomSphere, the industry's first integration platform-as-a-service. AtomSphere connects providers and consumers of SaaS applications via a pure SaaS integration platform that does not require software or appliances. ISVs and businesses alike benefit by connecting to the industry's largest network of SaaS, PaaS, on-premise and cloud computing environments in a seamless and fully self-service model. Leading SaaS players such as salesforce.com, NetSuite, Intuit, Centive, Taleo, and Zuora rely on AtomSphere to accelerate time to market, increase sales, and eliminate the headaches associated with integration.","headCount":5,"locations":[],"industryTags":["Information Technology","Internet Services","Software"],"slug":"boomi","activeJobsCount":0},{"id":1209521,"isDiscarded":false,"logoUrl":"https://cdn.getro.com/companies/6aa5588e-7e0b-5174-92b3-29e10b7f1ad3","stage":"other","topics":[],"name":"Boston University","description":"The Rafik B. Hariri Institute for Computing and Computational Science & Engineering initiates, catalyzes, and propels collaborative, interdisciplinary research and training initiatives for a better society by promoting (a) discovery and innovations through the use of computational and data-driven approaches, and (b) advances in the science of computing inspired by challenges in arts and sciences, engineering, and management disciplines.","headCount":3,"locations":["Boston, MA, USA"],"industryTags":["Administrative Services","Education","HR and Recruiting"],"slug":"boston-university-2-31aaeaef-769d-4dc1-a676-b01a5aaf8a9e","activeJobsCount":0}],"total":187,"initialized":true,"isLoading":false,"isLazyLoading":false},"jobs":{"found":[],"currentJob":null,"total":0,"initialized":false,"loading":false,"isLazyLoading":false},"onboarding":{"step":0,"submitting":false,"formData":{"avatarUrl":"","linkedinId":"","firstName":"","lastName":"","email":"","mailTnTlJobAlerts":true,"password":"","termsOfService":false,"websiteUrl":"","linkedinUrl":"","dribbbleUrl":"","githubUrl":"","currentLocation":null,"resume":[],"bio":"","mentorship":false,"jobSearchStatus":"not_looking","employmentTypes":[],"seniority":"entry_level","skills":[],"locations":[],"willWorkAnywhere":false,"remoteWork":false,"usWorkAuthorization":false,"requireSponsorshipVisa":true,"visibility":{"label":"Visible to companies","value":"visible"},"hideFromCompanies":[],"hideFromDomains":[],"userJobAlertPreference":{"keywords":[],"locations":[],"remoteWork":false,"willWorkAnywhere":false,"frequency":{"label":"Weekly","value":"weekly"}}},"errors":[]},"profile":{"errors":{},"updating":false},"user":{"organizationLikeIds":[],"organizationDiscardIds":[],"jobLikeIds":[],"jobDiscardIds":[],"loading":false,"loaded":false,"showSignUpModal":false},"layout":{},"router":{"location":{"pathname":"","search":"","hash":"","href":""}},"locationSuggestions":{"term":"","suggestions":[],"initialized":false,"loading":false},"discardedCompanies":{"companies":[],"page":1,"total":0,"error":null,"isLazyLoading":false},"favoriteCompanies":{"companies":[],"page":1,"total":0,"error":null,"isLazyLoading":false},"deleteAccount":{},"page":{"referrer":null,"internalNav":false,"history":[]},"customFilters":{"filters":[],"initialized":false},"jobFunctions":null,"allJobFunctions":null,"jobAlert":{"create":{"error":false,"success":false},"update":{"error":false,"success":false},"unsubscribe":{"error":false,"success":false},"jobAlert":{}},"jobApplication":{"done":{},"error":null},"talentNetworkOnboarding":{"error":false,"talentOnboarding":null},"filters":{"industryTags":{"data":[],"error":false},"headCount":{"data":[],"error":false},"stage":{"data":[],"error":false}}}},"referrer":"https://jobs.anitab.org/talent-network","__N_SSP":true}